New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. High context and low context environments(notnottalmud.substack.com ↗)
    discuss
  2. The Boox Palma 3 gets stylus support and a sleek redesign(theverge.com ↗)
    discuss
  3. EU Chief calls for Canada to become bloc's first associate member(theglobeandmail.com ↗)
    discuss
  4. A girl with a will to live: the love, hope and pain of raising Elsie(theguardian.com ↗)
    discuss
  5. 14,000 Security Guards for Major Tech Companies Plan to Strike(kqed.org ↗)
    discuss
  6. I Only Wanted the Tests to Run Faster(differentshelf.com ↗)
    discuss
  7. JJ Con '26 [video](youtube.com ↗)
    discuss
  8. The Google Play app review process now regularly takes longer than a week(gultsch.social ↗)
    discuss
  9. I Made a Time Machine(1matin.com ↗)
    discuss
  10. Is anyone else losing their motivation to nerd out and tinker because of AI?
    1comments
  11. Anna Holmes on Saying No and Yes(cjr.org ↗)
    discuss
  12. Nvidia announces native GPU programming in Rust(nvidia.com ↗)
    discuss
  13. Europe Time Machine, an interactive map of Europe's borders(europe-time-machine.vercel.app ↗)
    discuss
  14. Ask HN: How do you prevent customer PII from reaching LLMs unnecessarily?
    discuss
  15. An LLM-Turbocharged Community Calendar Reboot (2024)(thenewstack.io ↗)
    1comments
  16. Devastated father says his 9-year-old son spent $118,000 on YouTube ads(tomshardware.com ↗)
    1comments
  17. Silly Sound Bastard It is yet another clone of the well known Covox Speech Thing(github.com/necroware ↗)
    discuss
  18. Should markets discount the AI apocalypse?(ft.com ↗)
    discuss
  19. Cyber Defense for the Hybrid Enterprise in the Age of AI(ciscopress.com ↗)
    discuss
  20. AI models need more data about biology, and OpenAI is paying to create it(technologyreview.com ↗)
    discuss
  21. Show HN: Omastorm – Live NEXRAD weather radar for Omarchy(github.com/wesleygrimes ↗)
    discuss
  22. Apodex – FrontierAgent(github.com/apodexai ↗)
    discuss
  23. Internal Tool Delegation for Agents vs. External Payment Auth(skyfire.xyz ↗)
    discuss
  24. Ask HN: What is the most career altering course or book you have gone through?
    2comments
  25. China's open-weight AI models are now just 4 months behind frontier US offerings(tomshardware.com ↗)
    discuss
  26. What writing for the Washington Post taught me about standup comedy(pammoore.substack.com ↗)
    discuss
  27. Mythos 5 Transcript Release(github.com/anthropics ↗)
    discuss
  28. HP ZBook Ultra G3a 16 Preview: 192GB Unified Memory Aims for Top Local AI Laptop(storagereview.com ↗)
    discuss
  29. Show HN: IndexLaunch – free indexability checker and IndexNow submission queue(indexlaunch.site ↗)
    discuss
  30. The New Chinese Way of Cyberwar(foreignaffairs.com ↗)
    discuss

Show HN: Tray indicator for WSL2: on/off, CPU and memory, one-click shutdown

1 pointsby 41m agogithub.com
0 comments
When using my PC for private stuff like gaming or video editing I wanted an direct way (without calling wsl --shutdown) of turning WSL2 off. Created (with a help of Claude, it is 2026...) a small tray tool which barely uses resources and provides also resources usage info.

Grey means the VM is off. Green, orange or red means it is running, coloured by the higher of its CPU and memory share of the machine. Hover for the numbers, menu entry to shut it down.

Two things that were not obvious: * Presence is the vmmemWSL process existing. WSL reports on distributions, not on the VM. * CPU and memory come from NtQuerySystemInformation(SystemProcessInformation). vmmemWSL runs as SYSTEM, so OpenProcess is denied to a normal user and GetProcessTimes is out. A snapshot of ~250 processes takes 3.8 ms and needs no handle.

Rust, windows-sys only. 282 KB exe, 3.9 MB private memory after half an hour, one thread while idle. Working set is 10 to 19 MB, mostly shared DLLs.

Targeted for Windows 11. Older Win10 builds call it vmmem (Use -process flag). Shutdown asks for confirmation. BSD 3-Clause.

A quiet thread, for now.Start the conversation on HN ↗