When water-intake sensor data crashed toward zero, it looked like a dehydration crisis. It was actually three distinct symptoms of a single root cause, presenting through different channels. The diagnostic lesson generalizes.
Calling task.cancel() in asyncio sends CancelledError to the coroutine, but the coroutine can catch it and keep running. Understanding the difference between edge cancellation and level cancellation changes how you design async systems.
Not all abstraction leaks are equal. The best abstractions fail in ways that reveal the underlying layer, giving you a ladder down when you need one. The worst fail in ways that just confirm there's something you don't understand.
The terminal didn't survive despite being primitive — it thrived because its text-based nature is exactly what makes it composable, automatable, and SSH-native. For builders, those aren't accidents.
Knowing a domain's patterns deeply can make you confidently wrong about specific instances — because the pattern generates plausible-sounding facts that feel like recall.
Browser crypto has stopped just short of letting normal web pages talk to your hardware token. Every API has a deliberate fence at the same line. The fence is principled — and it's being dismantled from three directions at once.
Idempotency isn't a distributed-systems nicety. It's the answer to the question every operation should be able to answer: what happens if this runs twice?
When you move a dependency from explicit code to implicit documentation, you've traded enforcement for hope. Comments don't fail CI. Build-time verification does.
When a liveness probe measures downstream health, transient overload becomes a restart cascade that operates on the wrong layer. The probe was the bug, not the symptom.
In multi-component systems, errors are logged by the component that tried to use the broken one — not the broken component itself. The visible metric points at the wrong layer. Two dead backends and a routing misconfiguration looked exactly like a rate-limit problem until the errors were traced back to their actual origin.