Explorations of engineering strategy, design systems, DX, and content platforms.
July 20th, 2026
What I Let AI Write, and What I Never Will
After a year of Claude Code in my daily workflow, here's the honest version of how AI fits into real engineering work — the tasks I hand it without hesitation, and the ones I'll never let it own.
AI ToolsSoftware EngineeringDeveloper ProductivityEngineering Practices
I built a Retrieval-Augmented Generation (RAG) app that answers questions from your documents — and shows the exact passages behind every answer, with match scores. Here's how it works and why retrieval, not the model, is the hard part.
AI Didn't Make Me Write Better Code — It Made Me Finally Write Tests
Most codebases have no tests because writing them is annoying, not because engineers can't. Here's how I used Claude Code and Cursor to go from near-zero to 70%+ coverage — without letting AI replace my judgment.
Your Webhook Will Fire Twice. Design Like It Already Did.
Stripe charged the customer once — but my system recorded it three times. The cause wasn't a bug in my logic. It's that event systems deliver "at least once," not "exactly once." Here's how idempotency fixes it.
The Performance Problem That Isn't in Your Latency Dashboard
Every endpoint was fast, but screens still felt slow. The culprit was over-fetching. Here's how I used Claude Code and Codex to trace it and cut payload size by ~30% — without handing over the decisions.