Qwen3: Think deeper, act faster
qwenlm.github.io
The 12-bit rainbow palette
iamkate.com
Widespread power outage in Spain and Portugal
bbc.com
Show HN: I built a hardware processor that runs Python
runpyxl.com
The One-Person Framework in Practice
link.mail.beehiiv.com
Running Clojure in WASM with GraalVM
romanliutikov.com
Show HN: Rad Type - Can we make gamepad typing fast?
tyleo.com
Show HN: A pure WebGL image editor with filters, crop and perspective correction
github.com
Legal art forgery, for the sake of movies (2014)
vanityfair.com
What the heck is AEAD again?
ochagavia.nl
Requirements change until they don't
buttondown.com
Why did Windows 7 log on slower for months if you had a solid color background?
devblogs.microsoft.com
Packed Data Support in Haskell
arthi-chaud.github.io
Tiny-LLM – a course of serving LLM on Apple Silicon for systems engineers
github.com
Show HN: Sim Studio – Open-Source Agent Workflow GUI
github.com
Why Momentum Works (2017)
distill.pub
Ask HN: What are you working on? (April 2025)
Show HN: Web-eval-agent – Let the coding agent debug itself
github.com
Reports of the death of California High-Speed Rail have been greatly exaggerated
asteriskmag.com
My takeaways from DjangoCon EU 2025
zachbellay.com
Vision Transformers Need Registers
arxiv.org
Activeloop (YC S18) is hiring a VP of Engineering in Mountain View (on-site)
careers.activeloop.ai
> Introducing the ‘packed’ data format, a binary format that allows using data as it is, without the need for a deserialisation step. A notable perk of this format is that traversals on packed trees is proven to be faster than on ‘unpacked’ trees: as the fields of data structures are inlines, there are no pointer jumps, thus making the most of the L1 cache.
That is, a "memory dump -> zero-copy memory read" of a subgraph of Haskell objects, allowing to pass such trees / subgraphs directly over a network. Slightly reminiscent of Cap'n Proto.