[{"data":1,"prerenderedAt":1098},["ShallowReactive",2],{"post-\u002Fblog\u002Fwhat-the-link-looks-like-before-anyone-clicks":3,"blog-all":602},{"id":4,"title":5,"author":6,"body":7,"category":585,"date":586,"description":587,"draft":588,"extension":589,"image":590,"meta":591,"navigation":88,"path":592,"project":593,"readingMinutes":247,"seo":594,"series":595,"seriesOrder":120,"stem":596,"tags":597,"__hash__":601},"blog\u002Fblog\u002Fwhat-the-link-looks-like-before-anyone-clicks.md","What the Link Looks Like Before Anyone Clicks","EkoHacks Team",{"type":8,"value":9,"toc":578},"minimark",[10,14,19,22,26,29,32,39,43,46,308,311,392,395,531,535,538,541,549,552,555,561,564,568,571,574],[11,12,13],"p",{},"Most people who ever see a page of ours will see it first as a link: in a chat, in a feed, in a message from a friend. What that link looks like is decided by a handful of tags in the page's head, read once by whatever app is showing the link, and never by the reader. Day zero found that none of our sixty two routes carried an image tag, and every one of them asked for the small card. Share any page and you got a rectangle of text.",[15,16,18],"h2",{"id":17},"the-tag-is-the-page","The tag is the page",[11,20,21],{},"The reframe here is small and it matters. A share preview is not decoration added after the fact by a marketing step. It is the first rendering of the page, made by somebody else's software from tags we ship, and it is produced by the same build that produces everything else. If the build does not put an image in the head, there is no image. If it puts a relative path there, the app reading it has nothing to resolve it against and shows nothing. The preview is part of the page, and it is checkable the same way the rest of the page is.",[15,23,25],{"id":24},"what-we-had","What we had",[11,27,28],{},"Three posts on the live site carried a cover image. Forty five more covers had been drawn over the summer, dark isometric scenes, one for each post, and they sat on one laptop, referenced by one line of frontmatter each that had never been committed. Today they went in, one commit, ninety files, forty five added lines. A cover that is not in the repository is not on the site, for the same reason a page the build does not produce does not exist.",[11,30,31],{},"The landing pages, the legal pages and the posts that have no cover needed something too. We drew a default card from the brand: the navy from our tokens, the white logo, the tagline from the home page, in a script that lives in the repository and can be run again if the brand changes.",[11,33,34],{},[35,36],"img",{"alt":37,"src":38},"The default share card: the EkoHacks logo on deep navy, with the line \"Employable software engineering, taught through live projects\"","\u002Fimages\u002Fog-default.jpg",[15,40,42],{"id":41},"the-change","The change",[11,44,45],{},"All of it went into the one composable every page already calls for its title and description. A page passes the site relative path of its image if it has one; the composable makes it absolute, falls back to the default card, asks for the large card format, and says whether the page is an article:",[47,48,53],"pre",{"className":49,"code":50,"language":51,"meta":52,"style":52},"language-ts shiki shiki-themes github-dark","export const DEFAULT_OG_IMAGE = \"\u002Fimages\u002Fog-default.jpg\";\n\nexport function absoluteImageUrl(path?: string) {\n  const p = path && path.trim() ? path.trim() : DEFAULT_OG_IMAGE;\n  return \u002F^https?:\\\u002F\\\u002F\u002F.test(p) ? p : `${SITE_URL}${p.startsWith(\"\u002F\") ? \"\" : \"\u002F\"}${p}`;\n}\n\nuseServerSeoMeta({\n  \u002F\u002F ... title, description, canonical as before\n  ogType,\n  ogImage: image,\n  twitterCard: \"summary_large_image\",\n  twitterImage: image,\n});\n","ts","",[54,55,56,83,90,118,160,245,251,256,265,272,278,284,296,302],"code",{"__ignoreMap":52},[57,58,61,65,68,72,75,79],"span",{"class":59,"line":60},"line",1,[57,62,64],{"class":63},"snl16","export",[57,66,67],{"class":63}," const",[57,69,71],{"class":70},"sDLfK"," DEFAULT_OG_IMAGE",[57,73,74],{"class":63}," =",[57,76,78],{"class":77},"sU2Wk"," \"\u002Fimages\u002Fog-default.jpg\"",[57,80,82],{"class":81},"s95oV",";\n",[57,84,86],{"class":59,"line":85},2,[57,87,89],{"emptyLinePlaceholder":88},true,"\n",[57,91,93,95,98,102,105,109,112,115],{"class":59,"line":92},3,[57,94,64],{"class":63},[57,96,97],{"class":63}," function",[57,99,101],{"class":100},"svObZ"," absoluteImageUrl",[57,103,104],{"class":81},"(",[57,106,108],{"class":107},"s9osk","path",[57,110,111],{"class":63},"?:",[57,113,114],{"class":70}," string",[57,116,117],{"class":81},") {\n",[57,119,121,124,127,129,132,135,138,141,144,147,149,151,153,156,158],{"class":59,"line":120},4,[57,122,123],{"class":63},"  const",[57,125,126],{"class":70}," p",[57,128,74],{"class":63},[57,130,131],{"class":81}," path ",[57,133,134],{"class":63},"&&",[57,136,137],{"class":81}," path.",[57,139,140],{"class":100},"trim",[57,142,143],{"class":81},"() ",[57,145,146],{"class":63},"?",[57,148,137],{"class":81},[57,150,140],{"class":100},[57,152,143],{"class":81},[57,154,155],{"class":63},":",[57,157,71],{"class":70},[57,159,82],{"class":81},[57,161,163,166,169,172,176,178,180,184,187,190,193,196,198,201,203,206,209,212,214,216,219,221,224,227,229,232,235,238,240,243],{"class":59,"line":162},5,[57,164,165],{"class":63},"  return",[57,167,168],{"class":77}," \u002F",[57,170,171],{"class":63},"^",[57,173,175],{"class":174},"sns5M","https",[57,177,146],{"class":63},[57,179,155],{"class":174},[57,181,183],{"class":182},"sRjNt","\\\u002F\\\u002F",[57,185,186],{"class":77},"\u002F",[57,188,189],{"class":81},".",[57,191,192],{"class":100},"test",[57,194,195],{"class":81},"(p) ",[57,197,146],{"class":63},[57,199,200],{"class":81}," p ",[57,202,155],{"class":63},[57,204,205],{"class":77}," `${",[57,207,208],{"class":70},"SITE_URL",[57,210,211],{"class":77},"}${",[57,213,11],{"class":81},[57,215,189],{"class":77},[57,217,218],{"class":100},"startsWith",[57,220,104],{"class":77},[57,222,223],{"class":77},"\"\u002F\"",[57,225,226],{"class":77},") ",[57,228,146],{"class":63},[57,230,231],{"class":77}," \"\"",[57,233,234],{"class":63}," :",[57,236,237],{"class":77}," \"\u002F\"}${",[57,239,11],{"class":81},[57,241,242],{"class":77},"}`",[57,244,82],{"class":81},[57,246,248],{"class":59,"line":247},6,[57,249,250],{"class":81},"}\n",[57,252,254],{"class":59,"line":253},7,[57,255,89],{"emptyLinePlaceholder":88},[57,257,259,262],{"class":59,"line":258},8,[57,260,261],{"class":100},"useServerSeoMeta",[57,263,264],{"class":81},"({\n",[57,266,268],{"class":59,"line":267},9,[57,269,271],{"class":270},"sAwPA","  \u002F\u002F ... title, description, canonical as before\n",[57,273,275],{"class":59,"line":274},10,[57,276,277],{"class":81},"  ogType,\n",[57,279,281],{"class":59,"line":280},11,[57,282,283],{"class":81},"  ogImage: image,\n",[57,285,287,290,293],{"class":59,"line":286},12,[57,288,289],{"class":81},"  twitterCard: ",[57,291,292],{"class":77},"\"summary_large_image\"",[57,294,295],{"class":81},",\n",[57,297,299],{"class":59,"line":298},13,[57,300,301],{"class":81},"  twitterImage: image,\n",[57,303,305],{"class":59,"line":304},14,[57,306,307],{"class":81},"});\n",[11,309,310],{},"The post page passes its cover and declares itself an article. Everything else gets the default and is a website. Before, the head of a post read like this:",[47,312,316],{"className":313,"code":314,"language":315,"meta":52,"style":52},"language-html shiki shiki-themes github-dark","\u003Cmeta property=\"og:title\" content=\"Landmines\">\n\u003Cmeta property=\"og:description\" content=\"...\">\n\u003Cmeta name=\"twitter:card\" content=\"summary\">\n","html",[54,317,318,347,369],{"__ignoreMap":52},[57,319,320,323,327,330,333,336,339,341,344],{"class":59,"line":60},[57,321,322],{"class":81},"\u003C",[57,324,326],{"class":325},"s4JwU","meta",[57,328,329],{"class":100}," property",[57,331,332],{"class":81},"=",[57,334,335],{"class":77},"\"og:title\"",[57,337,338],{"class":100}," content",[57,340,332],{"class":81},[57,342,343],{"class":77},"\"Landmines\"",[57,345,346],{"class":81},">\n",[57,348,349,351,353,355,357,360,362,364,367],{"class":59,"line":85},[57,350,322],{"class":81},[57,352,326],{"class":325},[57,354,329],{"class":100},[57,356,332],{"class":81},[57,358,359],{"class":77},"\"og:description\"",[57,361,338],{"class":100},[57,363,332],{"class":81},[57,365,366],{"class":77},"\"...\"",[57,368,346],{"class":81},[57,370,371,373,375,378,380,383,385,387,390],{"class":59,"line":92},[57,372,322],{"class":81},[57,374,326],{"class":325},[57,376,377],{"class":100}," name",[57,379,332],{"class":81},[57,381,382],{"class":77},"\"twitter:card\"",[57,384,338],{"class":100},[57,386,332],{"class":81},[57,388,389],{"class":77},"\"summary\"",[57,391,346],{"class":81},[11,393,394],{},"After:",[47,396,398],{"className":313,"code":397,"language":315,"meta":52,"style":52},"\u003Clink rel=\"canonical\" href=\"https:\u002F\u002Fekohacks.com\u002Fblog\u002Flandmines\">\n\u003Cmeta property=\"og:url\" content=\"https:\u002F\u002Fekohacks.com\u002Fblog\u002Flandmines\">\n\u003Cmeta property=\"og:type\" content=\"article\">\n\u003Cmeta property=\"og:image\" content=\"https:\u002F\u002Fekohacks.com\u002Fimages\u002Fblog\u002Flandmines-hero.jpg\">\n\u003Cmeta name=\"twitter:card\" content=\"summary_large_image\">\n\u003Cmeta name=\"twitter:image\" content=\"https:\u002F\u002Fekohacks.com\u002Fimages\u002Fblog\u002Flandmines-hero.jpg\">\n",[54,399,400,425,446,468,490,510],{"__ignoreMap":52},[57,401,402,404,407,410,412,415,418,420,423],{"class":59,"line":60},[57,403,322],{"class":81},[57,405,406],{"class":325},"link",[57,408,409],{"class":100}," rel",[57,411,332],{"class":81},[57,413,414],{"class":77},"\"canonical\"",[57,416,417],{"class":100}," href",[57,419,332],{"class":81},[57,421,422],{"class":77},"\"https:\u002F\u002Fekohacks.com\u002Fblog\u002Flandmines\"",[57,424,346],{"class":81},[57,426,427,429,431,433,435,438,440,442,444],{"class":59,"line":85},[57,428,322],{"class":81},[57,430,326],{"class":325},[57,432,329],{"class":100},[57,434,332],{"class":81},[57,436,437],{"class":77},"\"og:url\"",[57,439,338],{"class":100},[57,441,332],{"class":81},[57,443,422],{"class":77},[57,445,346],{"class":81},[57,447,448,450,452,454,456,459,461,463,466],{"class":59,"line":92},[57,449,322],{"class":81},[57,451,326],{"class":325},[57,453,329],{"class":100},[57,455,332],{"class":81},[57,457,458],{"class":77},"\"og:type\"",[57,460,338],{"class":100},[57,462,332],{"class":81},[57,464,465],{"class":77},"\"article\"",[57,467,346],{"class":81},[57,469,470,472,474,476,478,481,483,485,488],{"class":59,"line":120},[57,471,322],{"class":81},[57,473,326],{"class":325},[57,475,329],{"class":100},[57,477,332],{"class":81},[57,479,480],{"class":77},"\"og:image\"",[57,482,338],{"class":100},[57,484,332],{"class":81},[57,486,487],{"class":77},"\"https:\u002F\u002Fekohacks.com\u002Fimages\u002Fblog\u002Flandmines-hero.jpg\"",[57,489,346],{"class":81},[57,491,492,494,496,498,500,502,504,506,508],{"class":59,"line":162},[57,493,322],{"class":81},[57,495,326],{"class":325},[57,497,377],{"class":100},[57,499,332],{"class":81},[57,501,382],{"class":77},[57,503,338],{"class":100},[57,505,332],{"class":81},[57,507,292],{"class":77},[57,509,346],{"class":81},[57,511,512,514,516,518,520,523,525,527,529],{"class":59,"line":247},[57,513,322],{"class":81},[57,515,326],{"class":325},[57,517,377],{"class":100},[57,519,332],{"class":81},[57,521,522],{"class":77},"\"twitter:image\"",[57,524,338],{"class":100},[57,526,332],{"class":81},[57,528,487],{"class":77},[57,530,346],{"class":81},[15,532,534],{"id":533},"the-check","The check",[11,536,537],{},"The live check from two posts ago now asks three more questions of every page: is there an image tag, is it an absolute address on our own origin, and does the image it names actually answer 200. That last one is asked once per image rather than once per page, and it is the question that would have caught the forty five covers on a laptop, had the tag existed to point at them.",[11,539,540],{},"Run against production before the deploy:",[47,542,547],{"className":543,"code":545,"language":546},[544],"language-text","https:\u002F\u002Fekohacks.com: 71 addresses checked, 132 wrong\n  \u002Fblog has no og:image\n  \u002Fblog twitter:card is not summary_large_image\n  ...\n","text",[54,548,545],{"__ignoreMap":52},[11,550,551],{},"Two faults per page, sixty six pages. The build was checked offline before it went anywhere: sixty six pages with an image, forty eight distinct images all present in the output, nineteen pages on the default card, fifty four posts typed as articles.",[11,553,554],{},"After the deploy, against production:",[47,556,559],{"className":557,"code":558,"language":546},[544],"https:\u002F\u002Fekohacks.com: 120 addresses checked, 2 wrong\n  \u002Fblog\u002Fwhat-the-link-looks-like-before-anyone-clicks answered 404\n  sitemap is missing https:\u002F\u002Fekohacks.com\u002Fblog\u002Fwhat-the-link-looks-like-before-anyone-clicks\n",[54,560,558],{"__ignoreMap":52},[11,562,563],{},"One hundred and twenty questions now, because every distinct image is asked once. The two wrong answers are this post, which was not yet committed when the check ran, and which the map correctly did not know about. Every page that existed had an image, every image answered.",[15,565,567],{"id":566},"what-this-does-not-fix","What this does not fix",[11,569,570],{},"Two honest limits. The apps that render previews cache them, some for days, so a link to an old post that someone shared last month may keep its bare rectangle until their cache lets go. We cannot speed that up. And the covers are 1264 by 848, a three by two frame, where most preview cards are closer to two by one. The apps crop. We looked at regenerating forty eight images to the wider frame and decided the crop was acceptable and the afternoon was not, which is a decision we may revisit when the measurement post tells us whether anyone shares these links at all.",[11,572,573],{},"The number for today: sixty six pages, forty eight images, one hundred and thirty two missing tags on the morning run and none on the evening one.",[575,576,577],"style",{},"html pre.shiki code .snl16, html code.shiki .snl16{--shiki-default:#F97583}html pre.shiki code .sDLfK, html code.shiki .sDLfK{--shiki-default:#79B8FF}html pre.shiki code .sU2Wk, html code.shiki .sU2Wk{--shiki-default:#9ECBFF}html pre.shiki code .s95oV, html code.shiki .s95oV{--shiki-default:#E1E4E8}html pre.shiki code .svObZ, html code.shiki .svObZ{--shiki-default:#B392F0}html pre.shiki code .s9osk, html code.shiki .s9osk{--shiki-default:#FFAB70}html pre.shiki code .sns5M, html code.shiki .sns5M{--shiki-default:#DBEDFF}html pre.shiki code .sRjNt, html code.shiki .sRjNt{--shiki-default:#85E89D;--shiki-default-font-weight:bold}html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html pre.shiki code .s4JwU, html code.shiki .s4JwU{--shiki-default:#85E89D}",{"title":52,"searchDepth":85,"depth":85,"links":579},[580,581,582,583,584],{"id":17,"depth":85,"text":18},{"id":24,"depth":85,"text":25},{"id":41,"depth":85,"text":42},{"id":533,"depth":85,"text":534},{"id":566,"depth":85,"text":567},"Shipping and Operations","2026-08-22T22:00:00.000Z","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.",false,"md",null,{},"\u002Fblog\u002Fwhat-the-link-looks-like-before-anyone-clicks","ekohacks.com",{"title":5,"description":587},"From Invisible to Findable","blog\u002Fwhat-the-link-looks-like-before-anyone-clicks",[598,599,600],"seo","operations","nuxt","W_xea1kCGWixaHDLZ5RdqdcjSjYzKOjf6S1lWq0WY5A",[603,615,621,628,640,646,655,662,669,678,685,694,701,708,721,730,737,744,753,761,769,779,786,794,801,807,813,822,830,840,848,855,865,873,879,889,898,906,914,922,930,937,945,953,960,966,973,982,990,997,1004,1013,1019,1027,1033,1041,1047,1056,1063,1070,1078,1080,1086,1092],{"path":604,"title":605,"description":606,"date":607,"author":6,"image":608,"readingMinutes":247,"category":609,"project":610,"tags":611,"draft":588,"series":590,"seriesOrder":590},"\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",[612,613,614],"git","continuous-integration","craft",{"path":616,"title":617,"description":618,"date":619,"author":6,"image":590,"readingMinutes":253,"category":585,"project":593,"tags":620,"draft":588,"series":595,"seriesOrder":92},"\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",[598,599,600],{"path":622,"title":623,"description":624,"date":625,"author":6,"image":590,"readingMinutes":247,"category":585,"project":593,"tags":626,"draft":588,"series":595,"seriesOrder":267},"\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",[627,599,600],"privacy",{"path":629,"title":630,"description":631,"date":632,"author":6,"image":633,"readingMinutes":253,"category":634,"project":635,"tags":636,"draft":588,"series":590,"seriesOrder":590},"\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",[637,638,639],"nullables","testing","websocket",{"path":641,"title":642,"description":643,"date":644,"author":6,"image":645,"readingMinutes":120,"category":609,"project":590,"tags":590,"draft":588,"series":590,"seriesOrder":590},"\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":647,"title":648,"description":649,"date":650,"author":6,"image":651,"readingMinutes":120,"category":585,"project":610,"tags":652,"draft":588,"series":590,"seriesOrder":590},"\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",[599,653,654],"deployment","idempotency",{"path":656,"title":657,"description":658,"date":659,"author":660,"image":661,"readingMinutes":247,"category":585,"project":590,"tags":590,"draft":588,"series":590,"seriesOrder":590},"\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":663,"title":664,"description":665,"date":666,"author":6,"image":590,"readingMinutes":253,"category":585,"project":593,"tags":667,"draft":588,"series":595,"seriesOrder":668},"\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",[598,599,614],0,{"path":670,"title":671,"description":672,"date":673,"author":6,"image":674,"readingMinutes":120,"category":609,"project":610,"tags":675,"draft":588,"series":590,"seriesOrder":590},"\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",[614,676,677],"fastify","security",{"path":679,"title":680,"description":681,"date":682,"author":6,"image":683,"readingMinutes":162,"category":585,"project":610,"tags":684,"draft":588,"series":590,"seriesOrder":590},"\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",[612,613,599],{"path":686,"title":687,"description":688,"date":689,"author":6,"image":690,"readingMinutes":120,"category":609,"project":610,"tags":691,"draft":588,"series":590,"seriesOrder":590},"\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",[614,692,693],"documentation","ai-agents",{"path":695,"title":696,"description":697,"date":698,"author":6,"image":699,"readingMinutes":247,"category":585,"project":610,"tags":700,"draft":588,"series":590,"seriesOrder":590},"\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",[613,599,638],{"path":702,"title":703,"description":704,"date":705,"author":6,"image":590,"readingMinutes":253,"category":585,"project":593,"tags":706,"draft":588,"series":595,"seriesOrder":85},"\u002Fblog\u002Fone-address-per-page","One Address per Page","Every page on our site answered with a redirect before it answered with a page. How we made the build emit one address, declare it, and check it live.","2026-08-22T18:30:00.000Z",[598,599,600,707],"netlify",{"path":709,"title":710,"description":711,"date":712,"author":6,"image":713,"readingMinutes":120,"category":714,"project":715,"tags":716,"draft":588,"series":590,"seriesOrder":590},"\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",[717,718,719,720],"composition","cli-design","narration","encoding-the-release",{"path":722,"title":723,"description":724,"date":725,"author":6,"image":726,"readingMinutes":253,"category":714,"project":635,"tags":727,"draft":588,"series":590,"seriesOrder":590},"\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",[728,637,729],"design","error handling",{"path":731,"title":732,"description":733,"date":734,"author":6,"image":735,"readingMinutes":247,"category":585,"project":610,"tags":736,"draft":588,"series":590,"seriesOrder":590},"\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",[613,653,599],{"path":738,"title":739,"description":740,"date":741,"author":6,"image":742,"readingMinutes":247,"category":609,"project":610,"tags":743,"draft":588,"series":590,"seriesOrder":590},"\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",[612,613,614],{"path":745,"title":746,"description":747,"date":748,"author":6,"image":749,"readingMinutes":92,"category":714,"project":610,"tags":750,"draft":588,"series":590,"seriesOrder":590},"\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",[728,751,752],"data","onboarding",{"path":754,"title":755,"description":756,"date":757,"author":6,"image":590,"readingMinutes":247,"category":634,"project":715,"tags":758,"draft":588,"series":590,"seriesOrder":590},"\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",[759,637,718,760],"user-testing","linear",{"path":762,"title":763,"description":764,"date":765,"author":6,"image":766,"readingMinutes":162,"category":634,"project":610,"tags":767,"draft":588,"series":590,"seriesOrder":590},"\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",[638,637,768],"mocks",{"path":770,"title":771,"description":772,"date":773,"author":6,"image":774,"readingMinutes":120,"category":585,"project":715,"tags":775,"draft":588,"series":590,"seriesOrder":590},"\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",[776,777,778,720],"automation","releasing","process",{"path":780,"title":781,"description":782,"date":748,"author":6,"image":783,"readingMinutes":92,"category":585,"project":610,"tags":784,"draft":588,"series":590,"seriesOrder":590},"\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",[599,654,785],"webhooks",{"path":787,"title":788,"description":789,"date":790,"author":6,"image":590,"readingMinutes":247,"category":585,"project":610,"tags":791,"draft":588,"series":590,"seriesOrder":590},"\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",[792,793,717,599],"shell","provisioning",{"path":795,"title":796,"description":797,"date":590,"author":798,"image":799,"readingMinutes":60,"category":714,"project":800,"tags":590,"draft":588,"series":590,"seriesOrder":590},"\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":802,"title":803,"description":804,"date":805,"author":6,"image":590,"readingMinutes":253,"category":634,"project":593,"tags":806,"draft":588,"series":595,"seriesOrder":162},"\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",[598,638,600],{"path":808,"title":809,"description":810,"date":811,"author":6,"image":812,"readingMinutes":85,"category":634,"project":590,"tags":590,"draft":588,"series":590,"seriesOrder":590},"\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":814,"title":815,"description":816,"date":817,"author":6,"image":818,"readingMinutes":162,"category":634,"project":715,"tags":819,"draft":588,"series":590,"seriesOrder":590},"\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",[637,820,821,720],"testing-without-mocks","james-shore",{"path":823,"title":824,"description":825,"date":826,"author":6,"image":590,"readingMinutes":247,"category":634,"project":610,"tags":827,"draft":588,"series":829,"seriesOrder":60},"\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",[638,637,768,828],"coverage","What Mocks Cost",{"path":831,"title":832,"description":833,"date":834,"author":6,"image":835,"readingMinutes":162,"category":714,"project":635,"tags":836,"draft":588,"series":590,"seriesOrder":590},"\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",[837,838,638,839],"protocol","pubsub","tdd",{"path":841,"title":842,"description":843,"date":844,"author":6,"image":845,"readingMinutes":247,"category":634,"project":635,"tags":846,"draft":588,"series":590,"seriesOrder":590},"\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",[637,638,847],"refactoring",{"path":849,"title":850,"description":851,"date":852,"author":6,"image":853,"readingMinutes":162,"category":609,"project":610,"tags":854,"draft":588,"series":590,"seriesOrder":590},"\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",[612,613,614],{"path":856,"title":857,"description":858,"date":859,"author":6,"image":860,"readingMinutes":258,"category":585,"project":610,"tags":861,"draft":588,"series":590,"seriesOrder":590},"\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",[599,862,863,864],"debugging","european-tech","community",{"path":866,"title":867,"description":868,"date":869,"author":6,"image":870,"readingMinutes":247,"category":714,"project":635,"tags":871,"draft":588,"series":590,"seriesOrder":590},"\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",[728,839,872],"continuous integration",{"path":874,"title":875,"description":876,"date":877,"author":6,"image":878,"readingMinutes":120,"category":609,"project":590,"tags":590,"draft":588,"series":590,"seriesOrder":590},"\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":880,"title":881,"description":882,"date":883,"author":6,"image":884,"readingMinutes":253,"category":609,"project":610,"tags":885,"draft":588,"series":590,"seriesOrder":590},"\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",[886,887,888,760],"graphql","stories","xp",{"path":890,"title":891,"description":892,"date":893,"author":6,"image":894,"readingMinutes":162,"category":634,"project":715,"tags":895,"draft":588,"series":590,"seriesOrder":590},"\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",[839,896,897,720],"red-first","code-review",{"path":899,"title":900,"description":901,"date":902,"author":6,"image":903,"readingMinutes":162,"category":585,"project":715,"tags":904,"draft":588,"series":590,"seriesOrder":590},"\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",[777,905,612,720],"preflight",{"path":907,"title":908,"description":909,"date":910,"author":6,"image":911,"readingMinutes":162,"category":585,"project":635,"tags":912,"draft":588,"series":590,"seriesOrder":590},"\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",[913,637,638],"shutdown",{"path":915,"title":916,"description":917,"date":918,"author":6,"image":919,"readingMinutes":247,"category":585,"project":635,"tags":920,"draft":588,"series":590,"seriesOrder":590},"\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",[921,638,614],"packaging",{"path":923,"title":924,"description":925,"date":926,"author":6,"image":927,"readingMinutes":120,"category":714,"project":715,"tags":928,"draft":588,"series":590,"seriesOrder":590},"\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",[776,929,728,720],"human-in-the-loop",{"path":931,"title":932,"description":933,"date":934,"author":6,"image":935,"readingMinutes":247,"category":585,"project":610,"tags":936,"draft":588,"series":590,"seriesOrder":590},"\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",[613,599,614],{"path":938,"title":939,"description":940,"date":941,"author":6,"image":942,"readingMinutes":247,"category":585,"project":635,"tags":943,"draft":588,"series":590,"seriesOrder":590},"\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",[913,599,944],"signals",{"path":946,"title":947,"description":948,"date":949,"author":6,"image":950,"readingMinutes":258,"category":609,"project":635,"tags":951,"draft":588,"series":590,"seriesOrder":590},"\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",[897,847,952,638],"teaching",{"path":954,"title":955,"description":956,"date":957,"author":6,"image":958,"readingMinutes":247,"category":714,"project":635,"tags":959,"draft":588,"series":590,"seriesOrder":590},"\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",[728,838,637],{"path":961,"title":962,"description":963,"date":964,"author":6,"image":590,"readingMinutes":253,"category":585,"project":593,"tags":965,"draft":588,"series":595,"seriesOrder":60},"\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",[598,599,600],{"path":967,"title":968,"description":969,"date":970,"author":6,"image":971,"readingMinutes":258,"category":585,"project":610,"tags":972,"draft":588,"series":590,"seriesOrder":590},"\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",[599,862,863,864],{"path":974,"title":975,"description":976,"date":977,"author":6,"image":978,"readingMinutes":120,"category":609,"project":715,"tags":979,"draft":88,"series":590,"seriesOrder":590},"\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",[777,980,981,720],"dogfooding","acceptance-testing",{"path":983,"title":984,"description":985,"date":986,"author":6,"image":987,"readingMinutes":253,"category":634,"project":635,"tags":988,"draft":588,"series":590,"seriesOrder":590},"\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",[638,637,989],"scriptrunner",{"path":991,"title":992,"description":993,"date":994,"author":6,"image":590,"readingMinutes":258,"category":585,"project":593,"tags":995,"draft":588,"series":595,"seriesOrder":247},"\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",[598,599,996],"performance",{"path":998,"title":999,"description":1000,"date":1001,"author":6,"image":1002,"readingMinutes":253,"category":634,"project":635,"tags":1003,"draft":588,"series":590,"seriesOrder":590},"\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",[638,637,639],{"path":1005,"title":1006,"description":1007,"date":1008,"author":798,"image":1009,"readingMinutes":247,"category":609,"project":1010,"tags":1011,"draft":588,"series":590,"seriesOrder":590},"\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",[614,1012,751,952],"content",{"path":1014,"title":1015,"description":1016,"date":834,"author":6,"image":1017,"readingMinutes":162,"category":634,"project":635,"tags":1018,"draft":588,"series":590,"seriesOrder":590},"\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",[637,638,614,952],{"path":1020,"title":1021,"description":1022,"date":1008,"author":798,"image":1023,"readingMinutes":120,"category":609,"project":1010,"tags":1024,"draft":588,"series":590,"seriesOrder":590},"\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",[1025,612,952,1026],"workflow","accessibility",{"path":1028,"title":1029,"description":1030,"date":1031,"author":6,"image":590,"readingMinutes":247,"category":634,"project":610,"tags":1032,"draft":588,"series":829,"seriesOrder":85},"\u002Fblog\u002Ftwenty-six-more-tests-four-fewer-behaviours","Twenty Six More Tests, Four Fewer Behaviours","Removing the mocks grew the suite from 44 tests to 70 and quietly deleted four behaviours, every one of them a failure path. Test count is not coverage.","2026-08-28T09:00:00.000Z",[638,637,768,828],{"path":1034,"title":1035,"description":1036,"date":1037,"author":6,"image":1038,"readingMinutes":253,"category":585,"project":610,"tags":1039,"draft":588,"series":590,"seriesOrder":590},"\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",[599,654,1040],"observability",{"path":1042,"title":1043,"description":1044,"date":1045,"author":6,"image":590,"readingMinutes":253,"category":634,"project":610,"tags":1046,"draft":588,"series":590,"seriesOrder":590},"\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",[1026,638,728,614],{"path":1048,"title":1049,"description":1050,"date":1051,"author":6,"image":1052,"readingMinutes":92,"category":714,"project":610,"tags":1053,"draft":588,"series":590,"seriesOrder":590},"\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",[728,1054,1055],"validation","typescript",{"path":1057,"title":1058,"description":1059,"date":1060,"author":6,"image":1061,"readingMinutes":247,"category":585,"project":610,"tags":1062,"draft":588,"series":590,"seriesOrder":590},"\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",[613,599,653],{"path":1064,"title":1065,"description":1066,"date":1067,"author":6,"image":590,"readingMinutes":253,"category":585,"project":593,"tags":1068,"draft":588,"series":595,"seriesOrder":253},"\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",[627,599,1069],"analytics",{"path":1071,"title":1072,"description":1073,"date":1074,"author":6,"image":1075,"readingMinutes":247,"category":585,"project":715,"tags":1076,"draft":588,"series":590,"seriesOrder":590},"\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",[777,1077,637,720],"failure-modes",{"path":592,"title":5,"description":587,"date":586,"author":6,"image":590,"readingMinutes":247,"category":585,"project":593,"tags":1079,"draft":588,"series":595,"seriesOrder":120},[598,599,600],{"path":1081,"title":1082,"description":1083,"date":1084,"author":6,"image":590,"readingMinutes":247,"category":634,"project":610,"tags":1085,"draft":588,"series":829,"seriesOrder":92},"\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",[638,637,768,828],{"path":1087,"title":1088,"description":1089,"date":1090,"author":6,"image":590,"readingMinutes":253,"category":585,"project":593,"tags":1091,"draft":588,"series":595,"seriesOrder":258},"\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",[627,599,1069],{"path":1093,"title":1094,"description":1095,"date":1096,"author":6,"image":1097,"readingMinutes":120,"category":714,"project":590,"tags":590,"draft":588,"series":590,"seriesOrder":590},"\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",1787861097139]