Blog
Tutorials, guides, and insights to help you become a better developer.
Nginx handles hundreds of thousands of connections with 4 cores. Here's why: event-driven epoll loops, 11-phase HTTP pipelines, pool allocators, and a master-worker model built for zero-downtime reloads.
AdminJune 24, 20269 min read
"Our database is highly available" means four different things, and they protect against four different failures. A ladder for forcing that conversation to be specific — plus why the money most teams spend on availability goes to the failure modes they face least.
AdminJune 22, 20269 min read
Astro's JavaScript floor is zero; Next.js's is a framework baseline. That one architectural difference — hydration opt-in vs opt-out — decides most of this comparison, and it matters much less than it sounds once your users are logged in.
AdminJune 17, 20268 min read
You've run git commit thousands of times. But have you ever wondered what actually happens when you do? Git isn't a file-syncing tool with version numbers bolted on.
AdminJune 15, 20269 min read

Docker containers aren't tiny VMs. They're Linux processes wrapped in namespaces, cgroups, and OverlayFS — here's how the kernel primitives actually fit together.
AdminJune 5, 20268 min read
One binary and one config against six packages and a decade of plugins. The gap is real but narrower than the write-ups claim — Biome has had React Hooks rules since v1.0.0, and its v2 config drops the field most tutorials still tell you to set.
AdminJune 3, 20269 min read
Express has the ecosystem, Fastify has the schema validation, and Hono runs everywhere. Here's the practical breakdown of all three so you can actually make the call.
AdminMay 27, 202610 min read
PostgreSQL trades storage space for concurrency — MVCC, WAL, and vacuum aren't quirks, they're the design. Understanding this explains most performance mysteries.
AdminMay 25, 202612 min read
Measured: pnpm cut three projects' node_modules from 132 MB to 42 MB and blocked a phantom import npm let through. The real difference is what that single architectural choice compounds into at scale.
AdminMay 22, 20269 min read