Tag: #event-loop
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 4 posts
Node.js Event Loop & libuv Internals — 6 Phases, Microtasks, Worker Threads, V8 Heap (2025)
The real answer to "Node.js is single-threaded, so why is it fast?" Dissecting libuvs 6 Event Loop phases (Timers, Pending Callbacks, Idle, Poll, Check, Close), process.nextTick vs Promise microtask priority, setImmediat
2026-04-15 · 11 min read #nodejs#libuv#event-loop#v8#asyncConcurrency & Parallel Programming Complete Guide 2025: Async/Await, Thread, Goroutine, Actor Model
Everything about concurrency and parallel programming! Thread vs Coroutine vs Goroutine, Async/Await patterns, Event Loop (Node.js/Python), Actor model (Erlang/Akka), Lock-free data structures, deadlock/race condition pr
2026-04-14 · 27 min read #concurrency#parallelism#async-await#thread#goroutineHow Browsers Work: From URL Input to Pixel Rendering — Essential Frontend Interview Knowledge
Everything about how browsers work! DNS→TCP→HTTP→HTML parsing→DOM/CSSOM→Render Tree→Layout→Paint→Composite, Critical Rendering Path optimization, Reflow/Repaint, requestAnimationFrame, Web Workers, and more.
2026-03-24 · 17 min read #browser#rendering#dom#cssom#layoutConcurrency & Parallelism Deep Dive: Multithreading, Async, and Event Loops Explained
From the fundamental difference between concurrency and parallelism! Threads vs coroutines vs virtual threads, event loop (Node.js), Actor model (Erlang/Akka), lock-free data structures, language-by-language concurrency
2026-03-23 · 21 min read #concurrency#parallelism#multithreading#async#event-loop