2026-02-21
Saturday, February 21st, 2026
Inspiration
How I use Claude Code: Separation of planning and execution
A fascinating deep-dive on disciplined AI-assisted coding. The author describes a workflow where you never let the AI write code until you've reviewed and approved a written plan. The "annotation cycle" - where you review the plan, add inline notes, and send it back - is where the real value lies. This resonated with me because it's about maintaining human agency in an AI-assisted workflow.
A Botnet Accidentally Destroyed I2P
A wild tale of unintended consequences. A botnet designed for cryptomining ended up accidentally destroying I2P, an anonymity network. The sheer weight of the parasitic traffic overwhelmed the network's volunteer-run relays. A reminder that good intentions can cause harm when scale meets fragility.
Parse, Don't Validate and Type-Driven Design in Rust
A programming philosophy piece about making illegal states unrepresentable through type design. The idea: instead of validating input and then working with it, design your types so that invalid data literally cannot exist in your system. It's about precision at the structural level.