writing
All writing
Nomad: InternalsBook Summary: Nomad: InternalsMay 27, 2026 · 5 min readNamespaces: The truth behind ContainersContainers are often treated like lightweight virtual machines, but the reality is very different. This blog explores how Linux namespaces create process, filesystem, network and user isolation while still sharing the same kernel. Using `/proc`, `unshare` and direct experiments, the article reconstructs the core primitives behind modern container runtimes.
May 27, 2026 · 5 min read · ↗Why I hate documenting?Why most developers avoid documentation, why comments are not enough, and how I organize system knowledge using decisions, architecture, and explanation layers.
(The cover photo is actually a photo of my notes files in obsidian)May 13, 2026 · 5 min readSetting up an onion serviceA quick guide to hosting a local server on the Tor network using an Onion Service. Learn how to configure Tor, map an onion address to a local port, and expose a simple Flask server through the Tor network.Mar 5, 2026 · 5 min read · ↗Systemd Service Setup with a Dedicated UserLearn how to run a Linux service securely using systemd and a dedicated user. This guide covers creating a non-login service user, setting permissions, writing a systemd unit file, and managing the service.Mar 5, 2026 · 5 min read · ↗COABook Summary: COAJul 7, 2026 · 5 min readHow SSH Key Auth Really WorksEvery `ssh user@host` triggers a negotiation most of us never look at: an ephemeral shared secret, a host identity check, and a challenge only your private key can answer. Here's what actually happens on the wire.Jul 22, 2026 · 5 min read