What belongs in a metric vs a log vs a trace, a measured cost of getting it wrong on a real Prometheus, dashboards and alerting that don't cause fatigue, and PII discipline - not another setup tutorial.
encoding/json, jsoniter, easyjson, sonic, and Go 1.27's encoding/json/v2 benchmarked head to head on the same payload, on an Apple M5 and a Hetzner VPS - including a jsoniter decode result that only holds up on one of the two machines.
Updated with real go test -bench numbers from two machines, after Hacker News pushed back on several unverified claims. False sharing turned out bigger than claimed; sorting for branch prediction and "branchless is faster" didn't hold up.
Build production gRPC Gateway handling 100K+ requests/day. Bridge gRPC services to REST APIs with authentication, validation, and real implementation lessons.
Ring cache (circular buffer) explained for HFT: lock-free implementation in Go that achieves sub-microsecond latency. From concept to production-ready code with benchmarks.
Real-world guide to rolling out distributed tracing in Go with OpenTelemetry and Grafana Tempo: why logs were not enough, how to instrument services, and what changed once the traces shipped.
Build production CDN in Go handling 100GB+ daily traffic. Edge caching, origin shielding, and content delivery optimization with real implementation code.
Why your Go code is slow: AI writes over-engineered solutions, humans copy-paste without understanding. AiBsCleaner finds performance killers that standard linters miss - from O(n³) algorithms to goroutine leaks.