One commit, two months of cleanup
Anya P. · May 9
When a system surprises me, my first instinct used to be to fix the surprise. Now my first instinct is to figure out which mental model of mine was wrong, and update that.
I write smaller commits than I used to. The commits are uglier in isolation and much easier to read in sequence.
I split a 4000-line file into 12 smaller ones this week. The smaller files weren't actually easier to understand. The 4000-line file was a problem of structure, not of length.
The fastest debugging trick I've learned is to write out, in one sentence, what the system is supposed to be doing. Half the time I notice the bug while writing the sentence.
Most retry logic I've removed turned out to be hiding a real bug. The retries made the failure invisible, and the bug compounded for months in the background.
Latency budgets work better than latency targets. Targets are aspirational. Budgets force you to delete features when you go over.
← back to index