[{"data":1,"prerenderedAt":1055},["ShallowReactive",2],{"post-\u002Fblog\u002Fa-map-drawn-by-the-build":3,"blog-all":559},{"id":4,"title":5,"author":6,"body":7,"category":541,"date":542,"description":543,"draft":544,"extension":545,"image":546,"meta":547,"navigation":548,"path":549,"project":550,"readingMinutes":230,"seo":551,"series":552,"seriesOrder":119,"stem":553,"tags":554,"__hash__":558},"blog\u002Fblog\u002Fa-map-drawn-by-the-build.md","A Map Drawn by the Build","EkoHacks Team",{"type":8,"value":9,"toc":535},"minimark",[10,14,19,22,25,28,32,35,365,368,455,462,471,475,478,485,488,491,494,502,506,509,515,518,525,528,531],[11,12,13],"p",{},"Day zero said thirty six of our sixty two routes were unknown to Google. Not crawled and rejected, not crawled and kept: never visited. They carried no crawl date. Every landing page except the home page was among them, along with twenty seven posts. The previous post gave each page one address. This one tells the crawler the addresses exist.",[15,16,18],"h2",{"id":17},"why-a-list-and-why-not-by-hand","Why a list, and why not by hand",[11,20,21],{},"A sitemap is a file that says: here are the pages. It is the simplest thing on the site, and it is where sites lie most, because the usual way to make one is to write it, or to install something that writes it from its own idea of what the pages are, and then nobody updates it. A page is added and the map does not know. A page is removed and the map still points at it. Within a week the map and the site disagree, and a crawler has no way to tell which of them is wrong.",[11,23,24],{},"The reframe is the one the first post of the series set up. The sitemap is derived state. It should be computed from the thing it describes, every time that thing is built, by the process that builds it. If the build is the only thing that decides which pages exist, the build is the only thing that can draw an honest map of them.",[11,26,27],{},"We already had the list. The second post in this series showed it: a directory read at build time turns every markdown file into a route, and the prerenderer renders each one. What we needed was to take the prerenderer's own output, the pages it actually wrote, and hand it back as a map.",[15,29,31],{"id":30},"the-change","The change",[11,33,34],{},"The prerenderer fires an event when it has finished, with every route it rendered and the file it wrote for each. The sitemap is drawn from that:",[36,37,42],"pre",{"className":38,"code":39,"language":40,"meta":41,"style":41},"language-ts shiki shiki-themes github-dark","export function sitemapEntries(routes: PrerenderedRoute[], rootDir: string) {\n  const seen = new Set\u003Cstring>();\n  const entries: { loc: string; lastmod?: string }[] = [];\n  for (const r of routes) {\n    if (r.error || r.skip) continue;\n    if (!r.fileName?.endsWith(\".html\")) continue;\n    if (NOINDEX.has(r.route)) continue;\n    const loc = canonicalUrl(r.route);\n    if (seen.has(loc)) continue;\n    seen.add(loc);\n    entries.push({ loc, lastmod: lastmod(r.route, rootDir) });\n  }\n  return entries.sort((a, b) => a.loc.localeCompare(b.loc));\n}\n","ts","",[43,44,45,90,117,157,178,199,228,251,268,285,297,314,320,359],"code",{"__ignoreMap":41},[46,47,50,54,57,61,65,69,72,75,78,81,83,87],"span",{"class":48,"line":49},"line",1,[46,51,53],{"class":52},"snl16","export",[46,55,56],{"class":52}," function",[46,58,60],{"class":59},"svObZ"," sitemapEntries",[46,62,64],{"class":63},"s95oV","(",[46,66,68],{"class":67},"s9osk","routes",[46,70,71],{"class":52},":",[46,73,74],{"class":59}," PrerenderedRoute",[46,76,77],{"class":63},"[], ",[46,79,80],{"class":67},"rootDir",[46,82,71],{"class":52},[46,84,86],{"class":85},"sDLfK"," string",[46,88,89],{"class":63},") {\n",[46,91,93,96,99,102,105,108,111,114],{"class":48,"line":92},2,[46,94,95],{"class":52},"  const",[46,97,98],{"class":85}," seen",[46,100,101],{"class":52}," =",[46,103,104],{"class":52}," new",[46,106,107],{"class":59}," Set",[46,109,110],{"class":63},"\u003C",[46,112,113],{"class":85},"string",[46,115,116],{"class":63},">();\n",[46,118,120,122,125,127,130,133,135,137,140,143,146,148,151,154],{"class":48,"line":119},3,[46,121,95],{"class":52},[46,123,124],{"class":85}," entries",[46,126,71],{"class":52},[46,128,129],{"class":63}," { ",[46,131,132],{"class":67},"loc",[46,134,71],{"class":52},[46,136,86],{"class":85},[46,138,139],{"class":63},"; ",[46,141,142],{"class":67},"lastmod",[46,144,145],{"class":52},"?:",[46,147,86],{"class":85},[46,149,150],{"class":63}," }[] ",[46,152,153],{"class":52},"=",[46,155,156],{"class":63}," [];\n",[46,158,160,163,166,169,172,175],{"class":48,"line":159},4,[46,161,162],{"class":52},"  for",[46,164,165],{"class":63}," (",[46,167,168],{"class":52},"const",[46,170,171],{"class":85}," r",[46,173,174],{"class":52}," of",[46,176,177],{"class":63}," routes) {\n",[46,179,181,184,187,190,193,196],{"class":48,"line":180},5,[46,182,183],{"class":52},"    if",[46,185,186],{"class":63}," (r.error ",[46,188,189],{"class":52},"||",[46,191,192],{"class":63}," r.skip) ",[46,194,195],{"class":52},"continue",[46,197,198],{"class":63},";\n",[46,200,202,204,206,209,212,215,217,221,224,226],{"class":48,"line":201},6,[46,203,183],{"class":52},[46,205,165],{"class":63},[46,207,208],{"class":52},"!",[46,210,211],{"class":63},"r.fileName?.",[46,213,214],{"class":59},"endsWith",[46,216,64],{"class":63},[46,218,220],{"class":219},"sU2Wk","\".html\"",[46,222,223],{"class":63},")) ",[46,225,195],{"class":52},[46,227,198],{"class":63},[46,229,231,233,235,238,241,244,247,249],{"class":48,"line":230},7,[46,232,183],{"class":52},[46,234,165],{"class":63},[46,236,237],{"class":85},"NOINDEX",[46,239,240],{"class":63},".",[46,242,243],{"class":59},"has",[46,245,246],{"class":63},"(r.route)) ",[46,248,195],{"class":52},[46,250,198],{"class":63},[46,252,254,257,260,262,265],{"class":48,"line":253},8,[46,255,256],{"class":52},"    const",[46,258,259],{"class":85}," loc",[46,261,101],{"class":52},[46,263,264],{"class":59}," canonicalUrl",[46,266,267],{"class":63},"(r.route);\n",[46,269,271,273,276,278,281,283],{"class":48,"line":270},9,[46,272,183],{"class":52},[46,274,275],{"class":63}," (seen.",[46,277,243],{"class":59},[46,279,280],{"class":63},"(loc)) ",[46,282,195],{"class":52},[46,284,198],{"class":63},[46,286,288,291,294],{"class":48,"line":287},10,[46,289,290],{"class":63},"    seen.",[46,292,293],{"class":59},"add",[46,295,296],{"class":63},"(loc);\n",[46,298,300,303,306,309,311],{"class":48,"line":299},11,[46,301,302],{"class":63},"    entries.",[46,304,305],{"class":59},"push",[46,307,308],{"class":63},"({ loc, lastmod: ",[46,310,142],{"class":59},[46,312,313],{"class":63},"(r.route, rootDir) });\n",[46,315,317],{"class":48,"line":316},12,[46,318,319],{"class":63},"  }\n",[46,321,323,326,329,332,335,338,341,344,347,350,353,356],{"class":48,"line":322},13,[46,324,325],{"class":52},"  return",[46,327,328],{"class":63}," entries.",[46,330,331],{"class":59},"sort",[46,333,334],{"class":63},"((",[46,336,337],{"class":67},"a",[46,339,340],{"class":63},", ",[46,342,343],{"class":67},"b",[46,345,346],{"class":63},") ",[46,348,349],{"class":52},"=>",[46,351,352],{"class":63}," a.loc.",[46,354,355],{"class":59},"localeCompare",[46,357,358],{"class":63},"(b.loc));\n",[46,360,362],{"class":48,"line":361},14,[46,363,364],{"class":63},"}\n",[11,366,367],{},"Keep the routes that became HTML, drop the one page we mark as not for crawlers, give each the same canonical address the page itself declares, and sort. The function that makes the address is the same function the canonical tag uses, moved into a shared file so the map and the page cannot disagree about what a page is called. The hook that runs it is four lines in the build configuration:",[36,369,371],{"className":38,"code":370,"language":40,"meta":41,"style":41},"\"nitro:init\"(nitro) {\n  nitro.hooks.hook(\"prerender:done\", ({ prerenderedRoutes }) => {\n    const count = writeSitemap(nitro.options.output.publicDir, prerenderedRoutes, rootDir);\n    nitro.logger.info(`Sitemap written with ${count} pages`);\n  });\n},\n",[43,372,373,381,408,423,445,450],{"__ignoreMap":41},[46,374,375,378],{"class":48,"line":49},[46,376,377],{"class":219},"\"nitro:init\"",[46,379,380],{"class":63},"(nitro) {\n",[46,382,383,386,389,391,394,397,400,403,405],{"class":48,"line":92},[46,384,385],{"class":63},"  nitro.hooks.",[46,387,388],{"class":59},"hook",[46,390,64],{"class":63},[46,392,393],{"class":219},"\"prerender:done\"",[46,395,396],{"class":63},", ({ ",[46,398,399],{"class":67},"prerenderedRoutes",[46,401,402],{"class":63}," }) ",[46,404,349],{"class":52},[46,406,407],{"class":63}," {\n",[46,409,410,412,415,417,420],{"class":48,"line":119},[46,411,256],{"class":52},[46,413,414],{"class":85}," count",[46,416,101],{"class":52},[46,418,419],{"class":59}," writeSitemap",[46,421,422],{"class":63},"(nitro.options.output.publicDir, prerenderedRoutes, rootDir);\n",[46,424,425,428,431,433,436,439,442],{"class":48,"line":159},[46,426,427],{"class":63},"    nitro.logger.",[46,429,430],{"class":59},"info",[46,432,64],{"class":63},[46,434,435],{"class":219},"`Sitemap written with ${",[46,437,438],{"class":63},"count",[46,440,441],{"class":219},"} pages`",[46,443,444],{"class":63},");\n",[46,446,447],{"class":48,"line":180},[46,448,449],{"class":63},"  });\n",[46,451,452],{"class":48,"line":201},[46,453,454],{"class":63},"},\n",[11,456,457,458,461],{},"Posts and legal pages carry a last modified date read from their own file, the date in the frontmatter for posts and the ",[43,459,460],{},"updated"," field for legal pages. It is the date we wrote down, which is the honest version until a later post makes it the date the file actually changed.",[11,463,464,467,468,470],{},[43,465,466],{},"robots.txt",", which had been one byte, is now five lines: allow everything, keep the styleguide out, and point at the map. And the live check from the previous post grew two more questions: does the live sitemap list exactly the pages the source tree says are published, no more and no fewer, and does ",[43,469,466],{}," point at it.",[15,472,474],{"id":473},"what-the-map-found","What the map found",[11,476,477],{},"The first build wrote a map of sixty six pages. We expected sixty five.",[11,479,480,481,484],{},"The extra one was a post marked ",[43,482,483],{},"draft: true"," in July, the last part of an eight part series, held back on purpose. The listing hides drafts, so no card, no link, nothing a reader could click. But the prerenderer enumerates files, not listings, and it had been rendering that post on every build since July. The page was live at its address, Google had crawled it and indexed it, and now the map, being honest, listed it.",[11,486,487],{},"This is what a derived map is for. A hand written map would have omitted the draft because the person writing it knew it was a draft, and the page would have stayed live and indexed with nobody the wiser. The build's map listed what the build built, and what the build built was wrong.",[11,489,490],{},"The fix went into the one list everything else derives from. The enumeration now reads each file's frontmatter and leaves drafts out, so a draft is not prerendered, is not on the map, and is a 404 in production. The post page refuses drafts too, so the development server says the same thing. One page will drop out of Google's index because of this, and it should.",[11,492,493],{},"Sixty five pages on the map. The live check, run against production before the deploy, said what we expected:",[36,495,500],{"className":496,"code":498,"language":499},[497],"language-text","https:\u002F\u002Fekohacks.com: 70 addresses checked, 4 wrong\n  \u002Fsitemap.xml answered 404\n  robots.txt does not point at https:\u002F\u002Fekohacks.com\u002Fsitemap.xml\n  ...\n","text",[43,501,498],{"__ignoreMap":41},[15,503,505],{"id":504},"telling-the-crawler","Telling the crawler",[11,507,508],{},"A map nobody reads is a file. Search Console accepts a sitemap through its API, the same one we pulled the day zero numbers from, so the submission is a command we can run again rather than a button we pressed once:",[36,510,513],{"className":511,"code":512,"language":499},[497],"PUT sites\u002Fsc-domain:ekohacks.com\u002Fsitemaps\u002Fhttps:\u002F\u002Fekohacks.com\u002Fsitemap.xml\n204\n\n{\n  \"path\": \"https:\u002F\u002Fekohacks.com\u002Fsitemap.xml\",\n  \"lastSubmitted\": \"2026-08-22T13:57:00Z\",\n  \"lastDownloaded\": \"2026-08-22T13:57:01Z\",\n  \"warnings\": \"0\",\n  \"errors\": \"0\",\n  \"contents\": [{ \"type\": \"web\", \"submitted\": \"65\", \"indexed\": \"0\" }]\n}\n",[43,514,512],{"__ignoreMap":41},[11,516,517],{},"One second after we submitted it, Google had read it: sixty five addresses, no warnings, no errors, and an indexed count of zero, which is the honest starting line. Indexing follows crawling, and crawling is on Google's schedule, not ours. That counter is one of the numbers the last post of this series will come back to.",[11,519,520,521,524],{},"The first attempt at the submission came back ",[43,522,523],{},"403",", because the credentials we had made for reading the day zero numbers were read only, and submitting a sitemap is a write. We made new ones with the wider scope. We mention it because the series is supposed to show the work, and the work included a permissions error.",[11,526,527],{},"The live check, run once more after the deploy, now asks seventy one questions of the site and gets the right answer to all of them, except for the address of this post, which did not exist when the check ran.",[11,529,530],{},"The number for today: sixty five pages on the map, drawn by the build, one draft found by it.",[532,533,534],"style",{},"html pre.shiki code .snl16, html code.shiki .snl16{--shiki-default:#F97583}html pre.shiki code .svObZ, html code.shiki .svObZ{--shiki-default:#B392F0}html pre.shiki code .s95oV, html code.shiki .s95oV{--shiki-default:#E1E4E8}html pre.shiki code .s9osk, html code.shiki .s9osk{--shiki-default:#FFAB70}html pre.shiki code .sDLfK, html code.shiki .sDLfK{--shiki-default:#79B8FF}html pre.shiki code .sU2Wk, html code.shiki .sU2Wk{--shiki-default:#9ECBFF}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":41,"searchDepth":92,"depth":92,"links":536},[537,538,539,540],{"id":17,"depth":92,"text":18},{"id":30,"depth":92,"text":31},{"id":473,"depth":92,"text":474},{"id":504,"depth":92,"text":505},"Shipping and Operations","2026-08-22T20:30:00.000Z","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.",false,"md",null,{},true,"\u002Fblog\u002Fa-map-drawn-by-the-build","ekohacks.com",{"title":5,"description":543},"From Invisible to Findable","blog\u002Fa-map-drawn-by-the-build",[555,556,557],"seo","operations","nuxt","uMWlCI8h9ymxEorXnMVpK0Bihh1wj2_RopKYhDae8XE",[560,572,574,581,593,599,608,615,622,631,638,647,654,661,674,683,690,697,706,714,722,732,739,747,754,760,766,775,783,793,801,808,818,826,832,842,851,859,867,875,883,890,898,906,913,919,926,935,943,950,957,966,972,980,986,994,1000,1009,1016,1023,1031,1037,1043,1049],{"path":561,"title":562,"description":563,"date":564,"author":6,"image":565,"readingMinutes":201,"category":566,"project":567,"tags":568,"draft":544,"series":546,"seriesOrder":546},"\u002Fblog\u002Fa-branch-is-inventory","A Branch Is Inventory","Unintegrated code is stock in a warehouse, and it depreciates. Our branch was one merge behind the trunk and that was enough for a conflict. What waiting costs.","2026-07-09T09:38:00.000Z","\u002Fimages\u002Fblog\u002Fa-branch-is-inventory-hero.jpg","Craft and Practice","The Dojo",[569,570,571],"git","continuous-integration","craft",{"path":549,"title":5,"description":543,"date":542,"author":6,"image":546,"readingMinutes":230,"category":541,"project":550,"tags":573,"draft":544,"series":552,"seriesOrder":119},[555,556,557],{"path":575,"title":576,"description":577,"date":578,"author":6,"image":546,"readingMinutes":201,"category":541,"project":550,"tags":579,"draft":544,"series":552,"seriesOrder":270},"\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",[580,556,557],"privacy",{"path":582,"title":583,"description":584,"date":585,"author":6,"image":586,"readingMinutes":230,"category":587,"project":588,"tags":589,"draft":544,"series":546,"seriesOrder":546},"\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",[590,591,592],"nullables","testing","websocket",{"path":594,"title":595,"description":596,"date":597,"author":6,"image":598,"readingMinutes":159,"category":566,"project":546,"tags":546,"draft":544,"series":546,"seriesOrder":546},"\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":600,"title":601,"description":602,"date":603,"author":6,"image":604,"readingMinutes":159,"category":541,"project":567,"tags":605,"draft":544,"series":546,"seriesOrder":546},"\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",[556,606,607],"deployment","idempotency",{"path":609,"title":610,"description":611,"date":612,"author":613,"image":614,"readingMinutes":201,"category":541,"project":546,"tags":546,"draft":544,"series":546,"seriesOrder":546},"\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":616,"title":617,"description":618,"date":619,"author":6,"image":546,"readingMinutes":230,"category":541,"project":550,"tags":620,"draft":544,"series":552,"seriesOrder":621},"\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",[555,556,571],0,{"path":623,"title":624,"description":625,"date":626,"author":6,"image":627,"readingMinutes":159,"category":566,"project":567,"tags":628,"draft":544,"series":546,"seriesOrder":546},"\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",[571,629,630],"fastify","security",{"path":632,"title":633,"description":634,"date":635,"author":6,"image":636,"readingMinutes":180,"category":541,"project":567,"tags":637,"draft":544,"series":546,"seriesOrder":546},"\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",[569,570,556],{"path":639,"title":640,"description":641,"date":642,"author":6,"image":643,"readingMinutes":159,"category":566,"project":567,"tags":644,"draft":544,"series":546,"seriesOrder":546},"\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",[571,645,646],"documentation","ai-agents",{"path":648,"title":649,"description":650,"date":651,"author":6,"image":652,"readingMinutes":201,"category":541,"project":567,"tags":653,"draft":544,"series":546,"seriesOrder":546},"\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",[570,556,591],{"path":655,"title":656,"description":657,"date":658,"author":6,"image":546,"readingMinutes":230,"category":541,"project":550,"tags":659,"draft":544,"series":552,"seriesOrder":92},"\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",[555,556,557,660],"netlify",{"path":662,"title":663,"description":664,"date":665,"author":6,"image":666,"readingMinutes":159,"category":667,"project":668,"tags":669,"draft":544,"series":546,"seriesOrder":546},"\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",[670,671,672,673],"composition","cli-design","narration","encoding-the-release",{"path":675,"title":676,"description":677,"date":678,"author":6,"image":679,"readingMinutes":230,"category":667,"project":588,"tags":680,"draft":544,"series":546,"seriesOrder":546},"\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",[681,590,682],"design","error handling",{"path":684,"title":685,"description":686,"date":687,"author":6,"image":688,"readingMinutes":201,"category":541,"project":567,"tags":689,"draft":544,"series":546,"seriesOrder":546},"\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",[570,606,556],{"path":691,"title":692,"description":693,"date":694,"author":6,"image":695,"readingMinutes":201,"category":566,"project":567,"tags":696,"draft":544,"series":546,"seriesOrder":546},"\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",[569,570,571],{"path":698,"title":699,"description":700,"date":701,"author":6,"image":702,"readingMinutes":119,"category":667,"project":567,"tags":703,"draft":544,"series":546,"seriesOrder":546},"\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",[681,704,705],"data","onboarding",{"path":707,"title":708,"description":709,"date":710,"author":6,"image":546,"readingMinutes":201,"category":587,"project":668,"tags":711,"draft":544,"series":546,"seriesOrder":546},"\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",[712,590,671,713],"user-testing","linear",{"path":715,"title":716,"description":717,"date":718,"author":6,"image":719,"readingMinutes":180,"category":587,"project":567,"tags":720,"draft":544,"series":546,"seriesOrder":546},"\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",[591,590,721],"mocks",{"path":723,"title":724,"description":725,"date":726,"author":6,"image":727,"readingMinutes":159,"category":541,"project":668,"tags":728,"draft":544,"series":546,"seriesOrder":546},"\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",[729,730,731,673],"automation","releasing","process",{"path":733,"title":734,"description":735,"date":701,"author":6,"image":736,"readingMinutes":119,"category":541,"project":567,"tags":737,"draft":544,"series":546,"seriesOrder":546},"\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",[556,607,738],"webhooks",{"path":740,"title":741,"description":742,"date":743,"author":6,"image":546,"readingMinutes":201,"category":541,"project":567,"tags":744,"draft":544,"series":546,"seriesOrder":546},"\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",[745,746,670,556],"shell","provisioning",{"path":748,"title":749,"description":750,"date":546,"author":751,"image":752,"readingMinutes":49,"category":667,"project":753,"tags":546,"draft":544,"series":546,"seriesOrder":546},"\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":755,"title":756,"description":757,"date":758,"author":6,"image":546,"readingMinutes":230,"category":587,"project":550,"tags":759,"draft":544,"series":552,"seriesOrder":180},"\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",[555,591,557],{"path":761,"title":762,"description":763,"date":764,"author":6,"image":765,"readingMinutes":92,"category":587,"project":546,"tags":546,"draft":544,"series":546,"seriesOrder":546},"\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":767,"title":768,"description":769,"date":770,"author":6,"image":771,"readingMinutes":180,"category":587,"project":668,"tags":772,"draft":544,"series":546,"seriesOrder":546},"\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",[590,773,774,673],"testing-without-mocks","james-shore",{"path":776,"title":777,"description":778,"date":779,"author":6,"image":546,"readingMinutes":201,"category":587,"project":567,"tags":780,"draft":544,"series":782,"seriesOrder":49},"\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",[591,590,721,781],"coverage","What Mocks Cost",{"path":784,"title":785,"description":786,"date":787,"author":6,"image":788,"readingMinutes":180,"category":667,"project":588,"tags":789,"draft":544,"series":546,"seriesOrder":546},"\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",[790,791,591,792],"protocol","pubsub","tdd",{"path":794,"title":795,"description":796,"date":797,"author":6,"image":798,"readingMinutes":201,"category":587,"project":588,"tags":799,"draft":544,"series":546,"seriesOrder":546},"\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",[590,591,800],"refactoring",{"path":802,"title":803,"description":804,"date":805,"author":6,"image":806,"readingMinutes":180,"category":566,"project":567,"tags":807,"draft":544,"series":546,"seriesOrder":546},"\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",[569,570,571],{"path":809,"title":810,"description":811,"date":812,"author":6,"image":813,"readingMinutes":253,"category":541,"project":567,"tags":814,"draft":544,"series":546,"seriesOrder":546},"\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",[556,815,816,817],"debugging","european-tech","community",{"path":819,"title":820,"description":821,"date":822,"author":6,"image":823,"readingMinutes":201,"category":667,"project":588,"tags":824,"draft":544,"series":546,"seriesOrder":546},"\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",[681,792,825],"continuous integration",{"path":827,"title":828,"description":829,"date":830,"author":6,"image":831,"readingMinutes":159,"category":566,"project":546,"tags":546,"draft":544,"series":546,"seriesOrder":546},"\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":833,"title":834,"description":835,"date":836,"author":6,"image":837,"readingMinutes":230,"category":566,"project":567,"tags":838,"draft":544,"series":546,"seriesOrder":546},"\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",[839,840,841,713],"graphql","stories","xp",{"path":843,"title":844,"description":845,"date":846,"author":6,"image":847,"readingMinutes":180,"category":587,"project":668,"tags":848,"draft":544,"series":546,"seriesOrder":546},"\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",[792,849,850,673],"red-first","code-review",{"path":852,"title":853,"description":854,"date":855,"author":6,"image":856,"readingMinutes":180,"category":541,"project":668,"tags":857,"draft":544,"series":546,"seriesOrder":546},"\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",[730,858,569,673],"preflight",{"path":860,"title":861,"description":862,"date":863,"author":6,"image":864,"readingMinutes":180,"category":541,"project":588,"tags":865,"draft":544,"series":546,"seriesOrder":546},"\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",[866,590,591],"shutdown",{"path":868,"title":869,"description":870,"date":871,"author":6,"image":872,"readingMinutes":201,"category":541,"project":588,"tags":873,"draft":544,"series":546,"seriesOrder":546},"\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",[874,591,571],"packaging",{"path":876,"title":877,"description":878,"date":879,"author":6,"image":880,"readingMinutes":159,"category":667,"project":668,"tags":881,"draft":544,"series":546,"seriesOrder":546},"\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",[729,882,681,673],"human-in-the-loop",{"path":884,"title":885,"description":886,"date":887,"author":6,"image":888,"readingMinutes":201,"category":541,"project":567,"tags":889,"draft":544,"series":546,"seriesOrder":546},"\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",[570,556,571],{"path":891,"title":892,"description":893,"date":894,"author":6,"image":895,"readingMinutes":201,"category":541,"project":588,"tags":896,"draft":544,"series":546,"seriesOrder":546},"\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",[866,556,897],"signals",{"path":899,"title":900,"description":901,"date":902,"author":6,"image":903,"readingMinutes":253,"category":566,"project":588,"tags":904,"draft":544,"series":546,"seriesOrder":546},"\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",[850,800,905,591],"teaching",{"path":907,"title":908,"description":909,"date":910,"author":6,"image":911,"readingMinutes":201,"category":667,"project":588,"tags":912,"draft":544,"series":546,"seriesOrder":546},"\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",[681,791,590],{"path":914,"title":915,"description":916,"date":917,"author":6,"image":546,"readingMinutes":230,"category":541,"project":550,"tags":918,"draft":544,"series":552,"seriesOrder":49},"\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",[555,556,557],{"path":920,"title":921,"description":922,"date":923,"author":6,"image":924,"readingMinutes":253,"category":541,"project":567,"tags":925,"draft":544,"series":546,"seriesOrder":546},"\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",[556,815,816,817],{"path":927,"title":928,"description":929,"date":930,"author":6,"image":931,"readingMinutes":159,"category":566,"project":668,"tags":932,"draft":548,"series":546,"seriesOrder":546},"\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",[730,933,934,673],"dogfooding","acceptance-testing",{"path":936,"title":937,"description":938,"date":939,"author":6,"image":940,"readingMinutes":230,"category":587,"project":588,"tags":941,"draft":544,"series":546,"seriesOrder":546},"\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",[591,590,942],"scriptrunner",{"path":944,"title":945,"description":946,"date":947,"author":6,"image":546,"readingMinutes":253,"category":541,"project":550,"tags":948,"draft":544,"series":552,"seriesOrder":201},"\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",[555,556,949],"performance",{"path":951,"title":952,"description":953,"date":954,"author":6,"image":955,"readingMinutes":230,"category":587,"project":588,"tags":956,"draft":544,"series":546,"seriesOrder":546},"\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",[591,590,592],{"path":958,"title":959,"description":960,"date":961,"author":751,"image":962,"readingMinutes":201,"category":566,"project":963,"tags":964,"draft":544,"series":546,"seriesOrder":546},"\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",[571,965,704,905],"content",{"path":967,"title":968,"description":969,"date":787,"author":6,"image":970,"readingMinutes":180,"category":587,"project":588,"tags":971,"draft":544,"series":546,"seriesOrder":546},"\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",[590,591,571,905],{"path":973,"title":974,"description":975,"date":961,"author":751,"image":976,"readingMinutes":159,"category":566,"project":963,"tags":977,"draft":544,"series":546,"seriesOrder":546},"\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",[978,569,905,979],"workflow","accessibility",{"path":981,"title":982,"description":983,"date":984,"author":6,"image":546,"readingMinutes":201,"category":587,"project":567,"tags":985,"draft":544,"series":782,"seriesOrder":92},"\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",[591,590,721,781],{"path":987,"title":988,"description":989,"date":990,"author":6,"image":991,"readingMinutes":230,"category":541,"project":567,"tags":992,"draft":544,"series":546,"seriesOrder":546},"\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",[556,607,993],"observability",{"path":995,"title":996,"description":997,"date":998,"author":6,"image":546,"readingMinutes":230,"category":587,"project":567,"tags":999,"draft":544,"series":546,"seriesOrder":546},"\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",[979,591,681,571],{"path":1001,"title":1002,"description":1003,"date":1004,"author":6,"image":1005,"readingMinutes":119,"category":667,"project":567,"tags":1006,"draft":544,"series":546,"seriesOrder":546},"\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",[681,1007,1008],"validation","typescript",{"path":1010,"title":1011,"description":1012,"date":1013,"author":6,"image":1014,"readingMinutes":201,"category":541,"project":567,"tags":1015,"draft":544,"series":546,"seriesOrder":546},"\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",[570,556,606],{"path":1017,"title":1018,"description":1019,"date":1020,"author":6,"image":546,"readingMinutes":230,"category":541,"project":550,"tags":1021,"draft":544,"series":552,"seriesOrder":230},"\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",[580,556,1022],"analytics",{"path":1024,"title":1025,"description":1026,"date":1027,"author":6,"image":1028,"readingMinutes":201,"category":541,"project":668,"tags":1029,"draft":544,"series":546,"seriesOrder":546},"\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",[730,1030,590,673],"failure-modes",{"path":1032,"title":1033,"description":1034,"date":1035,"author":6,"image":546,"readingMinutes":201,"category":541,"project":550,"tags":1036,"draft":544,"series":552,"seriesOrder":159},"\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",[555,556,557],{"path":1038,"title":1039,"description":1040,"date":1041,"author":6,"image":546,"readingMinutes":201,"category":587,"project":567,"tags":1042,"draft":544,"series":782,"seriesOrder":119},"\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",[591,590,721,781],{"path":1044,"title":1045,"description":1046,"date":1047,"author":6,"image":546,"readingMinutes":230,"category":541,"project":550,"tags":1048,"draft":544,"series":552,"seriesOrder":253},"\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",[580,556,1022],{"path":1050,"title":1051,"description":1052,"date":1053,"author":6,"image":1054,"readingMinutes":159,"category":667,"project":546,"tags":546,"draft":544,"series":546,"seriesOrder":546},"\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",1787861096086]