At the end you use Git bisect
kevin3010.github.io
"Why don't you use dependent types?"
lawrencecpaulson.github.io
Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
tongyi-agent.github.io
Rats filmed snatching bats from air for first time
science.org
Autodesk's John Walker Explained HP and IBM in 1991
cringely.com
X.org Security Advisory: multiple security issues X.Org X server and Xwayland
lists.x.org
URLs are state containers
alfy.blog
Writing FreeDOS Programs in C
freedos.org
Anti-cybercrime laws are being weaponized to repress journalism
cjr.org
Backpropagation is a leaky abstraction (2016)
karpathy.medium.com
Mock – An API creation and testing utility: Examples
dhuan.github.io
Notes by djb on using Fil-C (2025)
cr.yp.to
A prison of my own making
jsteuernagel.de
New South Korean national law will turn large parking lots into solar farms
electrek.co
Go Primitive in Java, or Go in a Box
donraab.medium.com
Visopsys: OS maintained by a single developer since 1997
visopsys.org
Welcome to hell; please drive carefully
2earth.github.io
Claude Code can debug low-level cryptography
words.filippo.io
When O3 is 2x slower than O2
cat-solstice.github.io
Matched Clean Power Index
matched.energy
A man who changes the time on Big Ben
mylondon.news
Updated practice for review articles and position papers in ArXiv CS category
blog.arxiv.org
How I use every Claude Code feature
blog.sshh.io
I think this discussion dismisses the "physics" of writing code, which rewards laziness.
Effects make _the right thing to do_ (proper sandboxing, testability, assertions, ...) the _easiest_ thing to do.
Build scripts aren't sandboxed because sandboxing bash functions is nigh impossible -- not because people don't want to.
The discussion on assertions is especially confusing, because that is exactly what effect systems excel at. The effect of an assertion would be Assert, and you can choose to handle it however you want, at a higher level. If you want to crash, handle Assert in main by Exit(1)ing. If you want to reject the request but keep the server alive, handle by SetResponse(500)!; CloseRequest()!. If you want to ignore it and trundle on, return to the point of the assertions continuation.