[{"data":1,"prerenderedAt":1133},["ShallowReactive",2],{"post-\u002Fblog\u002Fthe-bug-that-resolved-successfully":3,"blog-all":638},{"id":4,"title":5,"author":6,"body":7,"category":620,"date":621,"description":622,"draft":623,"extension":624,"image":625,"meta":626,"navigation":102,"path":627,"project":628,"readingMinutes":119,"seo":629,"series":630,"seriesOrder":630,"stem":631,"tags":632,"__hash__":637},"blog\u002Fblog\u002Fthe-bug-that-resolved-successfully.md","The Bug That Resolved Successfully","EkoHacks Team",{"type":8,"value":9,"toc":612},"minimark",[10,19,29,32,137,147,152,155,185,201,218,222,225,228,231,282,288,316,319,323,329,362,365,377,387,391,397,403,409,413,416,595,598,602,605,608],[11,12,13,14,18],"p",{},"Every so often you meet a bug that does you the courtesy of throwing an error. This is not one of those. This one says it is ",[15,16,17],"code",{},"ready",", resolves cleanly, logs nothing, and quietly drops every document on the floor.",[11,20,21,22,24,25,28],{},"Here is the shape of it in EkoLite, our small reactive sync layer. You subscribe to a publication, the server streams the matching documents into a local store, a ",[15,23,17],{}," promise resolves, and from then on the store stays live as data changes. When you call ",[15,26,27],{},"stop()",", late messages should stop touching your store. Simple enough.",[11,30,31],{},"So you write the most natural line a developer ever writes. You name the publication for what it means:",[33,34,39],"pre",{"className":35,"code":36,"language":37,"meta":38,"style":38},"language-ts shiki shiki-themes github-dark","const store = manager.store('files');\nconst handle = manager.subscribe('recentFiles');\n\nawait handle.ready;        \u002F\u002F resolves, no error\nstore.getById('f1');       \u002F\u002F undefined\n","ts","",[15,40,41,75,97,104,117],{"__ignoreMap":38},[42,43,46,50,54,57,61,65,68,72],"span",{"class":44,"line":45},"line",1,[42,47,49],{"class":48},"snl16","const",[42,51,53],{"class":52},"sDLfK"," store",[42,55,56],{"class":48}," =",[42,58,60],{"class":59},"s95oV"," manager.",[42,62,64],{"class":63},"svObZ","store",[42,66,67],{"class":59},"(",[42,69,71],{"class":70},"sU2Wk","'files'",[42,73,74],{"class":59},");\n",[42,76,78,80,83,85,87,90,92,95],{"class":44,"line":77},2,[42,79,49],{"class":48},[42,81,82],{"class":52}," handle",[42,84,56],{"class":48},[42,86,60],{"class":59},[42,88,89],{"class":63},"subscribe",[42,91,67],{"class":59},[42,93,94],{"class":70},"'recentFiles'",[42,96,74],{"class":59},[42,98,100],{"class":44,"line":99},3,[42,101,103],{"emptyLinePlaceholder":102},true,"\n",[42,105,107,110,113],{"class":44,"line":106},4,[42,108,109],{"class":48},"await",[42,111,112],{"class":59}," handle.ready;        ",[42,114,116],{"class":115},"sAwPA","\u002F\u002F resolves, no error\n",[42,118,120,123,126,128,131,134],{"class":44,"line":119},5,[42,121,122],{"class":59},"store.",[42,124,125],{"class":63},"getById",[42,127,67],{"class":59},[42,129,130],{"class":70},"'f1'",[42,132,133],{"class":59},");       ",[42,135,136],{"class":115},"\u002F\u002F undefined\n",[11,138,139,140,143,144,146],{},"The server did its job. It found the document and sent it, stamped with the collection it actually lives in, ",[15,141,142],{},"files",". The ",[15,145,17],{}," resolved, so your app believes the subscription is healthy. And yet the store is empty. Nothing complained. That silence is the whole bug.",[148,149,151],"h2",{"id":150},"where-did-the-document-go","Where did the document go?",[11,153,154],{},"To route an incoming document into the right store, the client has to answer one question: which collection does this belong to, and is anyone still subscribed to it? The original code answered it with a guess. It took the publication name and split it on the first dot:",[33,156,158],{"className":35,"code":157,"language":37,"meta":38,"style":38},"name.split('.')[0]   \u002F\u002F 'recentFiles' -> 'recentFiles'\n",[15,159,160],{"__ignoreMap":38},[42,161,162,165,168,170,173,176,179,182],{"class":44,"line":45},[42,163,164],{"class":59},"name.",[42,166,167],{"class":63},"split",[42,169,67],{"class":59},[42,171,172],{"class":70},"'.'",[42,174,175],{"class":59},")[",[42,177,178],{"class":52},"0",[42,180,181],{"class":59},"]   ",[42,183,184],{"class":115},"\u002F\u002F 'recentFiles' -> 'recentFiles'\n",[11,186,187,188,191,192,194,195,197,198,200],{},"The publication is called ",[15,189,190],{},"recentFiles",". The collection is ",[15,193,142],{},". The guess says ",[15,196,190],{},". They do not match, so the gate decides nothing is live for ",[15,199,142],{},", and the document is dropped before it ever reaches the store.",[11,202,203,204,207,208,210,211,210,214,217],{},"The bug only hides when the name happens to start with the collection. Call your publication ",[15,205,206],{},"files.recent"," and it works, by luck. Call it anything a person would actually choose, ",[15,209,190],{},", ",[15,212,213],{},"archivedThisWeek",[15,215,216],{},"myInbox",", and it fails in silence. The name is for people. The collection is the server's business. The moment those two ideas drift apart, the data goes missing and the app smiles back at you.",[148,219,221],{"id":220},"a-question-worth-sitting-with","A question worth sitting with",[11,223,224],{},"So we asked the question underneath the bug: where should the collection actually come from?",[11,226,227],{},"Not the name. We just watched why. The honest answer is the server, because the server is the only thing that knows where a document lives. So we went looking for the place where the server tells the client, and found that it never did.",[11,229,230],{},"Look at the messages on the wire. A data message carries the collection but no subscription id:",[33,232,234],{"className":35,"code":233,"language":37,"meta":38,"style":38},"{ type: 'added', collection: 'files', id: 'f1', fields: { ... } }\n",[15,235,236],{"__ignoreMap":38},[42,237,238,241,244,247,250,252,255,257,259,261,264,266,268,270,273,276,279],{"class":44,"line":45},[42,239,240],{"class":59},"{ ",[42,242,243],{"class":63},"type",[42,245,246],{"class":59},": ",[42,248,249],{"class":70},"'added'",[42,251,210],{"class":59},[42,253,254],{"class":63},"collection",[42,256,246],{"class":59},[42,258,71],{"class":70},[42,260,210],{"class":59},[42,262,263],{"class":63},"id",[42,265,246],{"class":59},[42,267,130],{"class":70},[42,269,210],{"class":59},[42,271,272],{"class":63},"fields",[42,274,275],{"class":59},": { ",[42,277,278],{"class":48},"...",[42,280,281],{"class":59}," } }\n",[11,283,284,285,287],{},"A ",[15,286,17],{}," carries the subscription id but no collection:",[33,289,291],{"className":35,"code":290,"language":37,"meta":38,"style":38},"{ type: 'ready', id: 'sub-123' }\n",[15,292,293],{"__ignoreMap":38},[42,294,295,297,299,301,304,306,308,310,313],{"class":44,"line":45},[42,296,240],{"class":59},[42,298,243],{"class":63},[42,300,246],{"class":59},[42,302,303],{"class":70},"'ready'",[42,305,210],{"class":59},[42,307,263],{"class":63},[42,309,246],{"class":59},[42,311,312],{"class":70},"'sub-123'",[42,314,315],{"class":59}," }\n",[11,317,318],{},"Neither message, on its own, ties a subscription to its collection. The client had no way to know the truth, so it guessed. The guess was not the disease. It was a symptom of a protocol that quietly forgot to say the one thing that mattered.",[148,320,322],{"id":321},"the-fix-is-one-field","The fix is one field",[11,324,325,326,328],{},"We added the collection to ",[15,327,17],{},":",[33,330,332],{"className":35,"code":331,"language":37,"meta":38,"style":38},"{ type: 'ready', id: 'sub-123', collection: 'files' }\n",[15,333,334],{"__ignoreMap":38},[42,335,336,338,340,342,344,346,348,350,352,354,356,358,360],{"class":44,"line":45},[42,337,240],{"class":59},[42,339,243],{"class":63},[42,341,246],{"class":59},[42,343,303],{"class":70},[42,345,210],{"class":59},[42,347,263],{"class":63},[42,349,246],{"class":59},[42,351,312],{"class":70},[42,353,210],{"class":59},[42,355,254],{"class":63},[42,357,246],{"class":59},[42,359,71],{"class":70},[42,361,315],{"class":59},[11,363,364],{},"The server had this in hand the whole time. Now it says so out loud. The client stops guessing, binds the subscription to the collection the server names, and routes the documents it was holding into the right store. The name goes back to being what it always should have been, a label for humans.",[11,366,367,368,370,371,373,374,376],{},"There is a small timing wrinkle worth naming. The server sends the initial documents before it sends ",[15,369,17],{},", so for a brief moment the client is holding documents it cannot place yet. It parks them, and the moment ",[15,372,17],{}," names the collection, it drains them into the store. The buffer solves the timing. The collection on ",[15,375,17],{}," solves the truth. Two different problems, two different answers.",[11,378,379,380,382,383,386],{},"With the collection known for certain, the job we set out to do, gating late messages after ",[15,381,27],{},", falls out for free. The gate asks \"is this collection still live?\" and that question finally has an honest answer, so a stray ",[15,384,385],{},"changed"," arriving after you have stopped lands nowhere.",[148,388,390],{"id":389},"the-wrong-turn-we-left-in","The wrong turn we left in",[11,392,393,394,396],{},"Here is the wrong turn, kept in on purpose. The first version we shipped made the new field optional, and kept a fallback: if ",[15,395,17],{}," did not carry a collection, infer it from whichever document we happened to be holding in the buffer. Every test passed. It looked robust.",[11,398,399,400,402],{},"It was not robust. It was a story we were telling ourselves. The only thing that ever exercised that fallback was the tests, written in just the right order to keep it happy. No real server ever sent a ",[15,401,17],{}," without a collection, because we had just changed the one server we have to always send it. A fallback that only your own tests keep alive is not a safety net. It is dead weight in a high visibility jacket.",[11,404,405,406,408],{},"So we made the field required, enforced it at the point where messages are checked coming off the wire, and deleted the fallback. If a ",[15,407,17],{}," turns up without a collection now, it is turned away at the door rather than papered over. The type makes the gap impossible to reopen, by anyone, later, on a tired afternoon.",[148,410,412],{"id":411},"the-move-you-can-reproduce","The move you can reproduce",[11,414,415],{},"If you would rather feel this one than read about it, the move is short. Pin the symptom with a failing test before you touch a line of the fix:",[33,417,419],{"className":35,"code":418,"language":37,"meta":38,"style":38},"it('routes data when the publication name is not the collection name', async () => {\n  const store = manager.store('files');\n  const handle = manager.subscribe('recentFiles');   \u002F\u002F named for meaning, not storage\n\n  server.send({ type: 'added', collection: 'files', id: '1', fields: { name: 'a.bam' } });\n  server.send({ type: 'ready', id: subId, collection: 'files' });\n  await handle.ready;\n\n  expect(store.getById('1')).toEqual({ _id: '1', name: 'a.bam' });\n});\n",[15,420,421,445,464,486,490,523,542,551,556,589],{"__ignoreMap":38},[42,422,423,426,428,431,433,436,439,442],{"class":44,"line":45},[42,424,425],{"class":63},"it",[42,427,67],{"class":59},[42,429,430],{"class":70},"'routes data when the publication name is not the collection name'",[42,432,210],{"class":59},[42,434,435],{"class":48},"async",[42,437,438],{"class":59}," () ",[42,440,441],{"class":48},"=>",[42,443,444],{"class":59}," {\n",[42,446,447,450,452,454,456,458,460,462],{"class":44,"line":77},[42,448,449],{"class":48},"  const",[42,451,53],{"class":52},[42,453,56],{"class":48},[42,455,60],{"class":59},[42,457,64],{"class":63},[42,459,67],{"class":59},[42,461,71],{"class":70},[42,463,74],{"class":59},[42,465,466,468,470,472,474,476,478,480,483],{"class":44,"line":99},[42,467,449],{"class":48},[42,469,82],{"class":52},[42,471,56],{"class":48},[42,473,60],{"class":59},[42,475,89],{"class":63},[42,477,67],{"class":59},[42,479,94],{"class":70},[42,481,482],{"class":59},");   ",[42,484,485],{"class":115},"\u002F\u002F named for meaning, not storage\n",[42,487,488],{"class":44,"line":106},[42,489,103],{"emptyLinePlaceholder":102},[42,491,492,495,498,501,503,506,508,511,514,517,520],{"class":44,"line":119},[42,493,494],{"class":59},"  server.",[42,496,497],{"class":63},"send",[42,499,500],{"class":59},"({ type: ",[42,502,249],{"class":70},[42,504,505],{"class":59},", collection: ",[42,507,71],{"class":70},[42,509,510],{"class":59},", id: ",[42,512,513],{"class":70},"'1'",[42,515,516],{"class":59},", fields: { name: ",[42,518,519],{"class":70},"'a.bam'",[42,521,522],{"class":59}," } });\n",[42,524,526,528,530,532,534,537,539],{"class":44,"line":525},6,[42,527,494],{"class":59},[42,529,497],{"class":63},[42,531,500],{"class":59},[42,533,303],{"class":70},[42,535,536],{"class":59},", id: subId, collection: ",[42,538,71],{"class":70},[42,540,541],{"class":59}," });\n",[42,543,545,548],{"class":44,"line":544},7,[42,546,547],{"class":48},"  await",[42,549,550],{"class":59}," handle.ready;\n",[42,552,554],{"class":44,"line":553},8,[42,555,103],{"emptyLinePlaceholder":102},[42,557,559,562,565,567,569,571,574,577,580,582,585,587],{"class":44,"line":558},9,[42,560,561],{"class":63},"  expect",[42,563,564],{"class":59},"(store.",[42,566,125],{"class":63},[42,568,67],{"class":59},[42,570,513],{"class":70},[42,572,573],{"class":59},")).",[42,575,576],{"class":63},"toEqual",[42,578,579],{"class":59},"({ _id: ",[42,581,513],{"class":70},[42,583,584],{"class":59},", name: ",[42,586,519],{"class":70},[42,588,541],{"class":59},[42,590,592],{"class":44,"line":591},10,[42,593,594],{"class":59},"});\n",[11,596,597],{},"Run it against a client that guesses from the name and watch it go red. Then let the server name the collection, and watch it go green. The red is the lesson. The green is just the receipt.",[148,599,601],{"id":600},"why-we-work-this-way","Why we work this way",[11,603,604],{},"None of this was hard once we stopped guessing. The work was in refusing to read a green test suite as proof, and asking where the truth actually lived. That is most of the work. We let the data tell us what is true, we write the test that fails for the right reason first, and we stay suspicious of any code that only our own tests seem to need.",[11,606,607],{},"A subscription should never have to guess where its own data lives. Now it does not.",[609,610,611],"style",{},"html pre.shiki code .snl16, html code.shiki .snl16{--shiki-default:#F97583}html pre.shiki code .sDLfK, html code.shiki .sDLfK{--shiki-default:#79B8FF}html pre.shiki code .s95oV, html code.shiki .s95oV{--shiki-default:#E1E4E8}html pre.shiki code .svObZ, html code.shiki .svObZ{--shiki-default:#B392F0}html pre.shiki code .sU2Wk, html code.shiki .sU2Wk{--shiki-default:#9ECBFF}html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":38,"searchDepth":77,"depth":77,"links":613},[614,615,616,617,618,619],{"id":150,"depth":77,"text":151},{"id":220,"depth":77,"text":221},{"id":321,"depth":77,"text":322},{"id":389,"depth":77,"text":390},{"id":411,"depth":77,"text":412},{"id":600,"depth":77,"text":601},"Design and Architecture","2026-07-05T10:16:16.000Z","A bug that threw no error and dropped every document because the client guessed a collection from a name. The fix was one honest field on the ready message.",false,"md","\u002Fimages\u002Fblog\u002Fbug-resolved-successfully-hero.jpg",{},"\u002Fblog\u002Fthe-bug-that-resolved-successfully","EkoLite",{"title":5,"description":622},null,"blog\u002Fthe-bug-that-resolved-successfully",[633,634,635,636],"protocol","pubsub","testing","tdd","5HW-CnTNGTB8r8F0I6HzMjU5SfSbJIGf8ZX4gIq1mNs",[639,651,663,670,680,686,695,702,709,718,725,734,741,748,760,769,776,783,792,800,808,818,825,833,840,846,852,861,869,871,879,886,896,904,910,920,929,937,945,953,961,968,976,984,991,997,1004,1013,1021,1028,1035,1044,1050,1058,1064,1072,1078,1087,1094,1101,1109,1115,1121,1127],{"path":640,"title":641,"description":642,"date":643,"author":6,"image":644,"readingMinutes":525,"category":645,"project":646,"tags":647,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fa-branch-is-inventory","A Branch Is Inventory","Unintegrated code is stock in a warehouse, and it depreciates. Our branch was one merge behind the trunk and that was enough for a conflict. What waiting costs.","2026-07-09T09:38:00.000Z","\u002Fimages\u002Fblog\u002Fa-branch-is-inventory-hero.jpg","Craft and Practice","The Dojo",[648,649,650],"git","continuous-integration","craft",{"path":652,"title":653,"description":654,"date":655,"author":6,"image":630,"readingMinutes":544,"category":656,"project":657,"tags":658,"draft":623,"series":662,"seriesOrder":99},"\u002Fblog\u002Fa-map-drawn-by-the-build","A Map Drawn by the Build","Thirty six of our pages had never been visited by Google because nothing said they existed. The sitemap is drawn from the build, and it found a draft.","2026-08-22T20:30:00.000Z","Shipping and Operations","ekohacks.com",[659,660,661],"seo","operations","nuxt","From Invisible to Findable",{"path":664,"title":665,"description":666,"date":667,"author":6,"image":630,"readingMinutes":525,"category":656,"project":657,"tags":668,"draft":623,"series":662,"seriesOrder":558},"\u002Fblog\u002Fa-privacy-policy-you-can-diff","A Privacy Policy You Can Diff","Our legal pages are files in the same repository as the site. Each now lists every change to its text, with the date and the diff, drawn from git at build time.","2026-08-23T16:00:00.000Z",[669,660,661],"privacy",{"path":671,"title":672,"description":673,"date":674,"author":6,"image":675,"readingMinutes":544,"category":676,"project":628,"tags":677,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fan-off-switch-not-a-disguise","An Off Switch, Not a Disguise","A Nullable differs from a stub in whether production code can tell the fake is there. Finding the word fixed a socket wrapper that had been lying to its tests.","2026-07-20T09:05:00.000Z","\u002Fimages\u002Fblog\u002Fan-off-switch-not-a-disguise-hero.jpg","Testing and TDD",[678,635,679],"nullables","websocket",{"path":681,"title":682,"description":683,"date":684,"author":6,"image":685,"readingMinutes":106,"category":645,"project":630,"tags":630,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fbuilding-engineering-teams-that-learn-together","Building Engineering Teams That Learn Together","The strongest engineering teams are not the ones with the most talented individuals. They are the ones that have learned how to learn together.","2026-02-05T09:00:00.000Z","\u002Fimages\u002Fblog\u002Fteams-that-learn-together-hero.jpg",{"path":687,"title":688,"description":689,"date":690,"author":6,"image":691,"readingMinutes":106,"category":656,"project":646,"tags":692,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fderived-state-recompute","The Fix Was Merged, but the Numbers Were Still Wrong","We fixed a scoring bug, reviewed it, merged it, and production still showed the old numbers. Derived data is a cache that goes stale, and it must be recomputed.","2026-07-08T21:43:55.000Z","\u002Fimages\u002Fblog\u002Fderived-state-recompute-hero.jpg",[660,693,694],"deployment","idempotency",{"path":696,"title":697,"description":698,"date":699,"author":700,"image":701,"readingMinutes":525,"category":656,"project":630,"tags":630,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fdockerising-nestjs-nuxt-monorepo-with-pnpm","Dockerising a NestJS and Nuxt Monorepo with pnpm","Dockerising a NestJS and Nuxt monorepo with pnpm: separate multi stage Dockerfiles for development and production, one Compose file, reproducible environments.","2026-02-09T09:00:00.000Z","Ogochukwu Okpala","\u002Fimages\u002Fblog\u002Fdocker-monorepo-hero.png",{"path":703,"title":704,"description":705,"date":706,"author":6,"image":630,"readingMinutes":544,"category":656,"project":657,"tags":707,"draft":623,"series":662,"seriesOrder":708},"\u002Fblog\u002Ffifty-posts-and-an-empty-robots-txt","Fifty Posts and an Empty robots.txt","Our site scored 100 for SEO and nobody could find it. The audit that started a series on making a site findable, and on what measuring visitors costs them.","2026-08-21T14:30:00.000Z",[659,660,650],0,{"path":710,"title":711,"description":712,"date":713,"author":6,"image":714,"readingMinutes":106,"category":645,"project":646,"tags":715,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Ffrom-convention-to-plugin","From Convention to Plugin","A five step procedure for webhook signature checks, easy to forget and silent when you did, became one Fastify plugin. The safe path is now impossible to skip.","2026-04-17T08:26:12.000Z","\u002Fimages\u002Fblog\u002Ffrom-convention-to-plugin-hero.jpg",[650,716,717],"fastify","security",{"path":719,"title":720,"description":721,"date":722,"author":6,"image":723,"readingMinutes":119,"category":656,"project":646,"tags":724,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fintegrate-against-the-trunk","Integrate Against the Trunk, Not Your Copy of It","A rebase onto a stale local main succeeds, looks resolved, and leaves the pull request conflicting. Everything on your machine is a photograph of the trunk.","2026-07-09T09:22:00.000Z","\u002Fimages\u002Fblog\u002Fintegrate-against-the-trunk-hero.jpg",[648,649,660],{"path":726,"title":727,"description":728,"date":729,"author":6,"image":730,"readingMinutes":106,"category":645,"project":646,"tags":731,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Flandmines","Landmines","Most CLAUDE.md files grow because documenting a convention feels like progress. Ours holds landmines only: facts the code cannot tell you, costly to step on.","2026-04-17T10:15:06.000Z","\u002Fimages\u002Fblog\u002Flandmines-hero.jpg",[650,732,733],"documentation","ai-agents",{"path":735,"title":736,"description":737,"date":738,"author":6,"image":739,"readingMinutes":525,"category":656,"project":646,"tags":740,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fnever-break-the-build","Never Break the Build","If the software worked five minutes ago, only five minutes of change can be to blame. What a green trunk buys, who pays for it, and a check that could not fail.","2026-07-09T09:54:00.000Z","\u002Fimages\u002Fblog\u002Fnever-break-the-build-hero.jpg",[649,660,635],{"path":742,"title":743,"description":744,"date":745,"author":6,"image":630,"readingMinutes":544,"category":656,"project":657,"tags":746,"draft":623,"series":662,"seriesOrder":77},"\u002Fblog\u002Fone-address-per-page","One Address per Page","Every page on our site answered with a redirect before it answered with a page. How we made the build emit one address, declare it, and check it live.","2026-08-22T18:30:00.000Z",[659,660,661,747],"netlify",{"path":749,"title":750,"description":751,"date":752,"author":6,"image":753,"readingMinutes":106,"category":620,"project":754,"tags":755,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fone-command-three-policies","One Command, Three Policies, Zero Duplication","Preflight, cut and ship each worked alone before one command composed them. Why the composition layer is forty lines, and how the scrollback became the record.","2026-07-21T17:20:00.000Z","\u002Fimages\u002Fblog\u002Fone-command-three-policies-hero.jpg","The EkoHacks CLI",[756,757,758,759],"composition","cli-design","narration","encoding-the-release",{"path":761,"title":762,"description":763,"date":764,"author":6,"image":765,"readingMinutes":544,"category":620,"project":628,"tags":766,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fone-way-to-fail","One Way to Fail","Closing the convergence so an upload fails in the same error shape as every other call, mostly by deleting the code that made the two shapes differ.","2026-07-20T10:05:00.000Z","\u002Fimages\u002Fblog\u002Fone-way-to-fail-hero.jpg",[767,678,768],"design","error handling",{"path":770,"title":771,"description":772,"date":773,"author":6,"image":774,"readingMinutes":525,"category":656,"project":646,"tags":775,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fready-to-ship-not-ready-to-release","Ready to Ship, Not Ready to Release","Most teams hide a delay between saying done and being able to ship. Being ready to release at any moment, and why our deploy ships the commit that was tested.","2026-07-09T10:02:00.000Z","\u002Fimages\u002Fblog\u002Fready-to-ship-hero.jpg",[649,693,660],{"path":777,"title":778,"description":779,"date":780,"author":6,"image":781,"readingMinutes":525,"category":645,"project":646,"tags":782,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Frebase-or-merge-is-the-wrong-argument","Rebase or Merge Is the Wrong Argument","Both commands reconcile the same commits and hit the same conflicts. What differs is when you resolve them. The loud argument hides a quiet one: long branches.","2026-07-09T09:30:00.000Z","\u002Fimages\u002Fblog\u002Frebase-or-merge-hero.jpg",[648,649,650],{"path":784,"title":785,"description":786,"date":787,"author":6,"image":788,"readingMinutes":99,"category":620,"project":646,"tags":789,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Freconstructing-the-past","Reconstructing the Past","Connect a repository with a year of history and a trend curve reaches back months. How a system shows a past it never saw, recomputed from one source of truth.","2026-07-07T21:26:35.000Z","\u002Fimages\u002Fblog\u002Freconstructing-the-past-hero.jpg",[767,790,791],"data","onboarding",{"path":793,"title":794,"description":795,"date":796,"author":6,"image":630,"readingMinutes":525,"category":676,"project":754,"tags":797,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fretiring-a-board","Retiring a Board: User Testing a CLI Before You Ship It","An afternoon of user testing against a real Linear board, and the four findings a green test suite could never have written.","2026-08-01T10:20:00.000Z",[798,678,757,799],"user-testing","linear",{"path":801,"title":802,"description":803,"date":804,"author":6,"image":805,"readingMinutes":119,"category":676,"project":646,"tags":806,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fretrofitting-testing-without-mocks","Retrofitting Testing Without Mocks","The server had 37 vi.mock calls and no test that touched the database. Five steps to remove every mock with Nullables: real logic, real data, sociable tests.","2026-04-17T12:30:37.000Z","\u002Fimages\u002Fblog\u002Fretrofitting-without-mocks-hero.jpg",[635,678,807],"mocks",{"path":809,"title":810,"description":811,"date":812,"author":6,"image":813,"readingMinutes":106,"category":656,"project":754,"tags":814,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Frun-it-by-hand-until-it-is-boring","Run It by Hand Until It Is Boring","Releasing EkoLite was a document before it was a command, and stayed one until running it by hand had nothing left to teach us. Why we automate operations last.","2026-07-21T17:00:00.000Z","\u002Fimages\u002Fblog\u002Frun-it-by-hand-hero.jpg",[815,816,817,759],"automation","releasing","process",{"path":819,"title":820,"description":821,"date":787,"author":6,"image":822,"readingMinutes":99,"category":656,"project":646,"tags":823,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fsafe-to-run-twice","Safe to Run Twice","Connect the same repository twice, or let a webhook redeliver an event. Idempotency in two halves: writes through a natural key, side effects behind a ledger.","\u002Fimages\u002Fblog\u002Fsafe-to-run-twice-hero.jpg",[660,694,824],"webhooks",{"path":826,"title":827,"description":828,"date":829,"author":6,"image":630,"readingMinutes":525,"category":656,"project":646,"tags":830,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fsource-or-execute","Source or Execute","Our dojo laptops are provisioned by one bash script of nearly twelve hundred lines. Splitting it into modules is two decisions, not one, and we chose a hybrid.","2026-08-01T09:00:00.000Z",[831,832,756,660],"shell","provisioning",{"path":834,"title":835,"description":836,"date":630,"author":837,"image":838,"readingMinutes":45,"category":620,"project":839,"tags":630,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fstage-then-transform-why-your-crawler-should-never-touch-production-tables","Stage, Then Transform: Crawlers Stay Out of Production","Where data from an external source lands first decides whether the pipeline still works in six months. The staging pattern, shown with a crawler we build now.","EkoHacks","\u002Fimages\u002Fblog\u002Fstage-then-transform-hero.jpg","Propi",{"path":841,"title":842,"description":843,"date":844,"author":6,"image":630,"readingMinutes":544,"category":676,"project":657,"tags":845,"draft":623,"series":662,"seriesOrder":119},"\u002Fblog\u002Ftelling-the-machine-what-the-page-is","Telling the Machine What the Page Is","Structured data on every post, and a test that runs after each build and fails it when a page lacks what a crawler needs. First run: forty nine problems.","2026-08-22T23:30:00.000Z",[659,635,661],{"path":847,"title":848,"description":849,"date":850,"author":6,"image":851,"readingMinutes":77,"category":676,"project":630,"tags":630,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Ftest-driven-development-is-not-about-tests","Test Driven Development Is Not About Tests","TDD is widely misunderstood. It is not a testing strategy. It is a design tool that produces simpler, more focused code by making you think before you type.","2026-02-01T09:00:00.000Z","\u002Fimages\u002Fblog\u002Ftdd-not-about-tests-hero.jpg",{"path":853,"title":854,"description":855,"date":856,"author":6,"image":857,"readingMinutes":119,"category":676,"project":754,"tags":858,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Ftesting-a-release-without-releasing","Testing a Release Without Releasing","How to test watch CI until green, then merge, hundreds of times a day with no CI in sight. Nullables, output trackers, and a fake that copies GitHub shapes.","2026-07-21T17:10:00.000Z","\u002Fimages\u002Fblog\u002Ftesting-a-release-without-releasing-hero.jpg",[678,859,860,759],"testing-without-mocks","james-shore",{"path":862,"title":863,"description":864,"date":865,"author":6,"image":630,"readingMinutes":525,"category":676,"project":646,"tags":866,"draft":623,"series":868,"seriesOrder":45},"\u002Fblog\u002Fthe-best-coverage-number-in-the-room","The Best Coverage Number in the Room","Same commit, same spec, same test count. The mocked suite ran 5.6 times faster, covered 3.5 fewer points of real code, and posted the best branch coverage.","2026-08-27T12:00:00.000Z",[635,678,807,867],"coverage","What Mocks Cost",{"path":627,"title":5,"description":622,"date":621,"author":6,"image":625,"readingMinutes":119,"category":620,"project":628,"tags":870,"draft":623,"series":630,"seriesOrder":630},[633,634,635,636],{"path":872,"title":873,"description":874,"date":875,"author":6,"image":876,"readingMinutes":525,"category":676,"project":628,"tags":877,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-clock-that-learned-to-walk","The Clock That Learned to Walk","A stub clock that teleported to the end of the window instead of passing through time, so a timer set inside another never fired. A real clock model fixed it.","2026-07-07T22:44:42.000Z","\u002Fimages\u002Fblog\u002Fthe-clock-that-learned-to-walk-hero.jpg",[678,635,878],"refactoring",{"path":880,"title":881,"description":882,"date":883,"author":6,"image":884,"readingMinutes":119,"category":645,"project":646,"tags":885,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-conflict-nobody-wrote","The Conflict Nobody Wrote","A pull request conflicted in a file neither author had typed into. A generated document recorded test line numbers, both branches shifted them, git merges text.","2026-07-09T09:14:00.000Z","\u002Fimages\u002Fblog\u002Fthe-conflict-nobody-wrote-hero.jpg",[648,649,650],{"path":887,"title":888,"description":889,"date":890,"author":6,"image":891,"readingMinutes":553,"category":656,"project":646,"tags":892,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-container-that-wasnt-there","The Container That Wasn't There","Production served HTML where the browser asked for JavaScript, and nothing in our code had changed. A week debugging a platform we cannot see inside.","2026-07-17T14:30:00.000Z","\u002Fimages\u002Fblog\u002Fcontainer-that-wasnt-there-hero.jpg",[660,893,894,895],"debugging","european-tech","community",{"path":897,"title":898,"description":899,"date":900,"author":6,"image":901,"readingMinutes":525,"category":620,"project":628,"tags":902,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-design-we-never-drew","The Design We Never Drew","How the upload path in EkoLite arrived rather than being drawn, and the two habits, test first and integrate always, that turn an emerging shape into a design.","2026-07-20T10:00:00.000Z","\u002Fimages\u002Fblog\u002Fthe-design-we-never-drew-hero.jpg",[767,636,903],"continuous integration",{"path":905,"title":906,"description":907,"date":908,"author":6,"image":909,"readingMinutes":106,"category":645,"project":630,"tags":630,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-dojo-way-deliberate-practice-for-software-developers","The Dojo Way: Deliberate Practice for Software Developers","Most developers learn on the job, and the job rarely teaches the fundamentals. The Dojo borrows from martial arts to make a space for deliberate practice.","2026-01-22T09:00:00.000Z","\u002Fimages\u002Fblog\u002Fthe-dojo-way-hero.jpg",{"path":911,"title":912,"description":913,"date":914,"author":6,"image":915,"readingMinutes":544,"category":645,"project":646,"tags":916,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-done-column-is-a-syllabus","The Done Column Is a Syllabus","We asked Linear for every story our team has ever finished, all 187 of them, and read the column end to end. It turned out to be the course we teach.","2026-07-31T09:00:00.000Z","\u002Fimages\u002Fblog\u002Fdone-column-syllabus-hero.jpg",[917,918,919,799],"graphql","stories","xp",{"path":921,"title":922,"description":923,"date":924,"author":6,"image":925,"readingMinutes":119,"category":676,"project":754,"tags":926,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-failing-test-is-the-review","The Failing Test Is the Review","Every behaviour in the CLI landed as two commits: a red test, then the code that makes it green. Reviewing intent before implementation, and why red never bent.","2026-07-21T17:05:00.000Z","\u002Fimages\u002Fblog\u002Fthe-failing-test-is-the-review-hero.jpg",[636,927,928,759],"red-first","code-review",{"path":930,"title":931,"description":932,"date":933,"author":6,"image":934,"readingMinutes":119,"category":656,"project":754,"tags":935,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-first-real-run-said-no","The First Real Run Said No","The tool's first real outing ended with FAIL and a stopped rail, and we count it as a success. A naive sounding question then uncovered a quiet failure mode.","2026-07-21T17:25:00.000Z","\u002Fimages\u002Fblog\u002Fthe-first-real-run-said-no-hero.jpg",[816,936,648,759],"preflight",{"path":938,"title":939,"description":940,"date":941,"author":6,"image":942,"readingMinutes":119,"category":656,"project":628,"tags":943,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-five-second-goodbye","The Five Second Goodbye","A shutdown that arms its own deadline so a hung close cannot strand the process, with the policy lifted out of the boot shell so every decision can be tested.","2026-07-05T12:03:00.000Z","\u002Fimages\u002Fblog\u002Fthe-five-second-goodbye-hero.jpg",[944,678,635],"shutdown",{"path":946,"title":947,"description":948,"date":949,"author":6,"image":950,"readingMinutes":525,"category":656,"project":628,"tags":951,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-framework-in-the-description-field","The Framework in the Description Field","Our package called itself a framework, but it could not be installed. The fix was to stop trusting the build and become the stranger who installs the tarball.","2026-07-08T17:28:39.000Z","\u002Fimages\u002Fblog\u002Fframework-description-field-hero.jpg",[952,635,650],"packaging",{"path":954,"title":955,"description":956,"date":957,"author":6,"image":958,"readingMinutes":106,"category":620,"project":754,"tags":959,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-gate-always-asks","The Gate Always Asks","A release automates things you cannot take back, so which of them may a machine do without asking a human? Pauses, and a yes flag that opens no door.","2026-07-21T17:15:00.000Z","\u002Fimages\u002Fblog\u002Fthe-gate-always-asks-hero.jpg",[815,960,767,759],"human-in-the-loop",{"path":962,"title":963,"description":964,"date":965,"author":6,"image":966,"readingMinutes":525,"category":656,"project":646,"tags":967,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-gate-went-red-and-it-was-right","The Gate Went Red, and It Was Right","We added the missing check on our API specification and it failed on its first run, because the file was never a function of the source. A clean machine saw it.","2026-07-09T10:10:00.000Z","\u002Fimages\u002Fblog\u002Fgate-went-red-hero.jpg",[649,660,650],{"path":969,"title":970,"description":971,"date":972,"author":6,"image":973,"readingMinutes":525,"category":656,"project":628,"tags":974,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-knock-and-the-axe","The Knock and the Axe","SIGTERM is a request your process can hear and SIGKILL is removal it never sees, and the fixed window between them is exactly where graceful shutdown lives.","2026-07-20T12:00:00.000Z","\u002Fimages\u002Fblog\u002Fthe-knock-and-the-axe-hero.jpg",[944,660,975],"signals",{"path":977,"title":978,"description":979,"date":980,"author":6,"image":981,"readingMinutes":553,"category":645,"project":628,"tags":982,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-line-nothing-could-see","The Line Nothing Could See","Reviewing the reasoning under a refactor, not only the diff. Ask of every line what can observe it, and back each review claim with a test the author can run.","2026-07-07T22:43:00.000Z","\u002Fimages\u002Fblog\u002Fthe-line-nothing-could-see-hero.jpg",[928,878,983,635],"teaching",{"path":985,"title":986,"description":987,"date":988,"author":6,"image":989,"readingMinutes":525,"category":620,"project":628,"tags":990,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-long-way-round","The Long Way Round","The count a method computes reaches the screen not through its return value but by being written into a collection a client subscribes to, EkoLite's channel.","2026-07-20T11:05:00.000Z","\u002Fimages\u002Fblog\u002Fthe-long-way-round-hero.jpg",[767,634,678],{"path":992,"title":993,"description":994,"date":995,"author":6,"image":630,"readingMinutes":544,"category":656,"project":657,"tags":996,"draft":623,"series":662,"seriesOrder":45},"\u002Fblog\u002Fthe-page-that-existed-only-when-someone-linked-to-it","The Page That Existed Only When Someone Linked to It","Our blog vanished in production while passing every local check. How we found the cause, fixed it twice, and how the fix gave every page a twin.","2026-08-22T16:00:00.000Z",[659,660,661],{"path":998,"title":999,"description":1000,"date":1001,"author":6,"image":1002,"readingMinutes":553,"category":656,"project":646,"tags":1003,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-previews-that-served-production","The Previews That Served Production","Two weeks after the container that was not there, the same impossible error came back. The orphans were our own pull request previews. One diagnosis was wrong.","2026-07-31T17:00:00.000Z","\u002Fimages\u002Fblog\u002Fpreviews-served-production-hero.jpg",[660,893,894,895],{"path":1005,"title":1006,"description":1007,"date":1008,"author":6,"image":1009,"readingMinutes":106,"category":645,"project":754,"tags":1010,"draft":102,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-release-is-the-acceptance-test","The Release Is the Acceptance Test","Not a green suite, not a good demo: a real version of a real package, live on npm, shipped by the tool. What red first tests proved, and what only reality did.","2026-07-21T17:35:00.000Z","\u002Fimages\u002Fblog\u002Frelease-acceptance-test-hero.jpg",[816,1011,1012,759],"dogfooding","acceptance-testing",{"path":1014,"title":1015,"description":1016,"date":1017,"author":6,"image":1018,"readingMinutes":544,"category":676,"project":628,"tags":1019,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-script-that-never-ran","The Script That Never Ran","Joining two abilities EkoLite already had, a method that runs and a runner that shells out, and proving the join with a nulled runner before any script exists.","2026-07-20T11:00:00.000Z","\u002Fimages\u002Fblog\u002Fthe-script-that-never-ran-hero.jpg",[635,678,1020],"scriptrunner",{"path":1022,"title":1023,"description":1024,"date":1025,"author":6,"image":630,"readingMinutes":553,"category":656,"project":657,"tags":1026,"draft":623,"series":662,"seriesOrder":525},"\u002Fblog\u002Fthe-small-things-the-crawler-notices","The Small Things the Crawler Notices","Speed is the part of findability you can measure on a laptop. Fonts and images we shipped without looking, an error page we did not have, and the numbers after.","2026-08-23T10:00:00.000Z",[659,660,1027],"performance",{"path":1029,"title":1030,"description":1031,"date":1032,"author":6,"image":1033,"readingMinutes":544,"category":676,"project":628,"tags":1034,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-test-that-could-not-fail","The Test That Could Not Fail","A green test that stayed green when we deleted the behaviour it was named after, and the single blunt question that exposed it.","2026-07-20T09:00:00.000Z","\u002Fimages\u002Fblog\u002Ftest-that-could-not-fail-hero.jpg",[635,678,679],{"path":1036,"title":1037,"description":1038,"date":1039,"author":837,"image":1040,"readingMinutes":525,"category":645,"project":1041,"tags":1042,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-website-that-told-the-same-story-twice","The Website That Told the Same Story Twice","Our home and story pages felt like one story across two screens. Rather than argue by taste, we modelled our words as data and asked a database one question.","2026-06-06","\u002Fimages\u002Fblog\u002Fwebsite-same-story-twice-hero.jpg","The Website",[650,1043,790,983],"content",{"path":1045,"title":1046,"description":1047,"date":621,"author":6,"image":1048,"readingMinutes":119,"category":676,"project":628,"tags":1049,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-words-we-work-in","The Words We Work In","The vocabulary we test with, Nullable, embedded stub, stub object, output tracking, each grounded in real code so a review points at a line, never at taste.","\u002Fimages\u002Fblog\u002Fthe-words-we-work-in-hero.jpg",[678,635,650,983],{"path":1051,"title":1052,"description":1053,"date":1039,"author":837,"image":1054,"readingMinutes":106,"category":645,"project":1041,"tags":1055,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fthe-workflow-is-the-lesson","The Workflow Is the Lesson","We are moving our content out of a cloud CMS and into git. Why a school that teaches a keyboard first way of working should practise it in the open, and how.","\u002Fimages\u002Fblog\u002Fworkflow-lesson-hero.png",[1056,648,983,1057],"workflow","accessibility",{"path":1059,"title":1060,"description":1061,"date":1062,"author":6,"image":630,"readingMinutes":525,"category":676,"project":646,"tags":1063,"draft":623,"series":868,"seriesOrder":77},"\u002Fblog\u002Ftwenty-six-more-tests-four-fewer-behaviours","Twenty Six More Tests, Four Fewer Behaviours","Removing the mocks grew the suite from 44 tests to 70 and quietly deleted four behaviours, every one of them a failure path. Test count is not coverage.","2026-08-28T09:00:00.000Z",[635,678,807,867],{"path":1065,"title":1066,"description":1067,"date":1068,"author":6,"image":1069,"readingMinutes":544,"category":656,"project":646,"tags":1070,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Ftwo-hands-on-one-lever","Two Hands on One Lever","Our deploy failed with a deploy already in progress while the commit it wanted to ship was going live. Anatomy of a benign collision and a trigger safe to lose.","2026-07-23T09:00:00.000Z","\u002Fimages\u002Fblog\u002Ftwo-hands-on-one-lever-hero.jpg",[660,694,1071],"observability",{"path":1073,"title":1074,"description":1075,"date":1076,"author":6,"image":630,"readingMinutes":544,"category":676,"project":646,"tags":1077,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Ftwo-hundred-and-fourteen-undecided","Two Hundred and Fourteen Undecided","An accessibility scanner found three faults on the dojo, we fixed them, and the next run came back clean. The clean run was the dangerous one.","2026-08-22T12:00:00.000Z",[1057,635,767,650],{"path":1079,"title":1080,"description":1081,"date":1082,"author":6,"image":1083,"readingMinutes":99,"category":620,"project":646,"tags":1084,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Ftwo-validators-one-gate","Two Validators, One Gate","Validating one request body twice, with a Fastify schema and again with Zod, is not double safety. The second gate is unreachable. One validator; Zod for types.","2026-07-07T22:06:46.000Z","\u002Fimages\u002Fblog\u002Ftwo-validators-one-gate-hero.jpg",[767,1085,1086],"validation","typescript",{"path":1088,"title":1089,"description":1090,"date":1091,"author":6,"image":1092,"readingMinutes":525,"category":656,"project":646,"tags":1093,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fwe-are-all-doing-asynchronous-integration","We Are All Doing Asynchronous Integration","A continuous integration server is not continuous integration. The forge tests your work after you have moved on. Our build takes three minutes; no excuse.","2026-07-09T09:46:00.000Z","\u002Fimages\u002Fblog\u002Fasynchronous-integration-hero.jpg",[649,660,693],{"path":1095,"title":1096,"description":1097,"date":1098,"author":6,"image":630,"readingMinutes":544,"category":656,"project":657,"tags":1099,"draft":623,"series":662,"seriesOrder":544},"\u002Fblog\u002Fwe-promised-not-to-watch-then-we-needed-to-see","We Promised Not to Watch. Then We Needed to See.","Our privacy policy said no analytics, and it was true. Adding a page counter meant reopening that promise in public: what we chose, what we refused, one commit.","2026-08-24T10:00:00.000Z",[669,660,1100],"analytics",{"path":1102,"title":1103,"description":1104,"date":1105,"author":6,"image":1106,"readingMinutes":525,"category":656,"project":754,"tags":1107,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fwhat-one-real-release-taught-us","What One Real Release Taught Us in an Afternoon","Two crashes and one near miss within minutes of touching the real GitHub, because we had refused to fake it. The race we never met, the merge that never came.","2026-07-21T17:30:00.000Z","\u002Fimages\u002Fblog\u002Fone-real-release-hero.jpg",[816,1108,678,759],"failure-modes",{"path":1110,"title":1111,"description":1112,"date":1113,"author":6,"image":630,"readingMinutes":525,"category":656,"project":657,"tags":1114,"draft":623,"series":662,"seriesOrder":106},"\u002Fblog\u002Fwhat-the-link-looks-like-before-anyone-clicks","What the Link Looks Like Before Anyone Clicks","A link to any page on our site showed up as a bare rectangle of text. The share image is part of the page, and the build now puts one on every route.","2026-08-22T22:00:00.000Z",[659,660,661],{"path":1116,"title":1117,"description":1118,"date":1119,"author":6,"image":630,"readingMinutes":525,"category":676,"project":646,"tags":1120,"draft":623,"series":868,"seriesOrder":99},"\u002Fblog\u002Fwhat-the-nullable-gave-back","What the Nullable Gave Back","One file, seven behaviours held fixed, the database swapped for a Nullable: about 180 times less time inside the tests, and coverage flat to two decimals.","2026-08-29T09:00:00.000Z",[635,678,807,867],{"path":1122,"title":1123,"description":1124,"date":1125,"author":6,"image":630,"readingMinutes":544,"category":656,"project":657,"tags":1126,"draft":623,"series":662,"seriesOrder":553},"\u002Fblog\u002Fwhat-we-count-and-what-we-refuse-to-know","What We Count, and What We Refuse to Know","Every system that holds anything about a visitor, in one table in the privacy policy. Writing it found a form that no longer existed and one that wrote twice.","2026-08-23T14:00:00.000Z",[669,660,1100],{"path":1128,"title":1129,"description":1130,"date":1131,"author":6,"image":1132,"readingMinutes":106,"category":620,"project":630,"tags":630,"draft":623,"series":630,"seriesOrder":630},"\u002Fblog\u002Fwhy-good-software-starts-with-the-right-questions","Why Good Software Starts with the Right Questions","Before writing a line of code, the most impactful thing a team can do is ask better questions. Discovery is not a phase to rush. It is the foundation.","2026-01-15T09:00:00.000Z","\u002Fimages\u002Fblog\u002Fright-questions-hero.jpg",1787861096796]