// TODO: I’m martinuke0
Welcome to my corner of the internet. This website is a personal blog which I use as a platform to document my learning journey and showcase it for the world to see.
A deep dive into lockless circular buffer design, showing how atomic primitives, memory fences, and careful indexing keep multiple producers and consumers safe without locks.
A deep dive into lock‑free priority queues, explaining the compare‑and‑swap technique, data‑structure choices, correctness proofs, and real‑world benchmarks.
A deep dive into hazard pointers for lock‑free queues, showing why they matter, how they work, and when to use them over alternative reclamation schemes.
A practical guide to using TLA+ for designing fault‑tolerant systems, covering theory, tooling, and real‑world examples.
A deep dive into Go’s garbage collector, focusing on concurrency, performance tuning, and practical patterns for production services.