Consensus Is Not a DecisionWrong definition, stated the way most orgs use it: Consensus means the RFC thread collected enough LGTMs that nobody feels blocked. That sentence is how teams stall for a quarter while believing theSep 21, 2026·7 min read
The Architecture of Distributed ObservabilityObservability platforms often fail in inverse proportion to the seriousness of their stated mission. There is no spectacular crash, no smoking gun in a stack trace, no on-call page at three in the morJun 3, 2026·55 min read
Engineering for Resilience: A Deep Dive into Multi-Region Distributed SystemsDistributed systems failures often begin not with a spectacular crash, but with silent divergence. There are no sirens, no cascading 500 errors, and no immediate panic. In one instance, a single ledgeMay 5, 2026·51 min read
Architecting Reliable application on azure with scalability mindsetTL;DR: The Executive Summary The Problem: "Click-Ops" (manual dashboard configuration) creates brittle, untestable, and insecure "Snowflake Servers" that accumulate technical debt. The Solution: A clean, layered architecture using Terraform for inf...Jan 9, 2026·12 min read
Go and PocketBase: Shortified!Whether you're building your first web service or your hundredth microservice, the URL shortener remains a compelling case study. It's conceptually simple, quick to prototype, yet deceptively complex at scale. A single handler that accepts a URL, gen...Dec 30, 2025·26 min read
Caching Proxy in GoI've seen the same pattern play out time and again: a successful application's biggest enemy is its own growth. As traffic scales, the backend inevitably becomes a bottleneck, leading to slower response times and higher costs. To solve this, I often ...Sep 16, 2025·14 min read
Building a REST API with Golang, Gin, and PocketbaseIntroduction Building a REST API with modern technologies can be an engaging yet complex process, especially when you are working with unfamiliar stacks. As a Go developer, I decided to explore the combination of Golang with the Gin framework and Poc...Jan 21, 2025·7 min read