January 30, 2026 · 3 min read

Audit logs are the API of record

The audit log isn't a side effect of the system. It's the contract you owe to regulators, customers, and your future self. Treat it as a first-class API — schema, versioning, and SLOs included.

AuditArchitectureOpinion
January 29, 2026 · 3 min read

Twelve Go idioms I changed my mind about

Patterns I confidently recommended five years ago that I'd argue against today. The list of "things you used to do in Go that don't pay back anymore."

GoOpinionPatterns
January 27, 2026 · 3 min read

errgroup patterns for parallel agent dispatch

Fan out to N agents; first error cancels the rest; collect successful results. errgroup is the right tool for this; the patterns are concise but worth getting exactly right.

GoerrgroupConcurrency