
Node.js, nginx, Redis, Envoy, and basically every modern network server are built on the same OS primitive: a kernel feature called epoll (or kqueue on BSD) that lets one thread efficiently watch thousands of file descriptors. Once you understand how it works, you understand why async I/O exists, why blocking calls are catastrophic, and why io_uring matters.
Engineering Craft
TypeScript, CI/CD, databases, observability -- the skills that make code production-ready.