[{"data":1,"prerenderedAt":701},["ShallowReactive",2],{"post-\u002Fblog\u002Ftwo-hundred-and-fourteen-undecided":3,"blog-all":198},{"id":4,"title":5,"author":6,"body":7,"category":179,"date":180,"description":181,"draft":182,"extension":183,"image":184,"meta":185,"navigation":186,"path":187,"project":188,"readingMinutes":189,"seo":190,"series":184,"seriesOrder":184,"stem":191,"tags":192,"__hash__":197},"blog\u002Fblog\u002Ftwo-hundred-and-fourteen-undecided.md","Two Hundred and Fourteen Undecided","EkoHacks Team",{"type":8,"value":9,"toc":170},"minimark",[10,14,17,22,25,32,51,57,61,64,67,70,73,89,96,114,117,121,124,127,137,140,144,147,150,157,161,164,167],[11,12,13],"p",{},"On the twenty first of August we pointed an accessibility scanner at every page of the dojo, in both of its themes, and it came back with three faults. By the afternoon all three were fixed, each one pinned by a test that fails if it comes back. On the twenty second we deployed and ran the scanner again on the live site. It found nothing. Thirty two page and theme pairs, zero violations.",[11,15,16],{},"That second run is the one this post is about, because zero was the wrong number to stop at.",[18,19,21],"h2",{"id":20},"what-the-scanner-found","What the scanner found",[11,23,24],{},"The tool is axe-core, the engine behind most browser accessibility audits. We drove it from a headless Chromium with Playwright, the same browser our end to end tests already use, and asked it for everything under WCAG 2.1 level AA plus its own best practice rules. WCAG is the web accessibility standard; AA is the level most laws and procurement rules ask for. Three things came back, on every page.",[11,26,27,31],{},[28,29,30],"strong",{},"Contrast."," Every button on the dark theme was white lettering on our green, and that pair measures 2.7:1. The standard wants 4.5:1 for text. On the light theme the green and the amber failed as text on the page, between 2.3 and 3.9:1 depending on the surface. And our muted text, the handles, the dates, the units, was set at 50% opacity, which on a light card comes out at 3.6:1.",[11,33,34,37,38,42,43,46,47,50],{},[28,35,36],{},"Landmarks."," A screen reader user moves through a page by landmark and by heading before they read a word. Our navbar was a ",[39,40,41],"code",{},"div",", so the logo, the menu and the Pricing button sat inside no landmark at all. The footer held three navigations with no names, which a screen reader announces as \"navigation, navigation, navigation\". And the footer titles were ",[39,44,45],{},"h6"," on pages whose deepest heading is ",[39,48,49],{},"h3",", a jump that reads as missing structure.",[11,52,53,56],{},[28,54,55],{},"One leftover from the component library."," DaisyUI paints an inactive tab at 50% of the text colour. Same 3.6:1, on the profile page, in the light theme.",[18,58,60],{"id":59},"fixing-colour-with-arithmetic","Fixing colour with arithmetic",[11,62,63],{},"The contrast fault is the interesting one, because the obvious fix is to squint. Make the green a bit darker, reload, see if it looks right. We wanted the judgement out of our eyes and into the build.",[11,65,66],{},"Our colours live as oklch tokens in one CSS file, a block per theme. Oklch is a colour space where lightness, chroma and hue are separate numbers, which makes a palette easy to reason about and a contrast ratio easy to compute: convert each token to linear RGB, take the relative luminance, divide. Seventy lines of TypeScript, no dependency. The test reads the CSS file, finds the block for each theme, and checks every pairing the markup can produce: body text on every surface, each colour's lettering on its own fill (which is every button and badge), each colour used as text on the page and on a card, and muted text at its floor.",[11,68,69],{},"One subtlety earned its own function. Text at 60% opacity is composited by the browser in gamma encoded sRGB. Mix the linear values and you get a ratio that is wrong by a visible margin, so the helper encodes, mixes, and decodes, and the number it produces is the one the browser paints.",[11,71,72],{},"The test went in red. Then the tokens moved:",[74,75,76,80,83,86],"ul",{},[77,78,79],"li",{},"On the dark theme every bright fill now carries navy lettering. White on the green was 2.7:1; the navy is 6.8:1. It is the brand pairing anyway.",[77,81,82],{},"On the light theme the green deepened from 55% to 48% lightness, the amber from 70% to 52%, the blue from 60% to 50%, so each reads as text on a card and carries white lettering as a fill.",[77,84,85],{},"The dark theme's red lifted from 60% to 63%, because as text on the page it was 4.3:1, a hair under.",[77,87,88],{},"The bronze step of the leaderboard podium, which had been a translucent orange, went solid.",[11,90,91,92,95],{},"Then the muted text. We settled on 60% as the floor: the test proves base text at 60% clears 4.5:1 on every surface of both themes, and 50% measured 3.6:1 on a light card. A second test walks the source tree and fails on any ",[39,93,94],{},"text-base-content\u002FN"," with N below 60. It listed 116 of them across 24 files. They all moved to the floor, including the grey flame on a streak of zero days, which had been at 30%. The inactive tab got a one line override beside the theme tokens, and the test checks the override carries the same 60% as the floor, so the two numbers cannot drift apart.",[11,97,98,99,102,103,106,107,110,111,113],{},"The landmarks were plain markup: a ",[39,100,101],{},"header"," around the navbar, an ",[39,104,105],{},"aria-label"," on every ",[39,108,109],{},"nav"," (Primary, Product, Reach us, Legal), and ",[39,112,18],{}," on the footer titles. The test for it counts the navigations, checks every one has a name, and checks the names are distinct.",[11,115,116],{},"Three red commits, three green commits, two seconds added to a suite that runs on every push.",[18,118,120],{"id":119},"the-clean-run","The clean run",[11,122,123],{},"Deployed, scanned again. Zero violations, both themes, every page. Before believing it we checked the run was real: the theme attribute was set on the document, each page reported around forty rules passed, and the home page's primary button computed to navy on green. It was real.",[11,125,126],{},"It also reported 214 nodes as \"incomplete\" under the colour contrast rule. Incomplete is the scanner's word for a node it looked at and declined to judge.",[11,128,129,130,106,133,136],{},"Grouping them by reason took one line: 202 \"background colour could not be determined due to a background image\", 8 due to a gradient, 4 because another element overlapped. The 202 were every button on the site and the navbar brand. DaisyUI sets ",[39,131,132],{},"background-image: none, none",[39,134,135],{},".btn",", two empty layers, and a faint noise texture on filled buttons. The scanner sees a background image declared, and stops. The gradients were our hero banner and the little avatar with a member's initials on it.",[11,138,139],{},"So the scanner's verdict on every button we had just recoloured was: no opinion. A report of zero violations was sitting on top of two hundred undecided buttons, and a reader who stopped at the headline would have called the site accessible on the scanner's authority when the scanner had abstained on the part that mattered.",[18,141,143],{"id":142},"measuring-what-it-would-not","Measuring what it would not",[11,145,146],{},"The fix was to measure them ourselves, in the browser, where the real numbers are. For each undecided node: take the computed text colour, walk up the ancestors compositing backgrounds until one is opaque, and where a gradient is in the stack, test against every stop and keep the worst. Chromium returns computed colours as oklch strings, which our contrast code handles, but there is a shorter way inside a page: paint the colour onto a one pixel canvas and read the pixel back. Whatever the format, the canvas hands you sRGB.",[11,148,149],{},"212 of the 214 cleared 4.5:1. The lowest was an outline button on the light theme at 4.92:1; every filled button on the light theme sits at 5.34:1 and on the dark theme at 6.85:1.",[11,151,152,153,156],{},"The remaining two were one element, the avatar initials, where the script reported 1:1. That is the ratio of a colour against itself, which meant our parser had failed rather than the avatar. The gradient's second stop is a ",[39,154,155],{},"color-mix()"," with nested brackets, and a regular expression had bitten off half of it. We resolved both stops through the browser's own CSS engine instead: 6.85 and 7.77:1 on the dark theme, 5.34 and 5.40:1 on the light. Passes.",[18,158,160],{"id":159},"what-we-would-tell-a-team","What we would tell a team",[11,162,163],{},"The scanner is a witness. It told us where to look on the first day, and its findings were exact. The test is the gate. The scanner will never judge a DaisyUI button, so the thing that guards every button's contrast on every future commit is seventy lines of arithmetic over the token file, and it runs in the time it takes to read this sentence.",[11,165,166],{},"Read the whole report. A tool that says zero violations and 214 incomplete has told you two things, and the second one is the larger number. Undecided is a verdict too, and it is yours to settle.",[11,168,169],{},"And keep the fix where the fault was. The colours are tokens in one file, so the proof is a test over that file. The markup uses a floor, so the proof walks the markup. The component library paints one thing below the floor, so the override lives beside the tokens and the test reads both. Every rule the site now obeys has a failing test that names it, which is the only kind of knowing that survives the next pull request.",{"title":171,"searchDepth":172,"depth":172,"links":173},"",2,[174,175,176,177,178],{"id":20,"depth":172,"text":21},{"id":59,"depth":172,"text":60},{"id":119,"depth":172,"text":120},{"id":142,"depth":172,"text":143},{"id":159,"depth":172,"text":160},"Testing and TDD","2026-08-22T12:00:00.000Z","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.",false,"md",null,{},true,"\u002Fblog\u002Ftwo-hundred-and-fourteen-undecided","The Dojo",7,{"title":5,"description":181},"blog\u002Ftwo-hundred-and-fourteen-undecided",[193,194,195,196],"accessibility","testing","design","craft","9hzhcIJ2meBrU6aN1POb8Op9nMDjP9cZKUmtu_ER4Dc",[199,210,223,231,241,248,257,264,271,280,288,297,304,311,324,332,339,346,355,363,371,381,388,396,404,410,416,425,433,443,451,458,469,477,483,493,502,510,518,526,534,541,549,557,564,570,577,586,594,601,608,617,623,630,636,644,646,655,662,669,677,683,689,695],{"path":200,"title":201,"description":202,"date":203,"author":6,"image":204,"readingMinutes":205,"category":206,"project":188,"tags":207,"draft":182,"series":184,"seriesOrder":184},"\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",6,"Craft and Practice",[208,209,196],"git","continuous-integration",{"path":211,"title":212,"description":213,"date":214,"author":6,"image":184,"readingMinutes":189,"category":215,"project":216,"tags":217,"draft":182,"series":221,"seriesOrder":222},"\u002Fblog\u002Fa-map-drawn-by-the-build","A Map Drawn by the Build","Thirty six of our pages had never been visited by Google because nothing said they existed. The sitemap is drawn from the build, and it found a draft.","2026-08-22T20:30:00.000Z","Shipping and Operations","ekohacks.com",[218,219,220],"seo","operations","nuxt","From Invisible to Findable",3,{"path":224,"title":225,"description":226,"date":227,"author":6,"image":184,"readingMinutes":205,"category":215,"project":216,"tags":228,"draft":182,"series":221,"seriesOrder":230},"\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",[229,219,220],"privacy",9,{"path":232,"title":233,"description":234,"date":235,"author":6,"image":236,"readingMinutes":189,"category":179,"project":237,"tags":238,"draft":182,"series":184,"seriesOrder":184},"\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","EkoLite",[239,194,240],"nullables","websocket",{"path":242,"title":243,"description":244,"date":245,"author":6,"image":246,"readingMinutes":247,"category":206,"project":184,"tags":184,"draft":182,"series":184,"seriesOrder":184},"\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",4,{"path":249,"title":250,"description":251,"date":252,"author":6,"image":253,"readingMinutes":247,"category":215,"project":188,"tags":254,"draft":182,"series":184,"seriesOrder":184},"\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",[219,255,256],"deployment","idempotency",{"path":258,"title":259,"description":260,"date":261,"author":262,"image":263,"readingMinutes":205,"category":215,"project":184,"tags":184,"draft":182,"series":184,"seriesOrder":184},"\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":265,"title":266,"description":267,"date":268,"author":6,"image":184,"readingMinutes":189,"category":215,"project":216,"tags":269,"draft":182,"series":221,"seriesOrder":270},"\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",[218,219,196],0,{"path":272,"title":273,"description":274,"date":275,"author":6,"image":276,"readingMinutes":247,"category":206,"project":188,"tags":277,"draft":182,"series":184,"seriesOrder":184},"\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",[196,278,279],"fastify","security",{"path":281,"title":282,"description":283,"date":284,"author":6,"image":285,"readingMinutes":286,"category":215,"project":188,"tags":287,"draft":182,"series":184,"seriesOrder":184},"\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",5,[208,209,219],{"path":289,"title":290,"description":291,"date":292,"author":6,"image":293,"readingMinutes":247,"category":206,"project":188,"tags":294,"draft":182,"series":184,"seriesOrder":184},"\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",[196,295,296],"documentation","ai-agents",{"path":298,"title":299,"description":300,"date":301,"author":6,"image":302,"readingMinutes":205,"category":215,"project":188,"tags":303,"draft":182,"series":184,"seriesOrder":184},"\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",[209,219,194],{"path":305,"title":306,"description":307,"date":308,"author":6,"image":184,"readingMinutes":189,"category":215,"project":216,"tags":309,"draft":182,"series":221,"seriesOrder":172},"\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",[218,219,220,310],"netlify",{"path":312,"title":313,"description":314,"date":315,"author":6,"image":316,"readingMinutes":247,"category":317,"project":318,"tags":319,"draft":182,"series":184,"seriesOrder":184},"\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",[320,321,322,323],"composition","cli-design","narration","encoding-the-release",{"path":325,"title":326,"description":327,"date":328,"author":6,"image":329,"readingMinutes":189,"category":317,"project":237,"tags":330,"draft":182,"series":184,"seriesOrder":184},"\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",[195,239,331],"error handling",{"path":333,"title":334,"description":335,"date":336,"author":6,"image":337,"readingMinutes":205,"category":215,"project":188,"tags":338,"draft":182,"series":184,"seriesOrder":184},"\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",[209,255,219],{"path":340,"title":341,"description":342,"date":343,"author":6,"image":344,"readingMinutes":205,"category":206,"project":188,"tags":345,"draft":182,"series":184,"seriesOrder":184},"\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",[208,209,196],{"path":347,"title":348,"description":349,"date":350,"author":6,"image":351,"readingMinutes":222,"category":317,"project":188,"tags":352,"draft":182,"series":184,"seriesOrder":184},"\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",[195,353,354],"data","onboarding",{"path":356,"title":357,"description":358,"date":359,"author":6,"image":184,"readingMinutes":205,"category":179,"project":318,"tags":360,"draft":182,"series":184,"seriesOrder":184},"\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",[361,239,321,362],"user-testing","linear",{"path":364,"title":365,"description":366,"date":367,"author":6,"image":368,"readingMinutes":286,"category":179,"project":188,"tags":369,"draft":182,"series":184,"seriesOrder":184},"\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",[194,239,370],"mocks",{"path":372,"title":373,"description":374,"date":375,"author":6,"image":376,"readingMinutes":247,"category":215,"project":318,"tags":377,"draft":182,"series":184,"seriesOrder":184},"\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",[378,379,380,323],"automation","releasing","process",{"path":382,"title":383,"description":384,"date":350,"author":6,"image":385,"readingMinutes":222,"category":215,"project":188,"tags":386,"draft":182,"series":184,"seriesOrder":184},"\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",[219,256,387],"webhooks",{"path":389,"title":390,"description":391,"date":392,"author":6,"image":184,"readingMinutes":205,"category":215,"project":188,"tags":393,"draft":182,"series":184,"seriesOrder":184},"\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",[394,395,320,219],"shell","provisioning",{"path":397,"title":398,"description":399,"date":184,"author":400,"image":401,"readingMinutes":402,"category":317,"project":403,"tags":184,"draft":182,"series":184,"seriesOrder":184},"\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",1,"Propi",{"path":405,"title":406,"description":407,"date":408,"author":6,"image":184,"readingMinutes":189,"category":179,"project":216,"tags":409,"draft":182,"series":221,"seriesOrder":286},"\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",[218,194,220],{"path":411,"title":412,"description":413,"date":414,"author":6,"image":415,"readingMinutes":172,"category":179,"project":184,"tags":184,"draft":182,"series":184,"seriesOrder":184},"\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":417,"title":418,"description":419,"date":420,"author":6,"image":421,"readingMinutes":286,"category":179,"project":318,"tags":422,"draft":182,"series":184,"seriesOrder":184},"\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",[239,423,424,323],"testing-without-mocks","james-shore",{"path":426,"title":427,"description":428,"date":429,"author":6,"image":184,"readingMinutes":205,"category":179,"project":188,"tags":430,"draft":182,"series":432,"seriesOrder":402},"\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",[194,239,370,431],"coverage","What Mocks Cost",{"path":434,"title":435,"description":436,"date":437,"author":6,"image":438,"readingMinutes":286,"category":317,"project":237,"tags":439,"draft":182,"series":184,"seriesOrder":184},"\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",[440,441,194,442],"protocol","pubsub","tdd",{"path":444,"title":445,"description":446,"date":447,"author":6,"image":448,"readingMinutes":205,"category":179,"project":237,"tags":449,"draft":182,"series":184,"seriesOrder":184},"\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",[239,194,450],"refactoring",{"path":452,"title":453,"description":454,"date":455,"author":6,"image":456,"readingMinutes":286,"category":206,"project":188,"tags":457,"draft":182,"series":184,"seriesOrder":184},"\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",[208,209,196],{"path":459,"title":460,"description":461,"date":462,"author":6,"image":463,"readingMinutes":464,"category":215,"project":188,"tags":465,"draft":182,"series":184,"seriesOrder":184},"\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",8,[219,466,467,468],"debugging","european-tech","community",{"path":470,"title":471,"description":472,"date":473,"author":6,"image":474,"readingMinutes":205,"category":317,"project":237,"tags":475,"draft":182,"series":184,"seriesOrder":184},"\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",[195,442,476],"continuous integration",{"path":478,"title":479,"description":480,"date":481,"author":6,"image":482,"readingMinutes":247,"category":206,"project":184,"tags":184,"draft":182,"series":184,"seriesOrder":184},"\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":484,"title":485,"description":486,"date":487,"author":6,"image":488,"readingMinutes":189,"category":206,"project":188,"tags":489,"draft":182,"series":184,"seriesOrder":184},"\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",[490,491,492,362],"graphql","stories","xp",{"path":494,"title":495,"description":496,"date":497,"author":6,"image":498,"readingMinutes":286,"category":179,"project":318,"tags":499,"draft":182,"series":184,"seriesOrder":184},"\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",[442,500,501,323],"red-first","code-review",{"path":503,"title":504,"description":505,"date":506,"author":6,"image":507,"readingMinutes":286,"category":215,"project":318,"tags":508,"draft":182,"series":184,"seriesOrder":184},"\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",[379,509,208,323],"preflight",{"path":511,"title":512,"description":513,"date":514,"author":6,"image":515,"readingMinutes":286,"category":215,"project":237,"tags":516,"draft":182,"series":184,"seriesOrder":184},"\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",[517,239,194],"shutdown",{"path":519,"title":520,"description":521,"date":522,"author":6,"image":523,"readingMinutes":205,"category":215,"project":237,"tags":524,"draft":182,"series":184,"seriesOrder":184},"\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",[525,194,196],"packaging",{"path":527,"title":528,"description":529,"date":530,"author":6,"image":531,"readingMinutes":247,"category":317,"project":318,"tags":532,"draft":182,"series":184,"seriesOrder":184},"\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",[378,533,195,323],"human-in-the-loop",{"path":535,"title":536,"description":537,"date":538,"author":6,"image":539,"readingMinutes":205,"category":215,"project":188,"tags":540,"draft":182,"series":184,"seriesOrder":184},"\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",[209,219,196],{"path":542,"title":543,"description":544,"date":545,"author":6,"image":546,"readingMinutes":205,"category":215,"project":237,"tags":547,"draft":182,"series":184,"seriesOrder":184},"\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",[517,219,548],"signals",{"path":550,"title":551,"description":552,"date":553,"author":6,"image":554,"readingMinutes":464,"category":206,"project":237,"tags":555,"draft":182,"series":184,"seriesOrder":184},"\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",[501,450,556,194],"teaching",{"path":558,"title":559,"description":560,"date":561,"author":6,"image":562,"readingMinutes":205,"category":317,"project":237,"tags":563,"draft":182,"series":184,"seriesOrder":184},"\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",[195,441,239],{"path":565,"title":566,"description":567,"date":568,"author":6,"image":184,"readingMinutes":189,"category":215,"project":216,"tags":569,"draft":182,"series":221,"seriesOrder":402},"\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",[218,219,220],{"path":571,"title":572,"description":573,"date":574,"author":6,"image":575,"readingMinutes":464,"category":215,"project":188,"tags":576,"draft":182,"series":184,"seriesOrder":184},"\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",[219,466,467,468],{"path":578,"title":579,"description":580,"date":581,"author":6,"image":582,"readingMinutes":247,"category":206,"project":318,"tags":583,"draft":186,"series":184,"seriesOrder":184},"\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",[379,584,585,323],"dogfooding","acceptance-testing",{"path":587,"title":588,"description":589,"date":590,"author":6,"image":591,"readingMinutes":189,"category":179,"project":237,"tags":592,"draft":182,"series":184,"seriesOrder":184},"\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",[194,239,593],"scriptrunner",{"path":595,"title":596,"description":597,"date":598,"author":6,"image":184,"readingMinutes":464,"category":215,"project":216,"tags":599,"draft":182,"series":221,"seriesOrder":205},"\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",[218,219,600],"performance",{"path":602,"title":603,"description":604,"date":605,"author":6,"image":606,"readingMinutes":189,"category":179,"project":237,"tags":607,"draft":182,"series":184,"seriesOrder":184},"\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",[194,239,240],{"path":609,"title":610,"description":611,"date":612,"author":400,"image":613,"readingMinutes":205,"category":206,"project":614,"tags":615,"draft":182,"series":184,"seriesOrder":184},"\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",[196,616,353,556],"content",{"path":618,"title":619,"description":620,"date":437,"author":6,"image":621,"readingMinutes":286,"category":179,"project":237,"tags":622,"draft":182,"series":184,"seriesOrder":184},"\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",[239,194,196,556],{"path":624,"title":625,"description":626,"date":612,"author":400,"image":627,"readingMinutes":247,"category":206,"project":614,"tags":628,"draft":182,"series":184,"seriesOrder":184},"\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",[629,208,556,193],"workflow",{"path":631,"title":632,"description":633,"date":634,"author":6,"image":184,"readingMinutes":205,"category":179,"project":188,"tags":635,"draft":182,"series":432,"seriesOrder":172},"\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",[194,239,370,431],{"path":637,"title":638,"description":639,"date":640,"author":6,"image":641,"readingMinutes":189,"category":215,"project":188,"tags":642,"draft":182,"series":184,"seriesOrder":184},"\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",[219,256,643],"observability",{"path":187,"title":5,"description":181,"date":180,"author":6,"image":184,"readingMinutes":189,"category":179,"project":188,"tags":645,"draft":182,"series":184,"seriesOrder":184},[193,194,195,196],{"path":647,"title":648,"description":649,"date":650,"author":6,"image":651,"readingMinutes":222,"category":317,"project":188,"tags":652,"draft":182,"series":184,"seriesOrder":184},"\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",[195,653,654],"validation","typescript",{"path":656,"title":657,"description":658,"date":659,"author":6,"image":660,"readingMinutes":205,"category":215,"project":188,"tags":661,"draft":182,"series":184,"seriesOrder":184},"\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",[209,219,255],{"path":663,"title":664,"description":665,"date":666,"author":6,"image":184,"readingMinutes":189,"category":215,"project":216,"tags":667,"draft":182,"series":221,"seriesOrder":189},"\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",[229,219,668],"analytics",{"path":670,"title":671,"description":672,"date":673,"author":6,"image":674,"readingMinutes":205,"category":215,"project":318,"tags":675,"draft":182,"series":184,"seriesOrder":184},"\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",[379,676,239,323],"failure-modes",{"path":678,"title":679,"description":680,"date":681,"author":6,"image":184,"readingMinutes":205,"category":215,"project":216,"tags":682,"draft":182,"series":221,"seriesOrder":247},"\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",[218,219,220],{"path":684,"title":685,"description":686,"date":687,"author":6,"image":184,"readingMinutes":205,"category":179,"project":188,"tags":688,"draft":182,"series":432,"seriesOrder":222},"\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",[194,239,370,431],{"path":690,"title":691,"description":692,"date":693,"author":6,"image":184,"readingMinutes":189,"category":215,"project":216,"tags":694,"draft":182,"series":221,"seriesOrder":464},"\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",[229,219,668],{"path":696,"title":697,"description":698,"date":699,"author":6,"image":700,"readingMinutes":247,"category":317,"project":184,"tags":184,"draft":182,"series":184,"seriesOrder":184},"\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",1787861097097]