[{"data":1,"prerenderedAt":1155},["ShallowReactive",2],{"post-\u002Fblog\u002Fsource-or-execute":3,"blog-all":659},{"id":4,"title":5,"author":6,"body":7,"category":642,"date":643,"description":644,"draft":645,"extension":646,"image":647,"meta":648,"navigation":261,"path":649,"project":650,"readingMinutes":321,"seo":651,"series":647,"seriesOrder":647,"stem":652,"tags":653,"__hash__":658},"blog\u002Fblog\u002Fsource-or-execute.md","Source or Execute","EkoHacks Team",{"type":8,"value":9,"toc":636},"minimark",[10,14,26,31,34,142,148,223,234,237,241,244,325,328,436,443,446,450,453,531,534,592,595,602,606,609,612,615,618,626,629,632],[11,12,13],"p",{},"Every dojo laptop begins as a bare Debian install. One script turns it into a working machine: window manager, editor, test runner, pairing tools, the lot. The fleet is two models of donated hardware, an HP EliteBook and a MacBook Pro from 2012, and the script detects which one it is standing on and adapts. It has grown to nine numbered sections and nearly twelve hundred lines, and this week it told us, twice, that it had outgrown a single file.",[11,15,16,17,21,22,25],{},"The first signal was small and embarrassing. Adding a tenth step meant editing seventeen echo lines, because every section banner hardcodes its position in the count, ",[18,19,20],"code",{},"[3\u002F9]",", ",[18,23,24],{},"[4\u002F9]",", and so on. The second signal was structural. We wanted to offer tools that some machines should have and most should not, and a monolith has no natural place for optional.",[27,28,30],"h2",{"id":29},"what-the-monolith-already-knows","What the monolith already knows",[11,32,33],{},"Before cutting anything, look at what the sections quietly share. Near the top, the script works out what it is running on:",[35,36,41],"pre",{"className":37,"code":38,"language":39,"meta":40,"style":40},"language-bash shiki shiki-themes github-dark","VENDOR=\"$(cat \u002Fsys\u002Fclass\u002Fdmi\u002Fid\u002Fsys_vendor 2>\u002Fdev\u002Fnull || echo unknown)\"\nAPPLE=0\ncase \"$VENDOR\" in\n  Apple*) APPLE=1 ;;\nesac\n","bash","",[18,42,43,83,94,112,136],{"__ignoreMap":40},[44,45,48,52,56,60,64,67,70,73,76,80],"span",{"class":46,"line":47},"line",1,[44,49,51],{"class":50},"s95oV","VENDOR",[44,53,55],{"class":54},"snl16","=",[44,57,59],{"class":58},"sU2Wk","\"$(",[44,61,63],{"class":62},"svObZ","cat",[44,65,66],{"class":58}," \u002Fsys\u002Fclass\u002Fdmi\u002Fid\u002Fsys_vendor ",[44,68,69],{"class":54},"2>",[44,71,72],{"class":58},"\u002Fdev\u002Fnull ",[44,74,75],{"class":54},"||",[44,77,79],{"class":78},"sDLfK"," echo",[44,81,82],{"class":58}," unknown)\"\n",[44,84,86,89,91],{"class":46,"line":85},2,[44,87,88],{"class":50},"APPLE",[44,90,55],{"class":54},[44,92,93],{"class":58},"0\n",[44,95,97,100,103,106,109],{"class":46,"line":96},3,[44,98,99],{"class":54},"case",[44,101,102],{"class":58}," \"",[44,104,105],{"class":50},"$VENDOR",[44,107,108],{"class":58},"\"",[44,110,111],{"class":54}," in\n",[44,113,115,119,122,125,128,130,133],{"class":46,"line":114},4,[44,116,118],{"class":117},"sns5M","  Apple",[44,120,121],{"class":54},"*",[44,123,124],{"class":54},")",[44,126,127],{"class":50}," APPLE",[44,129,55],{"class":54},[44,131,132],{"class":58},"1",[44,134,135],{"class":50}," ;;\n",[44,137,139],{"class":46,"line":138},5,[44,140,141],{"class":54},"esac\n",[11,143,144,145,147],{},"That ",[18,146,88],{}," flag is consumed hundreds of lines later, where the package section picks a wifi driver:",[35,149,151],{"className":37,"code":150,"language":39,"meta":40,"style":40},"if [ \"$APPLE\" -eq 1 ]; then\n  sudo apt install -y linux-headers-amd64 broadcom-sta-dkms\nelse\n  sudo apt install -y firmware-iwlwifi\nfi\n",[18,152,153,180,200,205,218],{"__ignoreMap":40},[44,154,155,158,161,163,166,168,171,174,177],{"class":46,"line":47},[44,156,157],{"class":54},"if",[44,159,160],{"class":50}," [ ",[44,162,108],{"class":58},[44,164,165],{"class":50},"$APPLE",[44,167,108],{"class":58},[44,169,170],{"class":54}," -eq",[44,172,173],{"class":78}," 1",[44,175,176],{"class":50}," ]; ",[44,178,179],{"class":54},"then\n",[44,181,182,185,188,191,194,197],{"class":46,"line":85},[44,183,184],{"class":62},"  sudo",[44,186,187],{"class":58}," apt",[44,189,190],{"class":58}," install",[44,192,193],{"class":78}," -y",[44,195,196],{"class":58}," linux-headers-amd64",[44,198,199],{"class":58}," broadcom-sta-dkms\n",[44,201,202],{"class":46,"line":96},[44,203,204],{"class":54},"else\n",[44,206,207,209,211,213,215],{"class":46,"line":114},[44,208,184],{"class":62},[44,210,187],{"class":58},[44,212,190],{"class":58},[44,214,193],{"class":78},[44,216,217],{"class":58}," firmware-iwlwifi\n",[44,219,220],{"class":46,"line":138},[44,221,222],{"class":54},"fi\n",[11,224,225,226,229,230,233],{},"A second flag, ",[18,227,228],{},"HIDPI",", is set by reading the panel width and consumed at the very end, where Retina machines get their font scaling. Add one log redirect that captures the whole run and a single ",[18,231,232],{},"set -euo pipefail"," guarding everything, and you have the real problem. The sections are not independent. They share a small amount of state and one error policy.",[11,235,236],{},"So splitting the script is not one decision, it is two. The first is where to cut, and the section banners already answer that. The second is how the pieces run, and shell gives you exactly two answers. The orchestrator can execute each module as its own process, or source each module into its own shell. The difference looks cosmetic. It is structural.",[27,238,240],{"id":239},"option-one-execute","Option one: execute",[11,242,243],{},"The orchestrator stays tiny and runs each module as a child process:",[35,245,247],{"className":37,"code":246,"language":39,"meta":40,"style":40},"export APPLE HIDPI NODE_VERSION\n\nfor module in \"$SCRIPT_DIR\"\u002Fsetup.d\u002F*.sh; do\n  echo \"── $(basename \"$module\") ──\"\n  bash \"$module\"\ndone\n",[18,248,249,257,263,288,307,319],{"__ignoreMap":40},[44,250,251,254],{"class":46,"line":47},[44,252,253],{"class":54},"export",[44,255,256],{"class":50}," APPLE HIDPI NODE_VERSION\n",[44,258,259],{"class":46,"line":85},[44,260,262],{"emptyLinePlaceholder":261},true,"\n",[44,264,265,268,271,274,276,279,282,285],{"class":46,"line":96},[44,266,267],{"class":54},"for",[44,269,270],{"class":50}," module ",[44,272,273],{"class":54},"in",[44,275,102],{"class":58},[44,277,278],{"class":50},"$SCRIPT_DIR",[44,280,281],{"class":58},"\"\u002Fsetup.d\u002F*.sh",[44,283,284],{"class":50},"; ",[44,286,287],{"class":54},"do\n",[44,289,290,293,296,299,301,304],{"class":46,"line":114},[44,291,292],{"class":78},"  echo",[44,294,295],{"class":58}," \"── $(",[44,297,298],{"class":62},"basename",[44,300,102],{"class":58},[44,302,303],{"class":50},"$module",[44,305,306],{"class":58},"\") ──\"\n",[44,308,309,312,314,316],{"class":46,"line":138},[44,310,311],{"class":62},"  bash",[44,313,102],{"class":58},[44,315,303],{"class":50},[44,317,318],{"class":58},"\"\n",[44,320,322],{"class":46,"line":321},6,[44,323,324],{"class":54},"done\n",[11,326,327],{},"Because each module is a separate process, it is a complete program. It carries its own shebang and its own safety line, and it must collect its inputs from the environment:",[35,329,331],{"className":37,"code":330,"language":39,"meta":40,"style":40},"#!\u002Fusr\u002Fbin\u002Fenv bash\nset -euo pipefail\n\nAPPLE=\"${APPLE:-0}\"\n\nif [ \"$APPLE\" -eq 1 ]; then\n  sudo apt install -y linux-headers-amd64 broadcom-sta-dkms\nelse\n  sudo apt install -y firmware-iwlwifi\nfi\n",[18,332,333,339,350,354,374,378,398,413,418,431],{"__ignoreMap":40},[44,334,335],{"class":46,"line":47},[44,336,338],{"class":337},"sAwPA","#!\u002Fusr\u002Fbin\u002Fenv bash\n",[44,340,341,344,347],{"class":46,"line":85},[44,342,343],{"class":78},"set",[44,345,346],{"class":78}," -euo",[44,348,349],{"class":58}," pipefail\n",[44,351,352],{"class":46,"line":96},[44,353,262],{"emptyLinePlaceholder":261},[44,355,356,358,360,363,365,368,371],{"class":46,"line":114},[44,357,88],{"class":50},[44,359,55],{"class":54},[44,361,362],{"class":58},"\"${",[44,364,88],{"class":50},[44,366,367],{"class":54},":-",[44,369,370],{"class":50},"0",[44,372,373],{"class":58},"}\"\n",[44,375,376],{"class":46,"line":138},[44,377,262],{"emptyLinePlaceholder":261},[44,379,380,382,384,386,388,390,392,394,396],{"class":46,"line":321},[44,381,157],{"class":54},[44,383,160],{"class":50},[44,385,108],{"class":58},[44,387,165],{"class":50},[44,389,108],{"class":58},[44,391,170],{"class":54},[44,393,173],{"class":78},[44,395,176],{"class":50},[44,397,179],{"class":54},[44,399,401,403,405,407,409,411],{"class":46,"line":400},7,[44,402,184],{"class":62},[44,404,187],{"class":58},[44,406,190],{"class":58},[44,408,193],{"class":78},[44,410,196],{"class":58},[44,412,199],{"class":58},[44,414,416],{"class":46,"line":415},8,[44,417,204],{"class":54},[44,419,421,423,425,427,429],{"class":46,"line":420},9,[44,422,184],{"class":62},[44,424,187],{"class":58},[44,426,190],{"class":58},[44,428,193],{"class":78},[44,430,217],{"class":58},[44,432,434],{"class":46,"line":433},10,[44,435,222],{"class":54},[11,437,438,439,442],{},"The strengths are real. Every module runs alone, so you can rerun the i3 step after a config tweak without sitting through the full provision. Every module lints alone under ",[18,440,441],{},"shellcheck",". A module cannot trample another module's variables, because there is no shared shell to trample.",[11,444,445],{},"The cost is the contract. State now travels by environment variable, and nothing enforces the agreement. The orchestrator must remember to export, the module must remember to default, and when a new module needs a new fact about the machine, both ends change. With ten modules the drift is not hypothetical. It is a matter of time.",[27,447,449],{"id":448},"option-two-source","Option two: source",[11,451,452],{},"The orchestrator reads each module into its own shell instead:",[35,454,456],{"className":37,"code":455,"language":39,"meta":40,"style":40},"set -euo pipefail\nexec > >(tee -a \"$LOG_FILE\") 2>&1\n\nfor module in \"$SCRIPT_DIR\"\u002Fsetup.d\u002F*.sh; do\n  source \"$module\"\ndone\n",[18,457,458,466,494,498,516,527],{"__ignoreMap":40},[44,459,460,462,464],{"class":46,"line":47},[44,461,343],{"class":78},[44,463,346],{"class":78},[44,465,349],{"class":58},[44,467,468,471,474,477,480,483,485,488,491],{"class":46,"line":85},[44,469,470],{"class":78},"exec",[44,472,473],{"class":54}," >",[44,475,476],{"class":58}," >(",[44,478,479],{"class":62},"tee",[44,481,482],{"class":78}," -a",[44,484,102],{"class":58},[44,486,487],{"class":50},"$LOG_FILE",[44,489,490],{"class":58},"\")",[44,492,493],{"class":54}," 2>&1\n",[44,495,496],{"class":46,"line":96},[44,497,262],{"emptyLinePlaceholder":261},[44,499,500,502,504,506,508,510,512,514],{"class":46,"line":114},[44,501,267],{"class":54},[44,503,270],{"class":50},[44,505,273],{"class":54},[44,507,102],{"class":58},[44,509,278],{"class":50},[44,511,281],{"class":58},[44,513,284],{"class":50},[44,515,287],{"class":54},[44,517,518,521,523,525],{"class":46,"line":138},[44,519,520],{"class":78},"  source",[44,522,102],{"class":58},[44,524,303],{"class":50},[44,526,318],{"class":58},[44,528,529],{"class":46,"line":321},[44,530,324],{"class":54},[11,532,533],{},"Now a module is a chapter, not a program. It needs no shebang, no safety line, no environment plumbing. The wifi choice reads exactly as it does in the monolith today, because it still runs in the shell where detection happened:",[35,535,536],{"className":37,"code":150,"language":39,"meta":40,"style":40},[18,537,538,558,572,576,588],{"__ignoreMap":40},[44,539,540,542,544,546,548,550,552,554,556],{"class":46,"line":47},[44,541,157],{"class":54},[44,543,160],{"class":50},[44,545,108],{"class":58},[44,547,165],{"class":50},[44,549,108],{"class":58},[44,551,170],{"class":54},[44,553,173],{"class":78},[44,555,176],{"class":50},[44,557,179],{"class":54},[44,559,560,562,564,566,568,570],{"class":46,"line":85},[44,561,184],{"class":62},[44,563,187],{"class":58},[44,565,190],{"class":58},[44,567,193],{"class":78},[44,569,196],{"class":58},[44,571,199],{"class":58},[44,573,574],{"class":46,"line":96},[44,575,204],{"class":54},[44,577,578,580,582,584,586],{"class":46,"line":114},[44,579,184],{"class":62},[44,581,187],{"class":58},[44,583,190],{"class":58},[44,585,193],{"class":78},[44,587,217],{"class":58},[44,589,590],{"class":46,"line":138},[44,591,222],{"class":54},[11,593,594],{},"Everything the sections share arrives free. One detection pass, one log capture, one error policy over the entire run. The orchestrator sets the rules once and every chapter inherits them.",[11,596,597,598,601],{},"The cost is the mirror of option one. These modules cannot run alone, and under ",[18,599,600],{},"set -u"," an attempt fails immediately on the first missing variable. Worse, the coupling is invisible. Any module may read a variable another module happened to leave behind, and nothing in the file tells you it does. The namespace is one big room.",[27,603,605],{"id":604},"the-conclusion-from-engineering-and-from-resources","The conclusion, from engineering and from resources",[11,607,608],{},"The engineering argument alone does not settle it. Execute gives you isolation and pays in contract maintenance. Source gives you shared state and pays in hidden coupling. Both are honest trades. What settled it for us was looking at who runs these scripts, and when.",[11,610,611],{},"A provision run is one transaction. Nobody wants half a dojo machine, and the run happens once, on a bench, over dojo wifi, taking a quarter of an hour. The base install is therefore one product, and its modules have no independent life. Sourcing fits that shape. Detection stays in one place, the log stays in one piece, and when a volunteer reports a failed setup we read a single file to see the whole story.",[11,613,614],{},"Optional tools are the opposite shape. They run weeks after provisioning, on a machine that is already alive, started by a person who should not need to know the orchestrator exists. The first candidate was a coding agent for the operations laptops, a tool the training floor deliberately does without, and that boundary should be visible in the repository layout, not buried in a flag. Standalone executable scripts fit that shape. Each one checks what it needs by itself, because it cannot assume anyone ran detection first.",[11,616,617],{},"So the layout became a hybrid, each mechanism used where its trade is the right one:",[35,619,624],{"className":620,"code":622,"language":623},[621],"language-text","scripts\u002F\n  ekohacks-dojo-setup.sh     orchestrator, sources the base modules in order\n  setup.d\u002F\n    00-preflight.sh          root check, network check, hardware detection\n    01-packages.sh\n    ...\n    09-shell.sh\n  optional\u002F\n    install-claude-code.sh   standalone, run by hand after provisioning\n","text",[18,625,622],{"__ignoreMap":40},[11,627,628],{},"The resource argument matters as much as the engineering one. Two people maintain this fleet in spare hours, so the base install optimises for one readable log over per module purity, and the optional directory optimises for a script a colleague can run without reading anything else first. And the small embarrassment that started all this is gone quietly. The orchestrator derives the step count from the number of files it finds, so the eleventh module will not ask us to edit seventeen lines of banners.",[11,630,631],{},"The split did not make the setup smaller. It made each decision live where someone will actually look for it, and that is the property worth designing for.",[633,634,635],"style",{},"html pre.shiki code .s95oV, html code.shiki .s95oV{--shiki-default:#E1E4E8}html pre.shiki code .snl16, html code.shiki .snl16{--shiki-default:#F97583}html pre.shiki code .sU2Wk, html code.shiki .sU2Wk{--shiki-default:#9ECBFF}html pre.shiki code .svObZ, html code.shiki .svObZ{--shiki-default:#B392F0}html pre.shiki code .sDLfK, html code.shiki .sDLfK{--shiki-default:#79B8FF}html pre.shiki code .sns5M, html code.shiki .sns5M{--shiki-default:#DBEDFF}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":40,"searchDepth":85,"depth":85,"links":637},[638,639,640,641],{"id":29,"depth":85,"text":30},{"id":239,"depth":85,"text":240},{"id":448,"depth":85,"text":449},{"id":604,"depth":85,"text":605},"Shipping and Operations","2026-08-01T09:00:00.000Z","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.",false,"md",null,{},"\u002Fblog\u002Fsource-or-execute","The Dojo",{"title":5,"description":644},"blog\u002Fsource-or-execute",[654,655,656,657],"shell","provisioning","composition","operations","XT-F-xUduoxxU1WGRxiXRDECIsoTWfTFO1x8zM_MAMA",[660,671,681,688,700,706,715,722,729,738,745,754,761,768,780,789,796,803,812,820,828,838,845,847,854,860,866,875,883,893,901,908,918,926,932,942,951,959,967,975,983,990,998,1006,1013,1019,1026,1035,1043,1050,1057,1066,1072,1080,1086,1094,1100,1109,1116,1123,1131,1137,1143,1149],{"path":661,"title":662,"description":663,"date":664,"author":6,"image":665,"readingMinutes":321,"category":666,"project":650,"tags":667,"draft":645,"series":647,"seriesOrder":647},"\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",[668,669,670],"git","continuous-integration","craft",{"path":672,"title":673,"description":674,"date":675,"author":6,"image":647,"readingMinutes":400,"category":642,"project":676,"tags":677,"draft":645,"series":680,"seriesOrder":96},"\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",[678,657,679],"seo","nuxt","From Invisible to Findable",{"path":682,"title":683,"description":684,"date":685,"author":6,"image":647,"readingMinutes":321,"category":642,"project":676,"tags":686,"draft":645,"series":680,"seriesOrder":420},"\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",[687,657,679],"privacy",{"path":689,"title":690,"description":691,"date":692,"author":6,"image":693,"readingMinutes":400,"category":694,"project":695,"tags":696,"draft":645,"series":647,"seriesOrder":647},"\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","EkoLite",[697,698,699],"nullables","testing","websocket",{"path":701,"title":702,"description":703,"date":704,"author":6,"image":705,"readingMinutes":114,"category":666,"project":647,"tags":647,"draft":645,"series":647,"seriesOrder":647},"\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":707,"title":708,"description":709,"date":710,"author":6,"image":711,"readingMinutes":114,"category":642,"project":650,"tags":712,"draft":645,"series":647,"seriesOrder":647},"\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",[657,713,714],"deployment","idempotency",{"path":716,"title":717,"description":718,"date":719,"author":720,"image":721,"readingMinutes":321,"category":642,"project":647,"tags":647,"draft":645,"series":647,"seriesOrder":647},"\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":723,"title":724,"description":725,"date":726,"author":6,"image":647,"readingMinutes":400,"category":642,"project":676,"tags":727,"draft":645,"series":680,"seriesOrder":728},"\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",[678,657,670],0,{"path":730,"title":731,"description":732,"date":733,"author":6,"image":734,"readingMinutes":114,"category":666,"project":650,"tags":735,"draft":645,"series":647,"seriesOrder":647},"\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",[670,736,737],"fastify","security",{"path":739,"title":740,"description":741,"date":742,"author":6,"image":743,"readingMinutes":138,"category":642,"project":650,"tags":744,"draft":645,"series":647,"seriesOrder":647},"\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",[668,669,657],{"path":746,"title":747,"description":748,"date":749,"author":6,"image":750,"readingMinutes":114,"category":666,"project":650,"tags":751,"draft":645,"series":647,"seriesOrder":647},"\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",[670,752,753],"documentation","ai-agents",{"path":755,"title":756,"description":757,"date":758,"author":6,"image":759,"readingMinutes":321,"category":642,"project":650,"tags":760,"draft":645,"series":647,"seriesOrder":647},"\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",[669,657,698],{"path":762,"title":763,"description":764,"date":765,"author":6,"image":647,"readingMinutes":400,"category":642,"project":676,"tags":766,"draft":645,"series":680,"seriesOrder":85},"\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",[678,657,679,767],"netlify",{"path":769,"title":770,"description":771,"date":772,"author":6,"image":773,"readingMinutes":114,"category":774,"project":775,"tags":776,"draft":645,"series":647,"seriesOrder":647},"\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",[656,777,778,779],"cli-design","narration","encoding-the-release",{"path":781,"title":782,"description":783,"date":784,"author":6,"image":785,"readingMinutes":400,"category":774,"project":695,"tags":786,"draft":645,"series":647,"seriesOrder":647},"\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",[787,697,788],"design","error handling",{"path":790,"title":791,"description":792,"date":793,"author":6,"image":794,"readingMinutes":321,"category":642,"project":650,"tags":795,"draft":645,"series":647,"seriesOrder":647},"\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",[669,713,657],{"path":797,"title":798,"description":799,"date":800,"author":6,"image":801,"readingMinutes":321,"category":666,"project":650,"tags":802,"draft":645,"series":647,"seriesOrder":647},"\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",[668,669,670],{"path":804,"title":805,"description":806,"date":807,"author":6,"image":808,"readingMinutes":96,"category":774,"project":650,"tags":809,"draft":645,"series":647,"seriesOrder":647},"\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",[787,810,811],"data","onboarding",{"path":813,"title":814,"description":815,"date":816,"author":6,"image":647,"readingMinutes":321,"category":694,"project":775,"tags":817,"draft":645,"series":647,"seriesOrder":647},"\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",[818,697,777,819],"user-testing","linear",{"path":821,"title":822,"description":823,"date":824,"author":6,"image":825,"readingMinutes":138,"category":694,"project":650,"tags":826,"draft":645,"series":647,"seriesOrder":647},"\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",[698,697,827],"mocks",{"path":829,"title":830,"description":831,"date":832,"author":6,"image":833,"readingMinutes":114,"category":642,"project":775,"tags":834,"draft":645,"series":647,"seriesOrder":647},"\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",[835,836,837,779],"automation","releasing","process",{"path":839,"title":840,"description":841,"date":807,"author":6,"image":842,"readingMinutes":96,"category":642,"project":650,"tags":843,"draft":645,"series":647,"seriesOrder":647},"\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",[657,714,844],"webhooks",{"path":649,"title":5,"description":644,"date":643,"author":6,"image":647,"readingMinutes":321,"category":642,"project":650,"tags":846,"draft":645,"series":647,"seriesOrder":647},[654,655,656,657],{"path":848,"title":849,"description":850,"date":647,"author":851,"image":852,"readingMinutes":47,"category":774,"project":853,"tags":647,"draft":645,"series":647,"seriesOrder":647},"\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":855,"title":856,"description":857,"date":858,"author":6,"image":647,"readingMinutes":400,"category":694,"project":676,"tags":859,"draft":645,"series":680,"seriesOrder":138},"\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",[678,698,679],{"path":861,"title":862,"description":863,"date":864,"author":6,"image":865,"readingMinutes":85,"category":694,"project":647,"tags":647,"draft":645,"series":647,"seriesOrder":647},"\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":867,"title":868,"description":869,"date":870,"author":6,"image":871,"readingMinutes":138,"category":694,"project":775,"tags":872,"draft":645,"series":647,"seriesOrder":647},"\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",[697,873,874,779],"testing-without-mocks","james-shore",{"path":876,"title":877,"description":878,"date":879,"author":6,"image":647,"readingMinutes":321,"category":694,"project":650,"tags":880,"draft":645,"series":882,"seriesOrder":47},"\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",[698,697,827,881],"coverage","What Mocks Cost",{"path":884,"title":885,"description":886,"date":887,"author":6,"image":888,"readingMinutes":138,"category":774,"project":695,"tags":889,"draft":645,"series":647,"seriesOrder":647},"\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",[890,891,698,892],"protocol","pubsub","tdd",{"path":894,"title":895,"description":896,"date":897,"author":6,"image":898,"readingMinutes":321,"category":694,"project":695,"tags":899,"draft":645,"series":647,"seriesOrder":647},"\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",[697,698,900],"refactoring",{"path":902,"title":903,"description":904,"date":905,"author":6,"image":906,"readingMinutes":138,"category":666,"project":650,"tags":907,"draft":645,"series":647,"seriesOrder":647},"\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",[668,669,670],{"path":909,"title":910,"description":911,"date":912,"author":6,"image":913,"readingMinutes":415,"category":642,"project":650,"tags":914,"draft":645,"series":647,"seriesOrder":647},"\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",[657,915,916,917],"debugging","european-tech","community",{"path":919,"title":920,"description":921,"date":922,"author":6,"image":923,"readingMinutes":321,"category":774,"project":695,"tags":924,"draft":645,"series":647,"seriesOrder":647},"\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",[787,892,925],"continuous integration",{"path":927,"title":928,"description":929,"date":930,"author":6,"image":931,"readingMinutes":114,"category":666,"project":647,"tags":647,"draft":645,"series":647,"seriesOrder":647},"\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":933,"title":934,"description":935,"date":936,"author":6,"image":937,"readingMinutes":400,"category":666,"project":650,"tags":938,"draft":645,"series":647,"seriesOrder":647},"\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",[939,940,941,819],"graphql","stories","xp",{"path":943,"title":944,"description":945,"date":946,"author":6,"image":947,"readingMinutes":138,"category":694,"project":775,"tags":948,"draft":645,"series":647,"seriesOrder":647},"\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",[892,949,950,779],"red-first","code-review",{"path":952,"title":953,"description":954,"date":955,"author":6,"image":956,"readingMinutes":138,"category":642,"project":775,"tags":957,"draft":645,"series":647,"seriesOrder":647},"\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",[836,958,668,779],"preflight",{"path":960,"title":961,"description":962,"date":963,"author":6,"image":964,"readingMinutes":138,"category":642,"project":695,"tags":965,"draft":645,"series":647,"seriesOrder":647},"\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",[966,697,698],"shutdown",{"path":968,"title":969,"description":970,"date":971,"author":6,"image":972,"readingMinutes":321,"category":642,"project":695,"tags":973,"draft":645,"series":647,"seriesOrder":647},"\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",[974,698,670],"packaging",{"path":976,"title":977,"description":978,"date":979,"author":6,"image":980,"readingMinutes":114,"category":774,"project":775,"tags":981,"draft":645,"series":647,"seriesOrder":647},"\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",[835,982,787,779],"human-in-the-loop",{"path":984,"title":985,"description":986,"date":987,"author":6,"image":988,"readingMinutes":321,"category":642,"project":650,"tags":989,"draft":645,"series":647,"seriesOrder":647},"\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",[669,657,670],{"path":991,"title":992,"description":993,"date":994,"author":6,"image":995,"readingMinutes":321,"category":642,"project":695,"tags":996,"draft":645,"series":647,"seriesOrder":647},"\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",[966,657,997],"signals",{"path":999,"title":1000,"description":1001,"date":1002,"author":6,"image":1003,"readingMinutes":415,"category":666,"project":695,"tags":1004,"draft":645,"series":647,"seriesOrder":647},"\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",[950,900,1005,698],"teaching",{"path":1007,"title":1008,"description":1009,"date":1010,"author":6,"image":1011,"readingMinutes":321,"category":774,"project":695,"tags":1012,"draft":645,"series":647,"seriesOrder":647},"\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",[787,891,697],{"path":1014,"title":1015,"description":1016,"date":1017,"author":6,"image":647,"readingMinutes":400,"category":642,"project":676,"tags":1018,"draft":645,"series":680,"seriesOrder":47},"\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",[678,657,679],{"path":1020,"title":1021,"description":1022,"date":1023,"author":6,"image":1024,"readingMinutes":415,"category":642,"project":650,"tags":1025,"draft":645,"series":647,"seriesOrder":647},"\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",[657,915,916,917],{"path":1027,"title":1028,"description":1029,"date":1030,"author":6,"image":1031,"readingMinutes":114,"category":666,"project":775,"tags":1032,"draft":261,"series":647,"seriesOrder":647},"\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",[836,1033,1034,779],"dogfooding","acceptance-testing",{"path":1036,"title":1037,"description":1038,"date":1039,"author":6,"image":1040,"readingMinutes":400,"category":694,"project":695,"tags":1041,"draft":645,"series":647,"seriesOrder":647},"\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",[698,697,1042],"scriptrunner",{"path":1044,"title":1045,"description":1046,"date":1047,"author":6,"image":647,"readingMinutes":415,"category":642,"project":676,"tags":1048,"draft":645,"series":680,"seriesOrder":321},"\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",[678,657,1049],"performance",{"path":1051,"title":1052,"description":1053,"date":1054,"author":6,"image":1055,"readingMinutes":400,"category":694,"project":695,"tags":1056,"draft":645,"series":647,"seriesOrder":647},"\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",[698,697,699],{"path":1058,"title":1059,"description":1060,"date":1061,"author":851,"image":1062,"readingMinutes":321,"category":666,"project":1063,"tags":1064,"draft":645,"series":647,"seriesOrder":647},"\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",[670,1065,810,1005],"content",{"path":1067,"title":1068,"description":1069,"date":887,"author":6,"image":1070,"readingMinutes":138,"category":694,"project":695,"tags":1071,"draft":645,"series":647,"seriesOrder":647},"\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",[697,698,670,1005],{"path":1073,"title":1074,"description":1075,"date":1061,"author":851,"image":1076,"readingMinutes":114,"category":666,"project":1063,"tags":1077,"draft":645,"series":647,"seriesOrder":647},"\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",[1078,668,1005,1079],"workflow","accessibility",{"path":1081,"title":1082,"description":1083,"date":1084,"author":6,"image":647,"readingMinutes":321,"category":694,"project":650,"tags":1085,"draft":645,"series":882,"seriesOrder":85},"\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",[698,697,827,881],{"path":1087,"title":1088,"description":1089,"date":1090,"author":6,"image":1091,"readingMinutes":400,"category":642,"project":650,"tags":1092,"draft":645,"series":647,"seriesOrder":647},"\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",[657,714,1093],"observability",{"path":1095,"title":1096,"description":1097,"date":1098,"author":6,"image":647,"readingMinutes":400,"category":694,"project":650,"tags":1099,"draft":645,"series":647,"seriesOrder":647},"\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",[1079,698,787,670],{"path":1101,"title":1102,"description":1103,"date":1104,"author":6,"image":1105,"readingMinutes":96,"category":774,"project":650,"tags":1106,"draft":645,"series":647,"seriesOrder":647},"\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",[787,1107,1108],"validation","typescript",{"path":1110,"title":1111,"description":1112,"date":1113,"author":6,"image":1114,"readingMinutes":321,"category":642,"project":650,"tags":1115,"draft":645,"series":647,"seriesOrder":647},"\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",[669,657,713],{"path":1117,"title":1118,"description":1119,"date":1120,"author":6,"image":647,"readingMinutes":400,"category":642,"project":676,"tags":1121,"draft":645,"series":680,"seriesOrder":400},"\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",[687,657,1122],"analytics",{"path":1124,"title":1125,"description":1126,"date":1127,"author":6,"image":1128,"readingMinutes":321,"category":642,"project":775,"tags":1129,"draft":645,"series":647,"seriesOrder":647},"\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",[836,1130,697,779],"failure-modes",{"path":1132,"title":1133,"description":1134,"date":1135,"author":6,"image":647,"readingMinutes":321,"category":642,"project":676,"tags":1136,"draft":645,"series":680,"seriesOrder":114},"\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",[678,657,679],{"path":1138,"title":1139,"description":1140,"date":1141,"author":6,"image":647,"readingMinutes":321,"category":694,"project":650,"tags":1142,"draft":645,"series":882,"seriesOrder":96},"\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",[698,697,827,881],{"path":1144,"title":1145,"description":1146,"date":1147,"author":6,"image":647,"readingMinutes":400,"category":642,"project":676,"tags":1148,"draft":645,"series":680,"seriesOrder":415},"\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",[687,657,1122],{"path":1150,"title":1151,"description":1152,"date":1153,"author":6,"image":1154,"readingMinutes":114,"category":774,"project":647,"tags":647,"draft":645,"series":647,"seriesOrder":647},"\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",1787861096605]