[{"data":1,"prerenderedAt":1009},["ShallowReactive",2],{"post-\u002Fblog\u002Fthe-five-second-goodbye":3,"blog-all":513},{"id":4,"title":5,"author":6,"body":7,"category":496,"date":497,"description":498,"draft":499,"extension":500,"image":501,"meta":502,"navigation":77,"path":503,"project":504,"readingMinutes":123,"seo":505,"series":506,"seriesOrder":506,"stem":507,"tags":508,"__hash__":512},"blog\u002Fblog\u002Fthe-five-second-goodbye.md","The Five Second Goodbye","EkoHacks Team",{"type":8,"value":9,"toc":490},"minimark",[10,14,17,22,30,33,37,40,192,195,206,216,226,232,235,239,245,252,255,340,347,350,470,473,479,483,486],[11,12,13],"p",{},"EkoLite, our small real time backend, recently learned to shut down properly. On SIGINT or SIGTERM it closes the websocket, which takes the web server with it, then closes the Mongo connection, then exits. Stop taking requests before you drop the database underneath them. Tidy.",[11,15,16],{},"Then someone asked the obvious question. What if the close never finishes?",[18,19,21],"h2",{"id":20},"the-hang-nobody-sees","The hang nobody sees",[11,23,24,25,29],{},"Both halves of that goodbye can stall. A Mongo driver can sit waiting on a server that vanished mid conversation. A websocket close waits for clients to finish their closing handshake, and a wedged client never does. If either promise refuses to settle, the line that says ",[26,27,28],"code",{},"process.exit(0)"," is simply never reached.",[11,31,32],{},"Locally that looks like Ctrl+C doing nothing. In a container it is quieter and worse: SIGTERM, then silence, then the orchestrator loses patience and sends SIGKILL. The process does die, eventually, but you lose the clean exit code and any clue about what hung. The failure leaves no story behind.",[18,34,36],{"id":35},"arm-the-deadline-first","Arm the deadline first",[11,38,39],{},"The fix is to start a timer before you start saying goodbye, and let whichever finishes first decide the exit:",[41,42,47],"pre",{"className":43,"code":44,"language":45,"meta":46,"style":46},"language-ts shiki shiki-themes github-dark","const SHUTDOWN_GRACE_MS = 5000;\n\nconst deadline = setTimeout(() => {\n  console.error('shutdown timed out, exiting hard');\n  process.exit(1);\n}, SHUTDOWN_GRACE_MS);\n\nawait app.close();\nclearTimeout(deadline);\nprocess.exit(0);\n","ts","",[26,48,49,72,79,102,121,137,148,153,168,177],{"__ignoreMap":46},[50,51,54,58,62,65,68],"span",{"class":52,"line":53},"line",1,[50,55,57],{"class":56},"snl16","const",[50,59,61],{"class":60},"sDLfK"," SHUTDOWN_GRACE_MS",[50,63,64],{"class":56}," =",[50,66,67],{"class":60}," 5000",[50,69,71],{"class":70},"s95oV",";\n",[50,73,75],{"class":52,"line":74},2,[50,76,78],{"emptyLinePlaceholder":77},true,"\n",[50,80,82,84,87,89,93,96,99],{"class":52,"line":81},3,[50,83,57],{"class":56},[50,85,86],{"class":60}," deadline",[50,88,64],{"class":56},[50,90,92],{"class":91},"svObZ"," setTimeout",[50,94,95],{"class":70},"(() ",[50,97,98],{"class":56},"=>",[50,100,101],{"class":70}," {\n",[50,103,105,108,111,114,118],{"class":52,"line":104},4,[50,106,107],{"class":70},"  console.",[50,109,110],{"class":91},"error",[50,112,113],{"class":70},"(",[50,115,117],{"class":116},"sU2Wk","'shutdown timed out, exiting hard'",[50,119,120],{"class":70},");\n",[50,122,124,127,130,132,135],{"class":52,"line":123},5,[50,125,126],{"class":70},"  process.",[50,128,129],{"class":91},"exit",[50,131,113],{"class":70},[50,133,134],{"class":60},"1",[50,136,120],{"class":70},[50,138,140,143,146],{"class":52,"line":139},6,[50,141,142],{"class":70},"}, ",[50,144,145],{"class":60},"SHUTDOWN_GRACE_MS",[50,147,120],{"class":70},[50,149,151],{"class":52,"line":150},7,[50,152,78],{"emptyLinePlaceholder":77},[50,154,156,159,162,165],{"class":52,"line":155},8,[50,157,158],{"class":56},"await",[50,160,161],{"class":70}," app.",[50,163,164],{"class":91},"close",[50,166,167],{"class":70},"();\n",[50,169,171,174],{"class":52,"line":170},9,[50,172,173],{"class":91},"clearTimeout",[50,175,176],{"class":70},"(deadline);\n",[50,178,180,183,185,187,190],{"class":52,"line":179},10,[50,181,182],{"class":70},"process.",[50,184,129],{"class":91},[50,186,113],{"class":70},[50,188,189],{"class":60},"0",[50,191,120],{"class":70},[11,193,194],{},"Four small decisions are hiding in those ten lines, and each one earns its place.",[11,196,197,201,202,205],{},[198,199,200],"strong",{},"You do not need Promise.race."," It is tempting to race the close against a timeout promise, but ",[26,203,204],{},"process.exit"," inside the timer callback ends the process no matter what the awaited close is doing. A plain setTimeout is the whole mechanism. Racing promises would be a more elaborate way of saying the same thing.",[11,207,208,211,212,215],{},[198,209,210],{},"The clearTimeout is about honesty, not liveness."," On the happy path the explicit ",[26,213,214],{},"exit(0)"," wins either way, so skipping the clearTimeout would still work. But cancelling the deadline states the intent: a clean close stands the guard down. Sloppiness that production happens to mask is still sloppiness, and we will come back to how a test can see it.",[11,217,218,221,222,225],{},[198,219,220],{},"Pick the grace period relative to whoever kills you next."," Kubernetes gives you thirty seconds by default, ",[26,223,224],{},"docker stop"," gives you ten. Anything comfortably under that window means you own the failure, log it in your own words, and choose your exit code, rather than being SIGKILLed mid flush. Five seconds is generous for a socket and a database client.",[11,227,228,231],{},[198,229,230],{},"Exit codes carry the story."," Zero means everything closed properly. One means we gave up waiting. Your orchestrator and your logs can now tell a clean stop from a hung one, which is the entire point of doing better than SIGKILL.",[11,233,234],{},"Two refinements round it off. A second signal should mean I meant it: a small flag makes the first signal graceful and the second an immediate hard exit, instead of re entering the handler and closing things twice. And a close that rejects, rather than hangs, wants a catch that logs and exits 1, so the last thing in the log is your sentence and not an unhandled rejection trace.",[18,236,238],{"id":237},"the-part-you-can-test","The part you can test",[11,240,241,242,244],{},"Here is the uncomfortable bit. Those ten lines live in the boot file, the humble shell that reads config and starts the server, and the shell is untested on purpose. Signals, timers and ",[26,243,204],{}," are exactly the things a test runner cannot let you touch. Calling the real exit kills the test along with the process.",[11,246,247,248,251],{},"The move is the same one that tamed Mongo and the websocket in this codebase: put the awkward thing behind a nullable wrapper. A ",[26,249,250],{},"ProcessWrapper"," owns signals in, exit codes out, and the deadline timer. The real one delegates to the process. The nulled one lets a test simulate a signal, advance time by hand, and record exits in an output tracker instead of dying.",[11,253,254],{},"The shutdown policy then becomes a small class that takes anything closable plus that wrapper, and the payoff is easiest to see as two call sites. In production, the boot file wires the real world and steps back:",[41,256,258],{"className":43,"code":257,"language":45,"meta":46,"style":46},"const app = App.create(config);\nconst server = await createServer(app);\nawait server.listen({ port: config.port, host: '0.0.0.0' });\n\nnew Shutdown(app, ProcessWrapper.create()).arm();\n",[26,259,260,278,296,315,319],{"__ignoreMap":46},[50,261,262,264,267,269,272,275],{"class":52,"line":53},[50,263,57],{"class":56},[50,265,266],{"class":60}," app",[50,268,64],{"class":56},[50,270,271],{"class":70}," App.",[50,273,274],{"class":91},"create",[50,276,277],{"class":70},"(config);\n",[50,279,280,282,285,287,290,293],{"class":52,"line":74},[50,281,57],{"class":56},[50,283,284],{"class":60}," server",[50,286,64],{"class":56},[50,288,289],{"class":56}," await",[50,291,292],{"class":91}," createServer",[50,294,295],{"class":70},"(app);\n",[50,297,298,300,303,306,309,312],{"class":52,"line":81},[50,299,158],{"class":56},[50,301,302],{"class":70}," server.",[50,304,305],{"class":91},"listen",[50,307,308],{"class":70},"({ port: config.port, host: ",[50,310,311],{"class":116},"'0.0.0.0'",[50,313,314],{"class":70}," });\n",[50,316,317],{"class":52,"line":104},[50,318,78],{"emptyLinePlaceholder":77},[50,320,321,324,327,330,332,335,338],{"class":52,"line":123},[50,322,323],{"class":56},"new",[50,325,326],{"class":91}," Shutdown",[50,328,329],{"class":70},"(app, ProcessWrapper.",[50,331,274],{"class":91},[50,333,334],{"class":70},"()).",[50,336,337],{"class":91},"arm",[50,339,167],{"class":70},[11,341,342,343,346],{},"Nobody calls anything after ",[26,344,345],{},"arm()",". From here the operating system is the caller, and the policy waits for it.",[11,348,349],{},"In a test, the same class gets the nulled process, and the test takes over every role that is normally unownable: who sends signals, when time passes, and what exit does.",[41,351,353],{"className":43,"code":352,"language":45,"meta":46,"style":46},"const proc = ProcessWrapper.createNull();\nconst exits = proc.trackExits();\nnew Shutdown(closable, proc).arm();\n\nproc.simulateSignal('SIGINT');   \u002F\u002F the test plays the operating system\nproc.advanceTime(5000);          \u002F\u002F the test plays the clock\n\nexpect(exits.data).toEqual([{ code: 1 }]);  \u002F\u002F recorded, not executed\n",[26,354,355,372,389,402,406,426,444,448],{"__ignoreMap":46},[50,356,357,359,362,364,367,370],{"class":52,"line":53},[50,358,57],{"class":56},[50,360,361],{"class":60}," proc",[50,363,64],{"class":56},[50,365,366],{"class":70}," ProcessWrapper.",[50,368,369],{"class":91},"createNull",[50,371,167],{"class":70},[50,373,374,376,379,381,384,387],{"class":52,"line":74},[50,375,57],{"class":56},[50,377,378],{"class":60}," exits",[50,380,64],{"class":56},[50,382,383],{"class":70}," proc.",[50,385,386],{"class":91},"trackExits",[50,388,167],{"class":70},[50,390,391,393,395,398,400],{"class":52,"line":81},[50,392,323],{"class":56},[50,394,326],{"class":91},[50,396,397],{"class":70},"(closable, proc).",[50,399,337],{"class":91},[50,401,167],{"class":70},[50,403,404],{"class":52,"line":104},[50,405,78],{"emptyLinePlaceholder":77},[50,407,408,411,414,416,419,422],{"class":52,"line":123},[50,409,410],{"class":70},"proc.",[50,412,413],{"class":91},"simulateSignal",[50,415,113],{"class":70},[50,417,418],{"class":116},"'SIGINT'",[50,420,421],{"class":70},");   ",[50,423,425],{"class":424},"sAwPA","\u002F\u002F the test plays the operating system\n",[50,427,428,430,433,435,438,441],{"class":52,"line":139},[50,429,410],{"class":70},[50,431,432],{"class":91},"advanceTime",[50,434,113],{"class":70},[50,436,437],{"class":60},"5000",[50,439,440],{"class":70},");          ",[50,442,443],{"class":424},"\u002F\u002F the test plays the clock\n",[50,445,446],{"class":52,"line":150},[50,447,78],{"emptyLinePlaceholder":77},[50,449,450,453,456,459,462,464,467],{"class":52,"line":155},[50,451,452],{"class":91},"expect",[50,454,455],{"class":70},"(exits.data).",[50,457,458],{"class":91},"toEqual",[50,460,461],{"class":70},"([{ code: ",[50,463,134],{"class":60},[50,465,466],{"class":70}," }]);  ",[50,468,469],{"class":424},"\u002F\u002F recorded, not executed\n",[11,471,472],{},"The class under test is byte for byte the one that runs in production. Only the world it was handed changed, and no code between the two ever asks which world it got. Every decision above turns into a plain assertion in this style. Deliver a signal, resolve the close, expect exit 0. Deliver a signal, leave the close hanging, advance time past the grace, expect exit 1. Deliver two signals, expect the second to exit immediately.",[11,474,475,476,478],{},"And the nulled process pays an unexpected dividend. A real process stops existing at ",[26,477,214],{},", so it can never testify about the timer you forgot to cancel. The nulled one outlives the exit. Resolve the close, advance time past the grace anyway, and assert that exactly one exit was recorded. The missing clearTimeout, invisible in production, fails a test.",[18,480,482],{"id":481},"the-move-to-take-home","The move to take home",[11,484,485],{},"When a policy worth testing grows inside an untested shell, do not test the shell. Extract the policy, wrap the part of the world it touches, and keep the shell to wiring. The shell stays humble, the policy gets a test for every sentence of its design, and the next person who wonders why the deadline is five seconds finds the answer written down twice, once in a test name and once in whoever kills you next.",[487,488,489],"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 .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);}html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}",{"title":46,"searchDepth":74,"depth":74,"links":491},[492,493,494,495],{"id":20,"depth":74,"text":21},{"id":35,"depth":74,"text":36},{"id":237,"depth":74,"text":238},{"id":481,"depth":74,"text":482},"Shipping and Operations","2026-07-05T12:03:00.000Z","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.",false,"md","\u002Fimages\u002Fblog\u002Fthe-five-second-goodbye-hero.jpg",{},"\u002Fblog\u002Fthe-five-second-goodbye","EkoLite",{"title":5,"description":498},null,"blog\u002Fthe-five-second-goodbye",[509,510,511],"shutdown","nullables","testing","YNWNDKJYjFNCvEATVQB-TOGFslwD7QLE9IRL5guwjZg",[514,526,537,544,553,559,568,575,582,591,598,607,614,621,634,643,650,657,666,674,682,692,699,707,714,720,726,735,743,753,761,768,778,786,792,802,811,819,821,829,837,844,852,860,867,873,880,889,897,904,911,920,926,934,940,948,954,963,970,977,985,991,997,1003],{"path":515,"title":516,"description":517,"date":518,"author":6,"image":519,"readingMinutes":139,"category":520,"project":521,"tags":522,"draft":499,"series":506,"seriesOrder":506},"\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",[523,524,525],"git","continuous-integration","craft",{"path":527,"title":528,"description":529,"date":530,"author":6,"image":506,"readingMinutes":150,"category":496,"project":531,"tags":532,"draft":499,"series":536,"seriesOrder":81},"\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","ekohacks.com",[533,534,535],"seo","operations","nuxt","From Invisible to Findable",{"path":538,"title":539,"description":540,"date":541,"author":6,"image":506,"readingMinutes":139,"category":496,"project":531,"tags":542,"draft":499,"series":536,"seriesOrder":170},"\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",[543,534,535],"privacy",{"path":545,"title":546,"description":547,"date":548,"author":6,"image":549,"readingMinutes":150,"category":550,"project":504,"tags":551,"draft":499,"series":506,"seriesOrder":506},"\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",[510,511,552],"websocket",{"path":554,"title":555,"description":556,"date":557,"author":6,"image":558,"readingMinutes":104,"category":520,"project":506,"tags":506,"draft":499,"series":506,"seriesOrder":506},"\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":560,"title":561,"description":562,"date":563,"author":6,"image":564,"readingMinutes":104,"category":496,"project":521,"tags":565,"draft":499,"series":506,"seriesOrder":506},"\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",[534,566,567],"deployment","idempotency",{"path":569,"title":570,"description":571,"date":572,"author":573,"image":574,"readingMinutes":139,"category":496,"project":506,"tags":506,"draft":499,"series":506,"seriesOrder":506},"\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":576,"title":577,"description":578,"date":579,"author":6,"image":506,"readingMinutes":150,"category":496,"project":531,"tags":580,"draft":499,"series":536,"seriesOrder":581},"\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",[533,534,525],0,{"path":583,"title":584,"description":585,"date":586,"author":6,"image":587,"readingMinutes":104,"category":520,"project":521,"tags":588,"draft":499,"series":506,"seriesOrder":506},"\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",[525,589,590],"fastify","security",{"path":592,"title":593,"description":594,"date":595,"author":6,"image":596,"readingMinutes":123,"category":496,"project":521,"tags":597,"draft":499,"series":506,"seriesOrder":506},"\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",[523,524,534],{"path":599,"title":600,"description":601,"date":602,"author":6,"image":603,"readingMinutes":104,"category":520,"project":521,"tags":604,"draft":499,"series":506,"seriesOrder":506},"\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",[525,605,606],"documentation","ai-agents",{"path":608,"title":609,"description":610,"date":611,"author":6,"image":612,"readingMinutes":139,"category":496,"project":521,"tags":613,"draft":499,"series":506,"seriesOrder":506},"\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",[524,534,511],{"path":615,"title":616,"description":617,"date":618,"author":6,"image":506,"readingMinutes":150,"category":496,"project":531,"tags":619,"draft":499,"series":536,"seriesOrder":74},"\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",[533,534,535,620],"netlify",{"path":622,"title":623,"description":624,"date":625,"author":6,"image":626,"readingMinutes":104,"category":627,"project":628,"tags":629,"draft":499,"series":506,"seriesOrder":506},"\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","Design and Architecture","The EkoHacks CLI",[630,631,632,633],"composition","cli-design","narration","encoding-the-release",{"path":635,"title":636,"description":637,"date":638,"author":6,"image":639,"readingMinutes":150,"category":627,"project":504,"tags":640,"draft":499,"series":506,"seriesOrder":506},"\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",[641,510,642],"design","error handling",{"path":644,"title":645,"description":646,"date":647,"author":6,"image":648,"readingMinutes":139,"category":496,"project":521,"tags":649,"draft":499,"series":506,"seriesOrder":506},"\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",[524,566,534],{"path":651,"title":652,"description":653,"date":654,"author":6,"image":655,"readingMinutes":139,"category":520,"project":521,"tags":656,"draft":499,"series":506,"seriesOrder":506},"\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",[523,524,525],{"path":658,"title":659,"description":660,"date":661,"author":6,"image":662,"readingMinutes":81,"category":627,"project":521,"tags":663,"draft":499,"series":506,"seriesOrder":506},"\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",[641,664,665],"data","onboarding",{"path":667,"title":668,"description":669,"date":670,"author":6,"image":506,"readingMinutes":139,"category":550,"project":628,"tags":671,"draft":499,"series":506,"seriesOrder":506},"\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",[672,510,631,673],"user-testing","linear",{"path":675,"title":676,"description":677,"date":678,"author":6,"image":679,"readingMinutes":123,"category":550,"project":521,"tags":680,"draft":499,"series":506,"seriesOrder":506},"\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",[511,510,681],"mocks",{"path":683,"title":684,"description":685,"date":686,"author":6,"image":687,"readingMinutes":104,"category":496,"project":628,"tags":688,"draft":499,"series":506,"seriesOrder":506},"\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",[689,690,691,633],"automation","releasing","process",{"path":693,"title":694,"description":695,"date":661,"author":6,"image":696,"readingMinutes":81,"category":496,"project":521,"tags":697,"draft":499,"series":506,"seriesOrder":506},"\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",[534,567,698],"webhooks",{"path":700,"title":701,"description":702,"date":703,"author":6,"image":506,"readingMinutes":139,"category":496,"project":521,"tags":704,"draft":499,"series":506,"seriesOrder":506},"\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",[705,706,630,534],"shell","provisioning",{"path":708,"title":709,"description":710,"date":506,"author":711,"image":712,"readingMinutes":53,"category":627,"project":713,"tags":506,"draft":499,"series":506,"seriesOrder":506},"\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":715,"title":716,"description":717,"date":718,"author":6,"image":506,"readingMinutes":150,"category":550,"project":531,"tags":719,"draft":499,"series":536,"seriesOrder":123},"\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",[533,511,535],{"path":721,"title":722,"description":723,"date":724,"author":6,"image":725,"readingMinutes":74,"category":550,"project":506,"tags":506,"draft":499,"series":506,"seriesOrder":506},"\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":727,"title":728,"description":729,"date":730,"author":6,"image":731,"readingMinutes":123,"category":550,"project":628,"tags":732,"draft":499,"series":506,"seriesOrder":506},"\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",[510,733,734,633],"testing-without-mocks","james-shore",{"path":736,"title":737,"description":738,"date":739,"author":6,"image":506,"readingMinutes":139,"category":550,"project":521,"tags":740,"draft":499,"series":742,"seriesOrder":53},"\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",[511,510,681,741],"coverage","What Mocks Cost",{"path":744,"title":745,"description":746,"date":747,"author":6,"image":748,"readingMinutes":123,"category":627,"project":504,"tags":749,"draft":499,"series":506,"seriesOrder":506},"\u002Fblog\u002Fthe-bug-that-resolved-successfully","The Bug That Resolved Successfully","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.","2026-07-05T10:16:16.000Z","\u002Fimages\u002Fblog\u002Fbug-resolved-successfully-hero.jpg",[750,751,511,752],"protocol","pubsub","tdd",{"path":754,"title":755,"description":756,"date":757,"author":6,"image":758,"readingMinutes":139,"category":550,"project":504,"tags":759,"draft":499,"series":506,"seriesOrder":506},"\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",[510,511,760],"refactoring",{"path":762,"title":763,"description":764,"date":765,"author":6,"image":766,"readingMinutes":123,"category":520,"project":521,"tags":767,"draft":499,"series":506,"seriesOrder":506},"\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",[523,524,525],{"path":769,"title":770,"description":771,"date":772,"author":6,"image":773,"readingMinutes":155,"category":496,"project":521,"tags":774,"draft":499,"series":506,"seriesOrder":506},"\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",[534,775,776,777],"debugging","european-tech","community",{"path":779,"title":780,"description":781,"date":782,"author":6,"image":783,"readingMinutes":139,"category":627,"project":504,"tags":784,"draft":499,"series":506,"seriesOrder":506},"\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",[641,752,785],"continuous integration",{"path":787,"title":788,"description":789,"date":790,"author":6,"image":791,"readingMinutes":104,"category":520,"project":506,"tags":506,"draft":499,"series":506,"seriesOrder":506},"\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":793,"title":794,"description":795,"date":796,"author":6,"image":797,"readingMinutes":150,"category":520,"project":521,"tags":798,"draft":499,"series":506,"seriesOrder":506},"\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",[799,800,801,673],"graphql","stories","xp",{"path":803,"title":804,"description":805,"date":806,"author":6,"image":807,"readingMinutes":123,"category":550,"project":628,"tags":808,"draft":499,"series":506,"seriesOrder":506},"\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",[752,809,810,633],"red-first","code-review",{"path":812,"title":813,"description":814,"date":815,"author":6,"image":816,"readingMinutes":123,"category":496,"project":628,"tags":817,"draft":499,"series":506,"seriesOrder":506},"\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",[690,818,523,633],"preflight",{"path":503,"title":5,"description":498,"date":497,"author":6,"image":501,"readingMinutes":123,"category":496,"project":504,"tags":820,"draft":499,"series":506,"seriesOrder":506},[509,510,511],{"path":822,"title":823,"description":824,"date":825,"author":6,"image":826,"readingMinutes":139,"category":496,"project":504,"tags":827,"draft":499,"series":506,"seriesOrder":506},"\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",[828,511,525],"packaging",{"path":830,"title":831,"description":832,"date":833,"author":6,"image":834,"readingMinutes":104,"category":627,"project":628,"tags":835,"draft":499,"series":506,"seriesOrder":506},"\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",[689,836,641,633],"human-in-the-loop",{"path":838,"title":839,"description":840,"date":841,"author":6,"image":842,"readingMinutes":139,"category":496,"project":521,"tags":843,"draft":499,"series":506,"seriesOrder":506},"\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",[524,534,525],{"path":845,"title":846,"description":847,"date":848,"author":6,"image":849,"readingMinutes":139,"category":496,"project":504,"tags":850,"draft":499,"series":506,"seriesOrder":506},"\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",[509,534,851],"signals",{"path":853,"title":854,"description":855,"date":856,"author":6,"image":857,"readingMinutes":155,"category":520,"project":504,"tags":858,"draft":499,"series":506,"seriesOrder":506},"\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",[810,760,859,511],"teaching",{"path":861,"title":862,"description":863,"date":864,"author":6,"image":865,"readingMinutes":139,"category":627,"project":504,"tags":866,"draft":499,"series":506,"seriesOrder":506},"\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",[641,751,510],{"path":868,"title":869,"description":870,"date":871,"author":6,"image":506,"readingMinutes":150,"category":496,"project":531,"tags":872,"draft":499,"series":536,"seriesOrder":53},"\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",[533,534,535],{"path":874,"title":875,"description":876,"date":877,"author":6,"image":878,"readingMinutes":155,"category":496,"project":521,"tags":879,"draft":499,"series":506,"seriesOrder":506},"\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",[534,775,776,777],{"path":881,"title":882,"description":883,"date":884,"author":6,"image":885,"readingMinutes":104,"category":520,"project":628,"tags":886,"draft":77,"series":506,"seriesOrder":506},"\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",[690,887,888,633],"dogfooding","acceptance-testing",{"path":890,"title":891,"description":892,"date":893,"author":6,"image":894,"readingMinutes":150,"category":550,"project":504,"tags":895,"draft":499,"series":506,"seriesOrder":506},"\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",[511,510,896],"scriptrunner",{"path":898,"title":899,"description":900,"date":901,"author":6,"image":506,"readingMinutes":155,"category":496,"project":531,"tags":902,"draft":499,"series":536,"seriesOrder":139},"\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",[533,534,903],"performance",{"path":905,"title":906,"description":907,"date":908,"author":6,"image":909,"readingMinutes":150,"category":550,"project":504,"tags":910,"draft":499,"series":506,"seriesOrder":506},"\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",[511,510,552],{"path":912,"title":913,"description":914,"date":915,"author":711,"image":916,"readingMinutes":139,"category":520,"project":917,"tags":918,"draft":499,"series":506,"seriesOrder":506},"\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",[525,919,664,859],"content",{"path":921,"title":922,"description":923,"date":747,"author":6,"image":924,"readingMinutes":123,"category":550,"project":504,"tags":925,"draft":499,"series":506,"seriesOrder":506},"\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",[510,511,525,859],{"path":927,"title":928,"description":929,"date":915,"author":711,"image":930,"readingMinutes":104,"category":520,"project":917,"tags":931,"draft":499,"series":506,"seriesOrder":506},"\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",[932,523,859,933],"workflow","accessibility",{"path":935,"title":936,"description":937,"date":938,"author":6,"image":506,"readingMinutes":139,"category":550,"project":521,"tags":939,"draft":499,"series":742,"seriesOrder":74},"\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",[511,510,681,741],{"path":941,"title":942,"description":943,"date":944,"author":6,"image":945,"readingMinutes":150,"category":496,"project":521,"tags":946,"draft":499,"series":506,"seriesOrder":506},"\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",[534,567,947],"observability",{"path":949,"title":950,"description":951,"date":952,"author":6,"image":506,"readingMinutes":150,"category":550,"project":521,"tags":953,"draft":499,"series":506,"seriesOrder":506},"\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",[933,511,641,525],{"path":955,"title":956,"description":957,"date":958,"author":6,"image":959,"readingMinutes":81,"category":627,"project":521,"tags":960,"draft":499,"series":506,"seriesOrder":506},"\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",[641,961,962],"validation","typescript",{"path":964,"title":965,"description":966,"date":967,"author":6,"image":968,"readingMinutes":139,"category":496,"project":521,"tags":969,"draft":499,"series":506,"seriesOrder":506},"\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",[524,534,566],{"path":971,"title":972,"description":973,"date":974,"author":6,"image":506,"readingMinutes":150,"category":496,"project":531,"tags":975,"draft":499,"series":536,"seriesOrder":150},"\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",[543,534,976],"analytics",{"path":978,"title":979,"description":980,"date":981,"author":6,"image":982,"readingMinutes":139,"category":496,"project":628,"tags":983,"draft":499,"series":506,"seriesOrder":506},"\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",[690,984,510,633],"failure-modes",{"path":986,"title":987,"description":988,"date":989,"author":6,"image":506,"readingMinutes":139,"category":496,"project":531,"tags":990,"draft":499,"series":536,"seriesOrder":104},"\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",[533,534,535],{"path":992,"title":993,"description":994,"date":995,"author":6,"image":506,"readingMinutes":139,"category":550,"project":521,"tags":996,"draft":499,"series":742,"seriesOrder":81},"\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",[511,510,681,741],{"path":998,"title":999,"description":1000,"date":1001,"author":6,"image":506,"readingMinutes":150,"category":496,"project":531,"tags":1002,"draft":499,"series":536,"seriesOrder":155},"\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",[543,534,976],{"path":1004,"title":1005,"description":1006,"date":1007,"author":6,"image":1008,"readingMinutes":104,"category":627,"project":506,"tags":506,"draft":499,"series":506,"seriesOrder":506},"\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",1787861096886]