How we designed things that are actually running.
Written for the person who will notice if we are wrong. Each piece names the constraints, the trade-off we took, and what it cost us - and most end with something you can go and check for yourself.

Your speech-to-text sends the recording. It only needed the words.
A speech feature exists to turn a voice into a paragraph. Most of them upload the voice to a vendor to get it. The design where the model runs on your own server, what the queue of one costs, and the part nobody admits - the audio is still stored, on purpose.

Let the AI write your outreach email. Never let it send it.
A model that can send will one day send the wrong thing. The design that lets a model draft into an editor, runs every draft through a rulebook in code - nine blocks, fourteen warnings - and keeps the send button for a person. Every rule quoted from a system in production.

Why your RAG chatbot ignores the rules you gave it
A knowledge base outgrows the context budget, retrieval starts choosing what the model sees, and the rules you wrote become documents competing for space. How to measure what your bot actually receives, and why some of it must never be scored.

Your redirect list is about to swallow a page that still works
A wildcard redirect does not know which of your pages are still live. The rule that ate a working archive, the exclusion that fixed it, and 178 rules anyone can test against this domain with curl.

Your rebuild will drop URLs. Google will tell you in six weeks.
We moved a 10,723-page site to a new framework. The sitemap diff that proved no URL moved, the four things it cannot catch, and the outage that mattered more than any of it.

Your Android app asks for internet permission. You never wrote it.
The manifest you write is not the one that ships. Every library brings its own, the build merges them, and a permission can arrive four levels down. How to see what your app really asks for, and the one line that refuses it - from an app that had told people it needed no internet.