Node.js Internals: Understanding V8 and Libuv
February 13, 2026
10 min read
Node.js
Internals
V8
Libuv
This blog breaks down the internal architecture of both, explaining exactly how the Event Loop manages concurrency and how V8 uses Hidden Classes to maximize memory performance and a few more V8 optimizations.
Read Article
Locality, Cache Lines & Contention
January 12, 2026
15 min read
Multithreaded Programming
Memory
A deep dive into memory hierarchies, cache mechanics, and writing hardware-sympathetic code to avoid contention in multithreaded systems.
Read Article