vol. 02 · spring 2026

An engineering notebook — small fixes, environment tricks, and the patterns I keep reaching for.

Kubernetes, AWS, dev environments, and the occasional deeper essay. Each entry is a problem I had, the fix I landed on, and why it works — written so future me can find it again.

Entries4
Notes1
Essays3
Cadenceweekly · ish
Latest0d ago
003
note
Exception handling in REST APIs: from concept to root cause
Most API bugs trace back to exceptions that were either silently swallowed — making the error invisible — or dumped raw into the response, exposing internals. A centralized handler with consistent logging and a structured error response fixes both.