[{"data":1,"prerenderedAt":1070},["ShallowReactive",2],{"post-\u002Fblog\u002Fone-address-per-page":3,"blog-all":575},{"id":4,"title":5,"author":6,"body":7,"category":557,"date":558,"description":559,"draft":560,"extension":561,"image":562,"meta":563,"navigation":305,"path":564,"project":565,"readingMinutes":189,"seo":566,"series":567,"seriesOrder":86,"stem":568,"tags":569,"__hash__":574},"blog\u002Fblog\u002Fone-address-per-page.md","One Address per Page","EkoHacks Team",{"type":8,"value":9,"toc":551},"minimark",[10,14,19,38,41,52,56,59,62,193,202,205,273,276,465,468,472,475,483,486,489,495,498,501,507,525,531,534,538,541,544,547],[11,12,13],"p",{},"The previous post ended with a number: sixty of our sixty two addresses answered with a redirect before they answered with a page. This post is the change that made it zero, and the check that will tell us if it ever stops being zero.",[15,16,18],"h2",{"id":17},"the-shape-of-the-defect","The shape of the defect",[11,20,21,22,26,27,30,31,34,35,37],{},"Our build writes each page to a file. Until today it wrote ",[23,24,25],"code",{},"story\u002Findex.html",", a folder with an index inside. Our host, seeing a folder, treats the folder's address as the real one, which ends in a slash, and answers a request for ",[23,28,29],{},"\u002Fstory"," with a 301 to ",[23,32,33],{},"\u002Fstory\u002F",". Every link we have ever written points at ",[23,36,29],{},". So a reader who clicks the navigation gets a redirect, then the page. A crawler that follows the same link gets a redirect, then a page that does not say which of its two addresses is the one to keep.",[11,39,40],{},"Written out, that is three separate faults wearing one symptom.",[11,42,43,44,47,48,51],{},"The build produced a file shape the host interprets differently from how we link. No page declared a canonical address, so the host's preference and our links disagreed with nothing to settle it. And two old addresses from before the site moved, ",[23,45,46],{},"\u002Fprivacy-policy"," and ",[23,49,50],{},"\u002Fterms-of-service",", had been given redirect rules that never fired, because the build had also written an HTML file at each old address, a meta refresh stub, and a static file wins over a redirect rule on our host. So an old link to the privacy policy went to a redirect, then a stub page, then to the policy, and a search engine recorded a 200 at an address that should have said 301.",[15,53,55],{"id":54},"the-change","The change",[11,57,58],{},"Three edits in one commit, because they are one fix.",[11,60,61],{},"First, tell the prerenderer to write flat files:",[63,64,69],"pre",{"className":65,"code":66,"language":67,"meta":68,"style":68},"language-ts shiki shiki-themes github-dark","prerender: {\n  autoSubfolderIndex: false,\n  crawlLinks: true,\n  routes: ['\u002F', '\u002Fblog', '\u002Fcurriculum', '\u002Fedtech-accelerator', ...blogRoutes],\n  ignore: ['\u002Fstyleguide', '\u002Fprivacy-policy', '\u002Fterms-of-service'],\n  failOnError: false,\n},\n","ts","",[23,70,71,84,100,113,151,175,187],{"__ignoreMap":68},[72,73,76,80],"span",{"class":74,"line":75},"line",1,[72,77,79],{"class":78},"svObZ","prerender",[72,81,83],{"class":82},"s95oV",": {\n",[72,85,87,90,93,97],{"class":74,"line":86},2,[72,88,89],{"class":78},"  autoSubfolderIndex",[72,91,92],{"class":82},": ",[72,94,96],{"class":95},"sDLfK","false",[72,98,99],{"class":82},",\n",[72,101,103,106,108,111],{"class":74,"line":102},3,[72,104,105],{"class":78},"  crawlLinks",[72,107,92],{"class":82},[72,109,110],{"class":95},"true",[72,112,99],{"class":82},[72,114,116,119,122,126,129,132,134,137,139,142,144,148],{"class":74,"line":115},4,[72,117,118],{"class":78},"  routes",[72,120,121],{"class":82},": [",[72,123,125],{"class":124},"sU2Wk","'\u002F'",[72,127,128],{"class":82},", ",[72,130,131],{"class":124},"'\u002Fblog'",[72,133,128],{"class":82},[72,135,136],{"class":124},"'\u002Fcurriculum'",[72,138,128],{"class":82},[72,140,141],{"class":124},"'\u002Fedtech-accelerator'",[72,143,128],{"class":82},[72,145,147],{"class":146},"snl16","...",[72,149,150],{"class":82},"blogRoutes],\n",[72,152,154,157,159,162,164,167,169,172],{"class":74,"line":153},5,[72,155,156],{"class":78},"  ignore",[72,158,121],{"class":82},[72,160,161],{"class":124},"'\u002Fstyleguide'",[72,163,128],{"class":82},[72,165,166],{"class":124},"'\u002Fprivacy-policy'",[72,168,128],{"class":82},[72,170,171],{"class":124},"'\u002Fterms-of-service'",[72,173,174],{"class":82},"],\n",[72,176,178,181,183,185],{"class":74,"line":177},6,[72,179,180],{"class":78},"  failOnError",[72,182,92],{"class":82},[72,184,96],{"class":95},[72,186,99],{"class":82},[72,188,190],{"class":74,"line":189},7,[72,191,192],{"class":82},"},\n",[11,194,195,197,198,201],{},[23,196,25],{}," becomes ",[23,199,200],{},"story.html",". The host serves a flat file at the address without the slash and, it turns out, normalises the slash form back to it with a 301. The same option, reversed, reverses which address the host prefers. The two old legal addresses join the ignore list so the build stops writing a stub where a redirect rule should be the only thing there.",[11,203,204],{},"Second, make the old addresses move permanently. The framework's default for a redirect rule is a 307, which the host's adapter writes as a temporary 302. A page that moved a year ago is not temporarily elsewhere:",[63,206,208],{"className":65,"code":207,"language":67,"meta":68,"style":68},"routeRules: {\n  \"\u002Fposts\u002F**\": { redirect: { to: \"\u002Fblog\u002F**\", statusCode: 301 } },\n  \"\u002Fterms-of-service\": { redirect: { to: \"\u002Flegal\u002Fterms-of-service\", statusCode: 301 } },\n  \"\u002Fprivacy-policy\": { redirect: { to: \"\u002Flegal\u002Fprivacy-policy\", statusCode: 301 } },\n},\n",[23,209,210,217,237,253,269],{"__ignoreMap":68},[72,211,212,215],{"class":74,"line":75},[72,213,214],{"class":78},"routeRules",[72,216,83],{"class":82},[72,218,219,222,225,228,231,234],{"class":74,"line":86},[72,220,221],{"class":124},"  \"\u002Fposts\u002F**\"",[72,223,224],{"class":82},": { redirect: { to: ",[72,226,227],{"class":124},"\"\u002Fblog\u002F**\"",[72,229,230],{"class":82},", statusCode: ",[72,232,233],{"class":95},"301",[72,235,236],{"class":82}," } },\n",[72,238,239,242,244,247,249,251],{"class":74,"line":102},[72,240,241],{"class":124},"  \"\u002Fterms-of-service\"",[72,243,224],{"class":82},[72,245,246],{"class":124},"\"\u002Flegal\u002Fterms-of-service\"",[72,248,230],{"class":82},[72,250,233],{"class":95},[72,252,236],{"class":82},[72,254,255,258,260,263,265,267],{"class":74,"line":115},[72,256,257],{"class":124},"  \"\u002Fprivacy-policy\"",[72,259,224],{"class":82},[72,261,262],{"class":124},"\"\u002Flegal\u002Fprivacy-policy\"",[72,264,230],{"class":82},[72,266,233],{"class":95},[72,268,236],{"class":82},[72,270,271],{"class":74,"line":153},[72,272,192],{"class":82},[11,274,275],{},"Third, let every page say its own address. We have one composable that every page calls for its title and description, so the canonical tag went there, derived from the route, with no trailing slash and the production origin even on a preview:",[63,277,279],{"className":65,"code":278,"language":67,"meta":68,"style":68},"export const SITE_URL = \"https:\u002F\u002Fekohacks.com\";\n\nexport function canonicalUrl(path: string) {\n  const trimmed = path.length > 1 ? path.replace(\u002F\\\u002F+$\u002F, \"\") : \"\u002F\";\n  return trimmed === \"\u002F\" ? `${SITE_URL}\u002F` : `${SITE_URL}${trimmed}`;\n}\n\n\u002F\u002F inside useSiteMetadata\nuseHead({ link: [{ rel: \"canonical\", href: canonical }] });\n",[23,280,281,301,307,333,392,434,439,443,450],{"__ignoreMap":68},[72,282,283,286,289,292,295,298],{"class":74,"line":75},[72,284,285],{"class":146},"export",[72,287,288],{"class":146}," const",[72,290,291],{"class":95}," SITE_URL",[72,293,294],{"class":146}," =",[72,296,297],{"class":124}," \"https:\u002F\u002Fekohacks.com\"",[72,299,300],{"class":82},";\n",[72,302,303],{"class":74,"line":86},[72,304,306],{"emptyLinePlaceholder":305},true,"\n",[72,308,309,311,314,317,320,324,327,330],{"class":74,"line":102},[72,310,285],{"class":146},[72,312,313],{"class":146}," function",[72,315,316],{"class":78}," canonicalUrl",[72,318,319],{"class":82},"(",[72,321,323],{"class":322},"s9osk","path",[72,325,326],{"class":146},":",[72,328,329],{"class":95}," string",[72,331,332],{"class":82},") {\n",[72,334,335,338,341,343,346,349,352,355,358,360,363,365,368,372,375,377,379,382,385,387,390],{"class":74,"line":115},[72,336,337],{"class":146},"  const",[72,339,340],{"class":95}," trimmed",[72,342,294],{"class":146},[72,344,345],{"class":82}," path.",[72,347,348],{"class":95},"length",[72,350,351],{"class":146}," >",[72,353,354],{"class":95}," 1",[72,356,357],{"class":146}," ?",[72,359,345],{"class":82},[72,361,362],{"class":78},"replace",[72,364,319],{"class":82},[72,366,367],{"class":124},"\u002F",[72,369,371],{"class":370},"sRjNt","\\\u002F",[72,373,374],{"class":146},"+$",[72,376,367],{"class":124},[72,378,128],{"class":82},[72,380,381],{"class":124},"\"\"",[72,383,384],{"class":82},") ",[72,386,326],{"class":146},[72,388,389],{"class":124}," \"\u002F\"",[72,391,300],{"class":82},[72,393,394,397,400,403,405,407,410,413,416,419,421,423,426,429,432],{"class":74,"line":153},[72,395,396],{"class":146},"  return",[72,398,399],{"class":82}," trimmed ",[72,401,402],{"class":146},"===",[72,404,389],{"class":124},[72,406,357],{"class":146},[72,408,409],{"class":124}," `${",[72,411,412],{"class":95},"SITE_URL",[72,414,415],{"class":124},"}\u002F`",[72,417,418],{"class":146}," :",[72,420,409],{"class":124},[72,422,412],{"class":95},[72,424,425],{"class":124},"}${",[72,427,428],{"class":82},"trimmed",[72,430,431],{"class":124},"}`",[72,433,300],{"class":82},[72,435,436],{"class":74,"line":177},[72,437,438],{"class":82},"}\n",[72,440,441],{"class":74,"line":189},[72,442,306],{"emptyLinePlaceholder":305},[72,444,446],{"class":74,"line":445},8,[72,447,449],{"class":448},"sAwPA","\u002F\u002F inside useSiteMetadata\n",[72,451,453,456,459,462],{"class":74,"line":452},9,[72,454,455],{"class":78},"useHead",[72,457,458],{"class":82},"({ link: [{ rel: ",[72,460,461],{"class":124},"\"canonical\"",[72,463,464],{"class":82},", href: canonical }] });\n",[11,466,467],{},"A canonical tag is the page stating which address it considers itself to be. With one form served and the other redirecting to it, the tag is redundant, which is the point: the server, the links and the page now agree, and if any one of them drifts the other two still say the same thing.",[15,469,471],{"id":470},"the-check","The check",[11,473,474],{},"A fix you cannot run again is a fix you will lose. The host's behaviour is not something a unit test can see, so the check runs against the live site:",[63,476,481],{"className":477,"code":479,"language":480},[478],"language-text","npm run check:live\n","text",[23,482,479],{"__ignoreMap":68},[11,484,485],{},"It reads the route list the same way the build does, from the page files and the content folder, so there is no second list to maintain. For every route it asks the site once, with redirects disabled, and fails if the answer is anything other than 200, if the page has no canonical tag, or if the canonical tag names a different address. Then it asks the three old addresses and fails unless each answers 301 to its new home.",[11,487,488],{},"Run against production on the morning of the twenty second of August, before the change:",[63,490,493],{"className":491,"code":492,"language":480},[478],"https:\u002F\u002Fekohacks.com: 67 addresses checked, 67 wrong\n  \u002Fblog answered 301 -> \u002Fblog\u002F\n  \u002Fcontact answered 301 -> \u002Fcontact\u002F\n  \u002F has no canonical tag\n  ...\n",[23,494,492],{"__ignoreMap":68},[11,496,497],{},"Sixty seven of sixty seven. Sixty redirect hops, the home page and six posts that answered 200 but declared no canonical, and the three old addresses answering with the wrong status.",[11,499,500],{},"We did not push that commit on the strength of reasoning about the host. We built it, deployed the build to a throwaway preview address on the same host, and ran the check against the preview:",[63,502,505],{"className":503,"code":504,"language":480},[478],"https:\u002F\u002F6a89a306b14d3a488057413b--ekohack.netlify.app: 67 addresses checked, 0 wrong\n",[23,506,504],{"__ignoreMap":68},[11,508,509,511,512,514,515,517,518,520,521,524],{},[23,510,29],{}," answered 200. ",[23,513,33],{}," answered 301 to ",[23,516,29],{},". ",[23,519,46],{}," answered 301 straight to ",[23,522,523],{},"\u002Flegal\u002Fprivacy-policy",". Only then did it go to production, where the same command found one thing wrong:",[63,526,529],{"className":527,"code":528,"language":480},[478],"https:\u002F\u002Fekohacks.com: 67 addresses checked, 1 wrong\n  \u002Fblog\u002Ftwo-hands-on-one-lever answered 404\n",[23,530,528],{"__ignoreMap":68},[11,532,533],{},"That is a post sitting in the repository, written and not yet committed, so the build never produced it, so it does not exist. The previous post's lesson, caught by the check on its first day. It will answer 200 when it ships, and until then the check is right to complain.",[15,535,537],{"id":536},"what-this-does-not-do-yet","What this does not do yet",[11,539,540],{},"Google still holds eighteen of our posts under the address with the slash. Those addresses now answer 301, which is the correct signal, and the index will follow it at its own pace, weeks rather than hours. We ran the inspection again after the deploy and, as expected, nothing had moved: the index reports what it last crawled, and it has not been back yet. We will report when it has, and if a page drops out of the index while it reads us again, that goes in the report too.",[11,542,543],{},"It also does not help the thirty six routes Google has never seen, because a page that answers perfectly to a request nobody makes is still unknown. That needs a list of everything that exists, handed to the crawler, which is the next post.",[11,545,546],{},"The number for today: sixty seven addresses checked on production, sixty redirect hops gone, one page that does not exist yet.",[548,549,550],"style",{},"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 .sDLfK, html code.shiki .sDLfK{--shiki-default:#79B8FF}html pre.shiki code .sU2Wk, html code.shiki .sU2Wk{--shiki-default:#9ECBFF}html pre.shiki code .snl16, html code.shiki .snl16{--shiki-default:#F97583}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 .s9osk, html code.shiki .s9osk{--shiki-default:#FFAB70}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}",{"title":68,"searchDepth":86,"depth":86,"links":552},[553,554,555,556],{"id":17,"depth":86,"text":18},{"id":54,"depth":86,"text":55},{"id":470,"depth":86,"text":471},{"id":536,"depth":86,"text":537},"Shipping and Operations","2026-08-22T18:30:00.000Z","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.",false,"md",null,{},"\u002Fblog\u002Fone-address-per-page","ekohacks.com",{"title":5,"description":559},"From Invisible to Findable","blog\u002Fone-address-per-page",[570,571,572,573],"seo","operations","nuxt","netlify","zJoI9bNoR8CTvlNoBvXwStG_ST4T4y9CPf97fgSJt40",[576,588,594,601,613,619,628,635,642,651,658,667,674,676,689,698,705,712,721,729,737,747,754,762,769,775,781,790,798,808,816,823,833,841,847,857,866,874,882,890,898,905,913,921,928,934,941,950,958,965,972,981,987,995,1001,1009,1015,1024,1031,1038,1046,1052,1058,1064],{"path":577,"title":578,"description":579,"date":580,"author":6,"image":581,"readingMinutes":177,"category":582,"project":583,"tags":584,"draft":560,"series":562,"seriesOrder":562},"\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",[585,586,587],"git","continuous-integration","craft",{"path":589,"title":590,"description":591,"date":592,"author":6,"image":562,"readingMinutes":189,"category":557,"project":565,"tags":593,"draft":560,"series":567,"seriesOrder":102},"\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",[570,571,572],{"path":595,"title":596,"description":597,"date":598,"author":6,"image":562,"readingMinutes":177,"category":557,"project":565,"tags":599,"draft":560,"series":567,"seriesOrder":452},"\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",[600,571,572],"privacy",{"path":602,"title":603,"description":604,"date":605,"author":6,"image":606,"readingMinutes":189,"category":607,"project":608,"tags":609,"draft":560,"series":562,"seriesOrder":562},"\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",[610,611,612],"nullables","testing","websocket",{"path":614,"title":615,"description":616,"date":617,"author":6,"image":618,"readingMinutes":115,"category":582,"project":562,"tags":562,"draft":560,"series":562,"seriesOrder":562},"\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":620,"title":621,"description":622,"date":623,"author":6,"image":624,"readingMinutes":115,"category":557,"project":583,"tags":625,"draft":560,"series":562,"seriesOrder":562},"\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",[571,626,627],"deployment","idempotency",{"path":629,"title":630,"description":631,"date":632,"author":633,"image":634,"readingMinutes":177,"category":557,"project":562,"tags":562,"draft":560,"series":562,"seriesOrder":562},"\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":636,"title":637,"description":638,"date":639,"author":6,"image":562,"readingMinutes":189,"category":557,"project":565,"tags":640,"draft":560,"series":567,"seriesOrder":641},"\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",[570,571,587],0,{"path":643,"title":644,"description":645,"date":646,"author":6,"image":647,"readingMinutes":115,"category":582,"project":583,"tags":648,"draft":560,"series":562,"seriesOrder":562},"\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",[587,649,650],"fastify","security",{"path":652,"title":653,"description":654,"date":655,"author":6,"image":656,"readingMinutes":153,"category":557,"project":583,"tags":657,"draft":560,"series":562,"seriesOrder":562},"\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",[585,586,571],{"path":659,"title":660,"description":661,"date":662,"author":6,"image":663,"readingMinutes":115,"category":582,"project":583,"tags":664,"draft":560,"series":562,"seriesOrder":562},"\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",[587,665,666],"documentation","ai-agents",{"path":668,"title":669,"description":670,"date":671,"author":6,"image":672,"readingMinutes":177,"category":557,"project":583,"tags":673,"draft":560,"series":562,"seriesOrder":562},"\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",[586,571,611],{"path":564,"title":5,"description":559,"date":558,"author":6,"image":562,"readingMinutes":189,"category":557,"project":565,"tags":675,"draft":560,"series":567,"seriesOrder":86},[570,571,572,573],{"path":677,"title":678,"description":679,"date":680,"author":6,"image":681,"readingMinutes":115,"category":682,"project":683,"tags":684,"draft":560,"series":562,"seriesOrder":562},"\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",[685,686,687,688],"composition","cli-design","narration","encoding-the-release",{"path":690,"title":691,"description":692,"date":693,"author":6,"image":694,"readingMinutes":189,"category":682,"project":608,"tags":695,"draft":560,"series":562,"seriesOrder":562},"\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",[696,610,697],"design","error handling",{"path":699,"title":700,"description":701,"date":702,"author":6,"image":703,"readingMinutes":177,"category":557,"project":583,"tags":704,"draft":560,"series":562,"seriesOrder":562},"\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",[586,626,571],{"path":706,"title":707,"description":708,"date":709,"author":6,"image":710,"readingMinutes":177,"category":582,"project":583,"tags":711,"draft":560,"series":562,"seriesOrder":562},"\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",[585,586,587],{"path":713,"title":714,"description":715,"date":716,"author":6,"image":717,"readingMinutes":102,"category":682,"project":583,"tags":718,"draft":560,"series":562,"seriesOrder":562},"\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",[696,719,720],"data","onboarding",{"path":722,"title":723,"description":724,"date":725,"author":6,"image":562,"readingMinutes":177,"category":607,"project":683,"tags":726,"draft":560,"series":562,"seriesOrder":562},"\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",[727,610,686,728],"user-testing","linear",{"path":730,"title":731,"description":732,"date":733,"author":6,"image":734,"readingMinutes":153,"category":607,"project":583,"tags":735,"draft":560,"series":562,"seriesOrder":562},"\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",[611,610,736],"mocks",{"path":738,"title":739,"description":740,"date":741,"author":6,"image":742,"readingMinutes":115,"category":557,"project":683,"tags":743,"draft":560,"series":562,"seriesOrder":562},"\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",[744,745,746,688],"automation","releasing","process",{"path":748,"title":749,"description":750,"date":716,"author":6,"image":751,"readingMinutes":102,"category":557,"project":583,"tags":752,"draft":560,"series":562,"seriesOrder":562},"\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",[571,627,753],"webhooks",{"path":755,"title":756,"description":757,"date":758,"author":6,"image":562,"readingMinutes":177,"category":557,"project":583,"tags":759,"draft":560,"series":562,"seriesOrder":562},"\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",[760,761,685,571],"shell","provisioning",{"path":763,"title":764,"description":765,"date":562,"author":766,"image":767,"readingMinutes":75,"category":682,"project":768,"tags":562,"draft":560,"series":562,"seriesOrder":562},"\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":770,"title":771,"description":772,"date":773,"author":6,"image":562,"readingMinutes":189,"category":607,"project":565,"tags":774,"draft":560,"series":567,"seriesOrder":153},"\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",[570,611,572],{"path":776,"title":777,"description":778,"date":779,"author":6,"image":780,"readingMinutes":86,"category":607,"project":562,"tags":562,"draft":560,"series":562,"seriesOrder":562},"\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":782,"title":783,"description":784,"date":785,"author":6,"image":786,"readingMinutes":153,"category":607,"project":683,"tags":787,"draft":560,"series":562,"seriesOrder":562},"\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",[610,788,789,688],"testing-without-mocks","james-shore",{"path":791,"title":792,"description":793,"date":794,"author":6,"image":562,"readingMinutes":177,"category":607,"project":583,"tags":795,"draft":560,"series":797,"seriesOrder":75},"\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",[611,610,736,796],"coverage","What Mocks Cost",{"path":799,"title":800,"description":801,"date":802,"author":6,"image":803,"readingMinutes":153,"category":682,"project":608,"tags":804,"draft":560,"series":562,"seriesOrder":562},"\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",[805,806,611,807],"protocol","pubsub","tdd",{"path":809,"title":810,"description":811,"date":812,"author":6,"image":813,"readingMinutes":177,"category":607,"project":608,"tags":814,"draft":560,"series":562,"seriesOrder":562},"\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",[610,611,815],"refactoring",{"path":817,"title":818,"description":819,"date":820,"author":6,"image":821,"readingMinutes":153,"category":582,"project":583,"tags":822,"draft":560,"series":562,"seriesOrder":562},"\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",[585,586,587],{"path":824,"title":825,"description":826,"date":827,"author":6,"image":828,"readingMinutes":445,"category":557,"project":583,"tags":829,"draft":560,"series":562,"seriesOrder":562},"\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",[571,830,831,832],"debugging","european-tech","community",{"path":834,"title":835,"description":836,"date":837,"author":6,"image":838,"readingMinutes":177,"category":682,"project":608,"tags":839,"draft":560,"series":562,"seriesOrder":562},"\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",[696,807,840],"continuous integration",{"path":842,"title":843,"description":844,"date":845,"author":6,"image":846,"readingMinutes":115,"category":582,"project":562,"tags":562,"draft":560,"series":562,"seriesOrder":562},"\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":848,"title":849,"description":850,"date":851,"author":6,"image":852,"readingMinutes":189,"category":582,"project":583,"tags":853,"draft":560,"series":562,"seriesOrder":562},"\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",[854,855,856,728],"graphql","stories","xp",{"path":858,"title":859,"description":860,"date":861,"author":6,"image":862,"readingMinutes":153,"category":607,"project":683,"tags":863,"draft":560,"series":562,"seriesOrder":562},"\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",[807,864,865,688],"red-first","code-review",{"path":867,"title":868,"description":869,"date":870,"author":6,"image":871,"readingMinutes":153,"category":557,"project":683,"tags":872,"draft":560,"series":562,"seriesOrder":562},"\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",[745,873,585,688],"preflight",{"path":875,"title":876,"description":877,"date":878,"author":6,"image":879,"readingMinutes":153,"category":557,"project":608,"tags":880,"draft":560,"series":562,"seriesOrder":562},"\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",[881,610,611],"shutdown",{"path":883,"title":884,"description":885,"date":886,"author":6,"image":887,"readingMinutes":177,"category":557,"project":608,"tags":888,"draft":560,"series":562,"seriesOrder":562},"\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",[889,611,587],"packaging",{"path":891,"title":892,"description":893,"date":894,"author":6,"image":895,"readingMinutes":115,"category":682,"project":683,"tags":896,"draft":560,"series":562,"seriesOrder":562},"\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",[744,897,696,688],"human-in-the-loop",{"path":899,"title":900,"description":901,"date":902,"author":6,"image":903,"readingMinutes":177,"category":557,"project":583,"tags":904,"draft":560,"series":562,"seriesOrder":562},"\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",[586,571,587],{"path":906,"title":907,"description":908,"date":909,"author":6,"image":910,"readingMinutes":177,"category":557,"project":608,"tags":911,"draft":560,"series":562,"seriesOrder":562},"\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",[881,571,912],"signals",{"path":914,"title":915,"description":916,"date":917,"author":6,"image":918,"readingMinutes":445,"category":582,"project":608,"tags":919,"draft":560,"series":562,"seriesOrder":562},"\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",[865,815,920,611],"teaching",{"path":922,"title":923,"description":924,"date":925,"author":6,"image":926,"readingMinutes":177,"category":682,"project":608,"tags":927,"draft":560,"series":562,"seriesOrder":562},"\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",[696,806,610],{"path":929,"title":930,"description":931,"date":932,"author":6,"image":562,"readingMinutes":189,"category":557,"project":565,"tags":933,"draft":560,"series":567,"seriesOrder":75},"\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",[570,571,572],{"path":935,"title":936,"description":937,"date":938,"author":6,"image":939,"readingMinutes":445,"category":557,"project":583,"tags":940,"draft":560,"series":562,"seriesOrder":562},"\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",[571,830,831,832],{"path":942,"title":943,"description":944,"date":945,"author":6,"image":946,"readingMinutes":115,"category":582,"project":683,"tags":947,"draft":305,"series":562,"seriesOrder":562},"\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",[745,948,949,688],"dogfooding","acceptance-testing",{"path":951,"title":952,"description":953,"date":954,"author":6,"image":955,"readingMinutes":189,"category":607,"project":608,"tags":956,"draft":560,"series":562,"seriesOrder":562},"\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",[611,610,957],"scriptrunner",{"path":959,"title":960,"description":961,"date":962,"author":6,"image":562,"readingMinutes":445,"category":557,"project":565,"tags":963,"draft":560,"series":567,"seriesOrder":177},"\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",[570,571,964],"performance",{"path":966,"title":967,"description":968,"date":969,"author":6,"image":970,"readingMinutes":189,"category":607,"project":608,"tags":971,"draft":560,"series":562,"seriesOrder":562},"\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",[611,610,612],{"path":973,"title":974,"description":975,"date":976,"author":766,"image":977,"readingMinutes":177,"category":582,"project":978,"tags":979,"draft":560,"series":562,"seriesOrder":562},"\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",[587,980,719,920],"content",{"path":982,"title":983,"description":984,"date":802,"author":6,"image":985,"readingMinutes":153,"category":607,"project":608,"tags":986,"draft":560,"series":562,"seriesOrder":562},"\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",[610,611,587,920],{"path":988,"title":989,"description":990,"date":976,"author":766,"image":991,"readingMinutes":115,"category":582,"project":978,"tags":992,"draft":560,"series":562,"seriesOrder":562},"\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",[993,585,920,994],"workflow","accessibility",{"path":996,"title":997,"description":998,"date":999,"author":6,"image":562,"readingMinutes":177,"category":607,"project":583,"tags":1000,"draft":560,"series":797,"seriesOrder":86},"\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",[611,610,736,796],{"path":1002,"title":1003,"description":1004,"date":1005,"author":6,"image":1006,"readingMinutes":189,"category":557,"project":583,"tags":1007,"draft":560,"series":562,"seriesOrder":562},"\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",[571,627,1008],"observability",{"path":1010,"title":1011,"description":1012,"date":1013,"author":6,"image":562,"readingMinutes":189,"category":607,"project":583,"tags":1014,"draft":560,"series":562,"seriesOrder":562},"\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",[994,611,696,587],{"path":1016,"title":1017,"description":1018,"date":1019,"author":6,"image":1020,"readingMinutes":102,"category":682,"project":583,"tags":1021,"draft":560,"series":562,"seriesOrder":562},"\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",[696,1022,1023],"validation","typescript",{"path":1025,"title":1026,"description":1027,"date":1028,"author":6,"image":1029,"readingMinutes":177,"category":557,"project":583,"tags":1030,"draft":560,"series":562,"seriesOrder":562},"\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",[586,571,626],{"path":1032,"title":1033,"description":1034,"date":1035,"author":6,"image":562,"readingMinutes":189,"category":557,"project":565,"tags":1036,"draft":560,"series":567,"seriesOrder":189},"\u002Fblog\u002Fwe-promised-not-to-watch-then-we-needed-to-see","We Promised Not to Watch. Then We Needed to See.","Our privacy policy said no analytics, and it was true. Adding a page counter meant reopening that promise in public: what we chose, what we refused, one commit.","2026-08-24T10:00:00.000Z",[600,571,1037],"analytics",{"path":1039,"title":1040,"description":1041,"date":1042,"author":6,"image":1043,"readingMinutes":177,"category":557,"project":683,"tags":1044,"draft":560,"series":562,"seriesOrder":562},"\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",[745,1045,610,688],"failure-modes",{"path":1047,"title":1048,"description":1049,"date":1050,"author":6,"image":562,"readingMinutes":177,"category":557,"project":565,"tags":1051,"draft":560,"series":567,"seriesOrder":115},"\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",[570,571,572],{"path":1053,"title":1054,"description":1055,"date":1056,"author":6,"image":562,"readingMinutes":177,"category":607,"project":583,"tags":1057,"draft":560,"series":797,"seriesOrder":102},"\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",[611,610,736,796],{"path":1059,"title":1060,"description":1061,"date":1062,"author":6,"image":562,"readingMinutes":189,"category":557,"project":565,"tags":1063,"draft":560,"series":567,"seriesOrder":445},"\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",[600,571,1037],{"path":1065,"title":1066,"description":1067,"date":1068,"author":6,"image":1069,"readingMinutes":115,"category":682,"project":562,"tags":562,"draft":560,"series":562,"seriesOrder":562},"\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",1787861096090]