Featured · Internal Tools · UX

Designing an admin panel that engineers do not hate

Internal tools tend to rot the moment they leave the founding team. We rebuilt our admin from scratch around three principles: every action should be auditable, nothing should require a tribal-knowledge runbook, and there should be exactly one button that resolves the on-call page.

MMei Watanabe·Jun 4, 2026·8 min read

Latest writing

Engineering Culture

Feature flags are not a substitute for testing

Every team eventually discovers the joy of shipping behind a flag. Fewer teams discover the misery of cleaning up flags two years later when the original author has long since left the company. A short rant and a longer guide.

PPriya Raman·Apr 12, 2026·5 min read
GoTooling

Building a tiny static site generator in 200 lines of Go

Sometimes the right answer is not Hugo or Astro but a file you can read in one sitting. We walked through every line in a guild lunch and somehow shipped a new docs site by the end of the day.

SSam Lee·May 1, 2026·7 min read
GoObservability

Profiling Go services in production without breaking everything

Continuous profiling sounds great until you turn it on in a fleet of three hundred pods and your p99 latency doubles. Here is how we instrumented pprof endpoints behind a feature flag, sampled at one percent and shipped flame graphs straight to Grafana.

PPriya Raman·Apr 27, 2026·7 min read
DatabasesOperations

A practical guide to writing migrations you can actually run on Friday

Most database migrations fail not because the SQL is wrong but because nobody tested them against a realistic dataset. We share the rollout checklist we use for every schema change, including the awkward question of when to lock a table and when to live with the inconsistency.

SSam Lee·Jun 11, 2026·11 min read