Ask HN: What Are You Working On? (Nov 2025)
JVM exceptions are weird: a decompiler perspective
purplesyringa.moe
Montana becomes first state to enshrine 'right to compute' into law
montananewsroom.com
When Tesla's FSD works well, it gets credit. When it doesn't, you get blamed
electrek.co
Building a 2.5kWh battery from disposable vapes to power my workshop [video]
youtube.com
The Manuscripts of Edsger W. Dijkstra
cs.utexas.edu
The Principles of Diffusion Models
arxiv.org
The Symbiosis of Rust and Arm: A Conversation with David Wood
filtra.io
The Sega Master System
bumbershootsoft.wordpress.com
Bumble Berry Pi – A Cheap DIY Raspberry Pi Handheld Cyberdeck
github.com
'Up to 15 or 20′ air traffic controllers are retiring daily
pennlive.com
CHIP8 – writing emulator, assembler, example game and VHDL hardware impl
blog.dominikrudnik.pl
Reviving Classic Unix Games: A 20-Year Journey Through Software Archaeology
vejeta.com
The Computer Church – Pennsylvania Computer and Technology Museum
thecomputerchurch.org
Zensical – A modern static site generator built by the Material for MkDocs team
squidfunk.github.io
Solving Every Sudoku Puzzle (2006)
norvig.com
When Your Hash Becomes a String: Hunting Ruby's Million-to-One Memory Bug
mensfeld.pl
Visualize FastAPI endpoints with FastAPI-Voyager
newsyeah.fun
Using bubblewrap to add sandboxing to NetBSD
blog.netbsd.org
AI isn't replacing jobs. AI spending is
fastcompany.com
Drilling down on Uncle Sam's proposed TP-Link ban
krebsonsecurity.com
The overengineered solution to my pigeon problem (2022)
maxnagy.com
Startups are pushing the boundaries of reproductive genetics
wsj.com
Nice post!
A minor point:
> monitors are incompatible with coroutines
If by coroutines the author meant virtual threads, then monitors have always been compatible with virtual threads (which have always needed to adhere to the Thread specification). Monitors could, for a short while, degrade the scalability of virtual threads (and in some situations even lead to deadlocks), but that has since been resolved in JDK 24 (https://openjdk.org/jeps/491).