[{"data":1,"prerenderedAt":829},["ShallowReactive",2],{"post-\u002Fblog\u002Ftelling-the-machine-what-the-page-is":3,"blog-all":333},{"id":4,"title":5,"author":6,"body":7,"category":315,"date":316,"description":317,"draft":318,"extension":319,"image":320,"meta":321,"navigation":322,"path":323,"project":324,"readingMinutes":114,"seo":325,"series":326,"seriesOrder":102,"stem":327,"tags":328,"__hash__":332},"blog\u002Fblog\u002Ftelling-the-machine-what-the-page-is.md","Telling the Machine What the Page Is","EkoHacks Team",{"type":8,"value":9,"toc":308},"minimark",[10,14,19,22,25,224,227,230,234,237,245,256,259,263,269,272,275,279,282,285,291,294,298,301,304],[11,12,13],"p",{},"Four posts into this series, every page has one address, a place on the map, and an image to travel with. What none of them had was a way to stay that way. Each fix so far was checked by a script we run against the live site after a deploy, which catches drift after it has shipped. This post moves the check earlier, to the one place drift cannot get past: the build.",[15,16,18],"h2",{"id":17},"two-jobs-one-commit","Two jobs, one commit",[11,20,21],{},"The first job is to say, in the vocabulary crawlers read, what each page is. A post is an Article with a headline, a date, an author, a publisher and an image. The home page belongs to an Organization with a name, a logo and its public accounts. This is a block of JSON in the head of the page, and it is the difference between a search engine guessing what a page is from its text and being told.",[11,23,24],{},"We put it in the same composable that already carries the title, description, canonical and image, because it is made of the same facts:",[26,27,32],"pre",{"className":28,"code":29,"language":30,"meta":31,"style":31},"language-ts shiki shiki-themes github-dark","export function articleData(post) {\n  return {\n    \"@context\": \"https:\u002F\u002Fschema.org\",\n    \"@type\": \"Article\",\n    headline: post.title,\n    description: post.description,\n    datePublished: post.date,\n    author: { \"@type\": \"Organization\", name: post.author || \"EkoHacks\" },\n    publisher: { \"@type\": \"Organization\", name: \"EkoHacks\", logo: { \"@type\": \"ImageObject\", url: `${SITE_URL}\u002Flogo.png` } },\n    image: absoluteImageUrl(post.image),\n    mainEntityOfPage: canonicalUrl(post.path),\n  };\n}\n","ts","",[33,34,35,62,71,87,100,106,112,118,144,188,200,212,218],"code",{"__ignoreMap":31},[36,37,40,44,47,51,55,59],"span",{"class":38,"line":39},"line",1,[36,41,43],{"class":42},"snl16","export",[36,45,46],{"class":42}," function",[36,48,50],{"class":49},"svObZ"," articleData",[36,52,54],{"class":53},"s95oV","(",[36,56,58],{"class":57},"s9osk","post",[36,60,61],{"class":53},") {\n",[36,63,65,68],{"class":38,"line":64},2,[36,66,67],{"class":42},"  return",[36,69,70],{"class":53}," {\n",[36,72,74,78,81,84],{"class":38,"line":73},3,[36,75,77],{"class":76},"sU2Wk","    \"@context\"",[36,79,80],{"class":53},": ",[36,82,83],{"class":76},"\"https:\u002F\u002Fschema.org\"",[36,85,86],{"class":53},",\n",[36,88,90,93,95,98],{"class":38,"line":89},4,[36,91,92],{"class":76},"    \"@type\"",[36,94,80],{"class":53},[36,96,97],{"class":76},"\"Article\"",[36,99,86],{"class":53},[36,101,103],{"class":38,"line":102},5,[36,104,105],{"class":53},"    headline: post.title,\n",[36,107,109],{"class":38,"line":108},6,[36,110,111],{"class":53},"    description: post.description,\n",[36,113,115],{"class":38,"line":114},7,[36,116,117],{"class":53},"    datePublished: post.date,\n",[36,119,121,124,127,129,132,135,138,141],{"class":38,"line":120},8,[36,122,123],{"class":53},"    author: { ",[36,125,126],{"class":76},"\"@type\"",[36,128,80],{"class":53},[36,130,131],{"class":76},"\"Organization\"",[36,133,134],{"class":53},", name: post.author ",[36,136,137],{"class":42},"||",[36,139,140],{"class":76}," \"EkoHacks\"",[36,142,143],{"class":53}," },\n",[36,145,147,150,152,154,156,159,162,165,167,169,172,175,178,182,185],{"class":38,"line":146},9,[36,148,149],{"class":53},"    publisher: { ",[36,151,126],{"class":76},[36,153,80],{"class":53},[36,155,131],{"class":76},[36,157,158],{"class":53},", name: ",[36,160,161],{"class":76},"\"EkoHacks\"",[36,163,164],{"class":53},", logo: { ",[36,166,126],{"class":76},[36,168,80],{"class":53},[36,170,171],{"class":76},"\"ImageObject\"",[36,173,174],{"class":53},", url: ",[36,176,177],{"class":76},"`${",[36,179,181],{"class":180},"sDLfK","SITE_URL",[36,183,184],{"class":76},"}\u002Flogo.png`",[36,186,187],{"class":53}," } },\n",[36,189,191,194,197],{"class":38,"line":190},10,[36,192,193],{"class":53},"    image: ",[36,195,196],{"class":49},"absoluteImageUrl",[36,198,199],{"class":53},"(post.image),\n",[36,201,203,206,209],{"class":38,"line":202},11,[36,204,205],{"class":53},"    mainEntityOfPage: ",[36,207,208],{"class":49},"canonicalUrl",[36,210,211],{"class":53},"(post.path),\n",[36,213,215],{"class":38,"line":214},12,[36,216,217],{"class":53},"  };\n",[36,219,221],{"class":38,"line":220},13,[36,222,223],{"class":53},"}\n",[11,225,226],{},"The post page hands its frontmatter to that function; the home page hands nothing and gets the Organization. No page describes itself twice. The headline in the structured data is the title in the tab is the title on the share card, because they are one value.",[11,228,229],{},"The second job is the test.",[15,231,233],{"id":232},"the-test-runs-after-the-build-and-it-can-fail-it","The test runs after the build, and it can fail it",[11,235,236],{},"The rules are the ones a careful person applies by reading the head of a page. We wrote them down once:",[26,238,243],{"className":239,"code":241,"language":242},[240],"language-text","title          present, 10 to 70 characters\ndescription    present, 50 to 160 characters\ncanonical      present, equal to the page's own address\nog:image       present, absolute, on the production origin\nh1             exactly one\nJSON-LD        every post carries an Article, the home page an Organization\n","text",[33,244,241],{"__ignoreMap":31},[11,246,247,248,251,252,255],{},"The script reads every HTML file the build wrote, applies the rules, prints each page that breaks one with the rule it broke, and exits non zero if there were any. It is wired as ",[33,249,250],{},"postbuild",", so ",[33,253,254],{},"npm run build"," runs it without anyone remembering to, on a laptop and on the host. A non zero exit on the host means the deploy does not happen and the previous one stays up. A page that fails the rules cannot reach production.",[11,257,258],{},"This is the series reframe applied to metadata. In test driven work, the failing test is the review: it states what must be true before the code exists, and its first run is supposed to be red. We knew it would be. Day zero had counted forty seven descriptions over 160 characters.",[15,260,262],{"id":261},"red","Red",[26,264,267],{"className":265,"code":266,"language":242},[240],"67 pages checked, 49 problems\n  \u002Fblog\u002Fa-branch-is-inventory: description is 267 characters\n  \u002Fblog\u002Fan-off-switch-not-a-disguise: description is 196 characters\n  ...\n  \u002Fblog\u002Fstage-then-transform-...: title is 87 characters\n  \u002Fblog\u002Fstage-then-transform-...: description is 354 characters\n  \u002Fblog\u002Fstage-then-transform-...: 2 h1 elements\n  ...\n  \u002Fcurriculum: description is 168 characters\n  \u002Fedtech-accelerator: description is 180 characters\n  \u002F: description is 238 characters\n",[33,268,266],{"__ignoreMap":31},[11,270,271],{},"Forty six descriptions too long, the longest at 414 characters, which a search engine cuts at roughly 160. One title of 87 characters. One post that repeated its title as a heading inside the body, so the page had two. And the home page, whose description had grown to 238 characters by accretion, one good phrase at a time.",[11,273,274],{},"That run is committed as it happened, red, with the test. The commit after it is the fix.",[15,276,278],{"id":277},"green","Green",[11,280,281],{},"Forty five post descriptions were rewritten. Each one kept the claim of the original and lost the second clause that was usually restating it; the longest is now 160 characters and the average across all posts is 155. The title became \"Stage, Then Transform: Crawlers Stay Out of Production\", the duplicated heading came out of the body, and the three page descriptions were cut to say one thing each.",[11,283,284],{},"Rewriting forty five descriptions by hand is the kind of work a test makes you do once. Without the test it would have been done never, because nothing made it urgent; with the test it was done in an afternoon, because the build would not go green until it was. Then:",[26,286,289],{"className":287,"code":288,"language":242},[240],"67 pages checked, 0 problems\n",[33,290,288],{"__ignoreMap":31},[11,292,293],{},"Structured data is in the head of every post and the home page, and the test parses it, so a typo in that JSON is a failed build rather than a silently ignored block.",[15,295,297],{"id":296},"what-the-check-does-not-know","What the check does not know",[11,299,300],{},"It does not know whether a description is any good, only whether it fits. It does not know whether the structured data is what a search engine wants, only that it is well formed and of the right type; the richer checks live in Google's own testing tool, which is run by hand, and which we have not run yet. When we do, the result goes in the measurement post. And it runs on what the build wrote, which is the right place for these rules and the wrong place for the ones about the live host, which stay in the after deploy check.",[11,302,303],{},"The number for today: forty nine problems on the first run, none on the second, and a build that will stay that way or stop.",[305,306,307],"style",{},"html pre.shiki code .snl16, html code.shiki .snl16{--shiki-default:#F97583}html pre.shiki code .svObZ, html code.shiki .svObZ{--shiki-default:#B392F0}html pre.shiki code .s95oV, html code.shiki .s95oV{--shiki-default:#E1E4E8}html pre.shiki code .s9osk, html code.shiki .s9osk{--shiki-default:#FFAB70}html pre.shiki code .sU2Wk, html code.shiki .sU2Wk{--shiki-default:#9ECBFF}html pre.shiki code .sDLfK, html code.shiki .sDLfK{--shiki-default:#79B8FF}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":31,"searchDepth":64,"depth":64,"links":309},[310,311,312,313,314],{"id":17,"depth":64,"text":18},{"id":232,"depth":64,"text":233},{"id":261,"depth":64,"text":262},{"id":277,"depth":64,"text":278},{"id":296,"depth":64,"text":297},"Testing and TDD","2026-08-22T23:30:00.000Z","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.",false,"md",null,{},true,"\u002Fblog\u002Ftelling-the-machine-what-the-page-is","ekohacks.com",{"title":5,"description":317},"From Invisible to Findable","blog\u002Ftelling-the-machine-what-the-page-is",[329,330,331],"seo","testing","nuxt","Ji7k1-qvb9Bgc3Oces2vhB3yKWpOarVr40FObL8vDYA",[334,346,354,361,371,377,386,393,400,409,416,425,432,439,452,461,468,475,484,492,500,510,517,525,532,534,540,549,557,567,575,582,592,600,606,616,625,633,641,649,657,664,672,680,687,693,700,709,717,724,731,740,746,754,760,768,774,783,790,797,805,811,817,823],{"path":335,"title":336,"description":337,"date":338,"author":6,"image":339,"readingMinutes":108,"category":340,"project":341,"tags":342,"draft":318,"series":320,"seriesOrder":320},"\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",[343,344,345],"git","continuous-integration","craft",{"path":347,"title":348,"description":349,"date":350,"author":6,"image":320,"readingMinutes":114,"category":351,"project":324,"tags":352,"draft":318,"series":326,"seriesOrder":73},"\u002Fblog\u002Fa-map-drawn-by-the-build","A Map Drawn by the Build","Thirty six of our pages had never been visited by Google because nothing said they existed. The sitemap is drawn from the build, and it found a draft.","2026-08-22T20:30:00.000Z","Shipping and Operations",[329,353,331],"operations",{"path":355,"title":356,"description":357,"date":358,"author":6,"image":320,"readingMinutes":108,"category":351,"project":324,"tags":359,"draft":318,"series":326,"seriesOrder":146},"\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",[360,353,331],"privacy",{"path":362,"title":363,"description":364,"date":365,"author":6,"image":366,"readingMinutes":114,"category":315,"project":367,"tags":368,"draft":318,"series":320,"seriesOrder":320},"\u002Fblog\u002Fan-off-switch-not-a-disguise","An Off Switch, Not a Disguise","A Nullable differs from a stub in whether production code can tell the fake is there. Finding the word fixed a socket wrapper that had been lying to its tests.","2026-07-20T09:05:00.000Z","\u002Fimages\u002Fblog\u002Fan-off-switch-not-a-disguise-hero.jpg","EkoLite",[369,330,370],"nullables","websocket",{"path":372,"title":373,"description":374,"date":375,"author":6,"image":376,"readingMinutes":89,"category":340,"project":320,"tags":320,"draft":318,"series":320,"seriesOrder":320},"\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":378,"title":379,"description":380,"date":381,"author":6,"image":382,"readingMinutes":89,"category":351,"project":341,"tags":383,"draft":318,"series":320,"seriesOrder":320},"\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",[353,384,385],"deployment","idempotency",{"path":387,"title":388,"description":389,"date":390,"author":391,"image":392,"readingMinutes":108,"category":351,"project":320,"tags":320,"draft":318,"series":320,"seriesOrder":320},"\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":394,"title":395,"description":396,"date":397,"author":6,"image":320,"readingMinutes":114,"category":351,"project":324,"tags":398,"draft":318,"series":326,"seriesOrder":399},"\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",[329,353,345],0,{"path":401,"title":402,"description":403,"date":404,"author":6,"image":405,"readingMinutes":89,"category":340,"project":341,"tags":406,"draft":318,"series":320,"seriesOrder":320},"\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",[345,407,408],"fastify","security",{"path":410,"title":411,"description":412,"date":413,"author":6,"image":414,"readingMinutes":102,"category":351,"project":341,"tags":415,"draft":318,"series":320,"seriesOrder":320},"\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",[343,344,353],{"path":417,"title":418,"description":419,"date":420,"author":6,"image":421,"readingMinutes":89,"category":340,"project":341,"tags":422,"draft":318,"series":320,"seriesOrder":320},"\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",[345,423,424],"documentation","ai-agents",{"path":426,"title":427,"description":428,"date":429,"author":6,"image":430,"readingMinutes":108,"category":351,"project":341,"tags":431,"draft":318,"series":320,"seriesOrder":320},"\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",[344,353,330],{"path":433,"title":434,"description":435,"date":436,"author":6,"image":320,"readingMinutes":114,"category":351,"project":324,"tags":437,"draft":318,"series":326,"seriesOrder":64},"\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",[329,353,331,438],"netlify",{"path":440,"title":441,"description":442,"date":443,"author":6,"image":444,"readingMinutes":89,"category":445,"project":446,"tags":447,"draft":318,"series":320,"seriesOrder":320},"\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",[448,449,450,451],"composition","cli-design","narration","encoding-the-release",{"path":453,"title":454,"description":455,"date":456,"author":6,"image":457,"readingMinutes":114,"category":445,"project":367,"tags":458,"draft":318,"series":320,"seriesOrder":320},"\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",[459,369,460],"design","error handling",{"path":462,"title":463,"description":464,"date":465,"author":6,"image":466,"readingMinutes":108,"category":351,"project":341,"tags":467,"draft":318,"series":320,"seriesOrder":320},"\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",[344,384,353],{"path":469,"title":470,"description":471,"date":472,"author":6,"image":473,"readingMinutes":108,"category":340,"project":341,"tags":474,"draft":318,"series":320,"seriesOrder":320},"\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",[343,344,345],{"path":476,"title":477,"description":478,"date":479,"author":6,"image":480,"readingMinutes":73,"category":445,"project":341,"tags":481,"draft":318,"series":320,"seriesOrder":320},"\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",[459,482,483],"data","onboarding",{"path":485,"title":486,"description":487,"date":488,"author":6,"image":320,"readingMinutes":108,"category":315,"project":446,"tags":489,"draft":318,"series":320,"seriesOrder":320},"\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",[490,369,449,491],"user-testing","linear",{"path":493,"title":494,"description":495,"date":496,"author":6,"image":497,"readingMinutes":102,"category":315,"project":341,"tags":498,"draft":318,"series":320,"seriesOrder":320},"\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",[330,369,499],"mocks",{"path":501,"title":502,"description":503,"date":504,"author":6,"image":505,"readingMinutes":89,"category":351,"project":446,"tags":506,"draft":318,"series":320,"seriesOrder":320},"\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",[507,508,509,451],"automation","releasing","process",{"path":511,"title":512,"description":513,"date":479,"author":6,"image":514,"readingMinutes":73,"category":351,"project":341,"tags":515,"draft":318,"series":320,"seriesOrder":320},"\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",[353,385,516],"webhooks",{"path":518,"title":519,"description":520,"date":521,"author":6,"image":320,"readingMinutes":108,"category":351,"project":341,"tags":522,"draft":318,"series":320,"seriesOrder":320},"\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",[523,524,448,353],"shell","provisioning",{"path":526,"title":527,"description":528,"date":320,"author":529,"image":530,"readingMinutes":39,"category":445,"project":531,"tags":320,"draft":318,"series":320,"seriesOrder":320},"\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":323,"title":5,"description":317,"date":316,"author":6,"image":320,"readingMinutes":114,"category":315,"project":324,"tags":533,"draft":318,"series":326,"seriesOrder":102},[329,330,331],{"path":535,"title":536,"description":537,"date":538,"author":6,"image":539,"readingMinutes":64,"category":315,"project":320,"tags":320,"draft":318,"series":320,"seriesOrder":320},"\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":541,"title":542,"description":543,"date":544,"author":6,"image":545,"readingMinutes":102,"category":315,"project":446,"tags":546,"draft":318,"series":320,"seriesOrder":320},"\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",[369,547,548,451],"testing-without-mocks","james-shore",{"path":550,"title":551,"description":552,"date":553,"author":6,"image":320,"readingMinutes":108,"category":315,"project":341,"tags":554,"draft":318,"series":556,"seriesOrder":39},"\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",[330,369,499,555],"coverage","What Mocks Cost",{"path":558,"title":559,"description":560,"date":561,"author":6,"image":562,"readingMinutes":102,"category":445,"project":367,"tags":563,"draft":318,"series":320,"seriesOrder":320},"\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",[564,565,330,566],"protocol","pubsub","tdd",{"path":568,"title":569,"description":570,"date":571,"author":6,"image":572,"readingMinutes":108,"category":315,"project":367,"tags":573,"draft":318,"series":320,"seriesOrder":320},"\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",[369,330,574],"refactoring",{"path":576,"title":577,"description":578,"date":579,"author":6,"image":580,"readingMinutes":102,"category":340,"project":341,"tags":581,"draft":318,"series":320,"seriesOrder":320},"\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",[343,344,345],{"path":583,"title":584,"description":585,"date":586,"author":6,"image":587,"readingMinutes":120,"category":351,"project":341,"tags":588,"draft":318,"series":320,"seriesOrder":320},"\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",[353,589,590,591],"debugging","european-tech","community",{"path":593,"title":594,"description":595,"date":596,"author":6,"image":597,"readingMinutes":108,"category":445,"project":367,"tags":598,"draft":318,"series":320,"seriesOrder":320},"\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",[459,566,599],"continuous integration",{"path":601,"title":602,"description":603,"date":604,"author":6,"image":605,"readingMinutes":89,"category":340,"project":320,"tags":320,"draft":318,"series":320,"seriesOrder":320},"\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":607,"title":608,"description":609,"date":610,"author":6,"image":611,"readingMinutes":114,"category":340,"project":341,"tags":612,"draft":318,"series":320,"seriesOrder":320},"\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",[613,614,615,491],"graphql","stories","xp",{"path":617,"title":618,"description":619,"date":620,"author":6,"image":621,"readingMinutes":102,"category":315,"project":446,"tags":622,"draft":318,"series":320,"seriesOrder":320},"\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",[566,623,624,451],"red-first","code-review",{"path":626,"title":627,"description":628,"date":629,"author":6,"image":630,"readingMinutes":102,"category":351,"project":446,"tags":631,"draft":318,"series":320,"seriesOrder":320},"\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",[508,632,343,451],"preflight",{"path":634,"title":635,"description":636,"date":637,"author":6,"image":638,"readingMinutes":102,"category":351,"project":367,"tags":639,"draft":318,"series":320,"seriesOrder":320},"\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",[640,369,330],"shutdown",{"path":642,"title":643,"description":644,"date":645,"author":6,"image":646,"readingMinutes":108,"category":351,"project":367,"tags":647,"draft":318,"series":320,"seriesOrder":320},"\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",[648,330,345],"packaging",{"path":650,"title":651,"description":652,"date":653,"author":6,"image":654,"readingMinutes":89,"category":445,"project":446,"tags":655,"draft":318,"series":320,"seriesOrder":320},"\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",[507,656,459,451],"human-in-the-loop",{"path":658,"title":659,"description":660,"date":661,"author":6,"image":662,"readingMinutes":108,"category":351,"project":341,"tags":663,"draft":318,"series":320,"seriesOrder":320},"\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",[344,353,345],{"path":665,"title":666,"description":667,"date":668,"author":6,"image":669,"readingMinutes":108,"category":351,"project":367,"tags":670,"draft":318,"series":320,"seriesOrder":320},"\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",[640,353,671],"signals",{"path":673,"title":674,"description":675,"date":676,"author":6,"image":677,"readingMinutes":120,"category":340,"project":367,"tags":678,"draft":318,"series":320,"seriesOrder":320},"\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",[624,574,679,330],"teaching",{"path":681,"title":682,"description":683,"date":684,"author":6,"image":685,"readingMinutes":108,"category":445,"project":367,"tags":686,"draft":318,"series":320,"seriesOrder":320},"\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",[459,565,369],{"path":688,"title":689,"description":690,"date":691,"author":6,"image":320,"readingMinutes":114,"category":351,"project":324,"tags":692,"draft":318,"series":326,"seriesOrder":39},"\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",[329,353,331],{"path":694,"title":695,"description":696,"date":697,"author":6,"image":698,"readingMinutes":120,"category":351,"project":341,"tags":699,"draft":318,"series":320,"seriesOrder":320},"\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",[353,589,590,591],{"path":701,"title":702,"description":703,"date":704,"author":6,"image":705,"readingMinutes":89,"category":340,"project":446,"tags":706,"draft":322,"series":320,"seriesOrder":320},"\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",[508,707,708,451],"dogfooding","acceptance-testing",{"path":710,"title":711,"description":712,"date":713,"author":6,"image":714,"readingMinutes":114,"category":315,"project":367,"tags":715,"draft":318,"series":320,"seriesOrder":320},"\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",[330,369,716],"scriptrunner",{"path":718,"title":719,"description":720,"date":721,"author":6,"image":320,"readingMinutes":120,"category":351,"project":324,"tags":722,"draft":318,"series":326,"seriesOrder":108},"\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",[329,353,723],"performance",{"path":725,"title":726,"description":727,"date":728,"author":6,"image":729,"readingMinutes":114,"category":315,"project":367,"tags":730,"draft":318,"series":320,"seriesOrder":320},"\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",[330,369,370],{"path":732,"title":733,"description":734,"date":735,"author":529,"image":736,"readingMinutes":108,"category":340,"project":737,"tags":738,"draft":318,"series":320,"seriesOrder":320},"\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",[345,739,482,679],"content",{"path":741,"title":742,"description":743,"date":561,"author":6,"image":744,"readingMinutes":102,"category":315,"project":367,"tags":745,"draft":318,"series":320,"seriesOrder":320},"\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",[369,330,345,679],{"path":747,"title":748,"description":749,"date":735,"author":529,"image":750,"readingMinutes":89,"category":340,"project":737,"tags":751,"draft":318,"series":320,"seriesOrder":320},"\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",[752,343,679,753],"workflow","accessibility",{"path":755,"title":756,"description":757,"date":758,"author":6,"image":320,"readingMinutes":108,"category":315,"project":341,"tags":759,"draft":318,"series":556,"seriesOrder":64},"\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",[330,369,499,555],{"path":761,"title":762,"description":763,"date":764,"author":6,"image":765,"readingMinutes":114,"category":351,"project":341,"tags":766,"draft":318,"series":320,"seriesOrder":320},"\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",[353,385,767],"observability",{"path":769,"title":770,"description":771,"date":772,"author":6,"image":320,"readingMinutes":114,"category":315,"project":341,"tags":773,"draft":318,"series":320,"seriesOrder":320},"\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",[753,330,459,345],{"path":775,"title":776,"description":777,"date":778,"author":6,"image":779,"readingMinutes":73,"category":445,"project":341,"tags":780,"draft":318,"series":320,"seriesOrder":320},"\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",[459,781,782],"validation","typescript",{"path":784,"title":785,"description":786,"date":787,"author":6,"image":788,"readingMinutes":108,"category":351,"project":341,"tags":789,"draft":318,"series":320,"seriesOrder":320},"\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",[344,353,384],{"path":791,"title":792,"description":793,"date":794,"author":6,"image":320,"readingMinutes":114,"category":351,"project":324,"tags":795,"draft":318,"series":326,"seriesOrder":114},"\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",[360,353,796],"analytics",{"path":798,"title":799,"description":800,"date":801,"author":6,"image":802,"readingMinutes":108,"category":351,"project":446,"tags":803,"draft":318,"series":320,"seriesOrder":320},"\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",[508,804,369,451],"failure-modes",{"path":806,"title":807,"description":808,"date":809,"author":6,"image":320,"readingMinutes":108,"category":351,"project":324,"tags":810,"draft":318,"series":326,"seriesOrder":89},"\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",[329,353,331],{"path":812,"title":813,"description":814,"date":815,"author":6,"image":320,"readingMinutes":108,"category":315,"project":341,"tags":816,"draft":318,"series":556,"seriesOrder":73},"\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",[330,369,499,555],{"path":818,"title":819,"description":820,"date":821,"author":6,"image":320,"readingMinutes":114,"category":351,"project":324,"tags":822,"draft":318,"series":326,"seriesOrder":120},"\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",[360,353,796],{"path":824,"title":825,"description":826,"date":827,"author":6,"image":828,"readingMinutes":89,"category":445,"project":320,"tags":320,"draft":318,"series":320,"seriesOrder":320},"\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",1787861096614]