[{"data":1,"prerenderedAt":965},["ShallowReactive",2],{"post-\u002Fblog\u002Fthe-page-that-existed-only-when-someone-linked-to-it":3,"blog-all":470},{"id":4,"title":5,"author":6,"body":7,"category":454,"date":455,"description":456,"draft":457,"extension":317,"image":458,"meta":459,"navigation":340,"path":460,"project":461,"readingMinutes":128,"seo":462,"series":463,"seriesOrder":45,"stem":464,"tags":465,"__hash__":469},"blog\u002Fblog\u002Fthe-page-that-existed-only-when-someone-linked-to-it.md","The Page That Existed Only When Someone Linked to It","EkoHacks Team",{"type":8,"value":9,"toc":448},"minimark",[10,14,19,22,25,28,31,151,154,158,161,168,171,174,379,382,385,389,392,422,425,434,438,441,444],[11,12,13],"p",{},"This is the one post in the series that describes work which shipped before the series began. We are telling it first because everything that follows is built on it, and because it ends with the defect the previous post found.",[15,16,18],"h2",{"id":17},"the-blog-that-was-not-there","The blog that was not there",[11,20,21],{},"On the sixth of June we moved our blog and legal pages off a hosted CMS and into the repository as markdown files. The framework we use reads those files at build time and loads them into a small database, and every page that shows content queries that database. On a laptop it worked the first time. The listing showed the posts, each post rendered, the legal pages rendered.",[11,23,24],{},"We deployed. The listing was empty. Every post returned 404. Every legal page returned 404.",[11,26,27],{},"The cause took a while to see because nothing was broken in the usual sense. Our host renders pages inside a serverless function, and the database the build had produced was not inside that function at the moment a request arrived. The build had made it, the function could not see it. So a page that asked the database for a post got nothing, and the page behaved correctly for nothing: an empty list, a 404.",[11,29,30],{},"The fix was to stop asking at request time. If the database only exists at build time, render the pages at build time, when it is there, and ship the HTML. The framework calls this prerendering, and the configuration was short:",[32,33,38],"pre",{"className":34,"code":35,"language":36,"meta":37,"style":37},"language-ts shiki shiki-themes github-dark","nitro: {\n  preset: 'netlify',\n  prerender: {\n    crawlLinks: true,\n    routes: ['\u002F', '\u002Fblog'],\n    ignore: ['\u002Fstyleguide'],\n    failOnError: false,\n  },\n},\n","ts","",[39,40,41,54,70,78,92,113,126,139,145],"code",{"__ignoreMap":37},[42,43,46,50],"span",{"class":44,"line":45},"line",1,[42,47,49],{"class":48},"svObZ","nitro",[42,51,53],{"class":52},"s95oV",": {\n",[42,55,57,60,63,67],{"class":44,"line":56},2,[42,58,59],{"class":48},"  preset",[42,61,62],{"class":52},": ",[42,64,66],{"class":65},"sU2Wk","'netlify'",[42,68,69],{"class":52},",\n",[42,71,73,76],{"class":44,"line":72},3,[42,74,75],{"class":48},"  prerender",[42,77,53],{"class":52},[42,79,81,84,86,90],{"class":44,"line":80},4,[42,82,83],{"class":48},"    crawlLinks",[42,85,62],{"class":52},[42,87,89],{"class":88},"sDLfK","true",[42,91,69],{"class":52},[42,93,95,98,101,104,107,110],{"class":44,"line":94},5,[42,96,97],{"class":48},"    routes",[42,99,100],{"class":52},": [",[42,102,103],{"class":65},"'\u002F'",[42,105,106],{"class":52},", ",[42,108,109],{"class":65},"'\u002Fblog'",[42,111,112],{"class":52},"],\n",[42,114,116,119,121,124],{"class":44,"line":115},6,[42,117,118],{"class":48},"    ignore",[42,120,100],{"class":52},[42,122,123],{"class":65},"'\u002Fstyleguide'",[42,125,112],{"class":52},[42,127,129,132,134,137],{"class":44,"line":128},7,[42,130,131],{"class":48},"    failOnError",[42,133,62],{"class":52},[42,135,136],{"class":88},"false",[42,138,69],{"class":52},[42,140,142],{"class":44,"line":141},8,[42,143,144],{"class":52},"  },\n",[42,146,148],{"class":44,"line":147},9,[42,149,150],{"class":52},"},\n",[11,152,153],{},"Start at the home page and the listing, follow every link the crawler finds in the HTML, write each page to a file. Thirty six routes came out, the blog listed its posts, the posts and legal pages rendered. Committed, deployed, fixed.",[15,155,157],{"id":156},"the-posts-that-only-existed-on-page-one","The posts that only existed on page one",[11,159,160],{},"A month later, while adding four posts, we found an older one returning 404 in production. We opened the listing on a laptop, paged through to it, clicked, and there it was. Live, 404.",[11,162,163,164,167],{},"The listing paginates on the client. The HTML of ",[39,165,166],{},"\u002Fblog"," contains the first page of cards and nothing else; the rest are fetched when a reader presses next. The build's crawler does not press next. It reads HTML and follows links, so it found the first page of posts, rendered them, and stopped. Any post that had scrolled off the first page was never linked from anything the crawler could read, so it was never rendered, so in production it was not there.",[11,169,170],{},"That is the title of this post and the principle under it. A page that the build does not produce does not exist. It does not matter that the source file is in the repository, that the route is defined, that the page renders on a laptop. If the process that produces the site never produced that page, the site does not have it. And a crawler that only follows links will only produce the pages that something links to, which makes the existence of a page depend on the accident of what happened to be on page one.",[11,172,173],{},"The fix on the eighth of July was to stop depending on links at all for the one thing we could enumerate:",[32,175,177],{"className":34,"code":176,"language":36,"meta":37,"style":37},"const blogDir = join(dirname(fileURLToPath(import.meta.url)), \"content\", \"blog\");\nconst blogRoutes = readdirSync(blogDir)\n  .filter((f) => f.endsWith(\".md\"))\n  .map((f) => `\u002Fblog\u002F${f.replace(\u002F\\.md$\u002F, \"\")}`);\n\n\u002F\u002F later\nroutes: ['\u002F', '\u002Fblog', '\u002Fcurriculum', '\u002Fedtech-accelerator', ...blogRoutes],\n",[39,178,179,230,245,280,336,342,348],{"__ignoreMap":37},[42,180,181,185,188,191,194,197,200,202,205,207,210,213,216,219,222,224,227],{"class":44,"line":45},[42,182,184],{"class":183},"snl16","const",[42,186,187],{"class":88}," blogDir",[42,189,190],{"class":183}," =",[42,192,193],{"class":48}," join",[42,195,196],{"class":52},"(",[42,198,199],{"class":48},"dirname",[42,201,196],{"class":52},[42,203,204],{"class":48},"fileURLToPath",[42,206,196],{"class":52},[42,208,209],{"class":183},"import",[42,211,212],{"class":52},".",[42,214,215],{"class":88},"meta",[42,217,218],{"class":52},".url)), ",[42,220,221],{"class":65},"\"content\"",[42,223,106],{"class":52},[42,225,226],{"class":65},"\"blog\"",[42,228,229],{"class":52},");\n",[42,231,232,234,237,239,242],{"class":44,"line":56},[42,233,184],{"class":183},[42,235,236],{"class":88}," blogRoutes",[42,238,190],{"class":183},[42,240,241],{"class":48}," readdirSync",[42,243,244],{"class":52},"(blogDir)\n",[42,246,247,250,253,256,260,263,266,269,272,274,277],{"class":44,"line":72},[42,248,249],{"class":52},"  .",[42,251,252],{"class":48},"filter",[42,254,255],{"class":52},"((",[42,257,259],{"class":258},"s9osk","f",[42,261,262],{"class":52},") ",[42,264,265],{"class":183},"=>",[42,267,268],{"class":52}," f.",[42,270,271],{"class":48},"endsWith",[42,273,196],{"class":52},[42,275,276],{"class":65},"\".md\"",[42,278,279],{"class":52},"))\n",[42,281,282,284,287,289,291,293,295,298,300,302,305,307,310,314,318,321,323,325,328,331,334],{"class":44,"line":80},[42,283,249],{"class":52},[42,285,286],{"class":48},"map",[42,288,255],{"class":52},[42,290,259],{"class":258},[42,292,262],{"class":52},[42,294,265],{"class":183},[42,296,297],{"class":65}," `\u002Fblog\u002F${",[42,299,259],{"class":52},[42,301,212],{"class":65},[42,303,304],{"class":48},"replace",[42,306,196],{"class":65},[42,308,309],{"class":65},"\u002F",[42,311,313],{"class":312},"sRjNt","\\.",[42,315,317],{"class":316},"sns5M","md",[42,319,320],{"class":183},"$",[42,322,309],{"class":65},[42,324,106],{"class":65},[42,326,327],{"class":65},"\"\"",[42,329,330],{"class":65},")",[42,332,333],{"class":65},"}`",[42,335,229],{"class":52},[42,337,338],{"class":44,"line":94},[42,339,341],{"emptyLinePlaceholder":340},true,"\n",[42,343,344],{"class":44,"line":115},[42,345,347],{"class":346},"sAwPA","\u002F\u002F later\n",[42,349,350,353,355,357,359,361,363,366,368,371,373,376],{"class":44,"line":128},[42,351,352],{"class":48},"routes",[42,354,100],{"class":52},[42,356,103],{"class":65},[42,358,106],{"class":52},[42,360,109],{"class":65},[42,362,106],{"class":52},[42,364,365],{"class":65},"'\u002Fcurriculum'",[42,367,106],{"class":52},[42,369,370],{"class":65},"'\u002Fedtech-accelerator'",[42,372,106],{"class":52},[42,374,375],{"class":183},"...",[42,377,378],{"class":52},"blogRoutes],\n",[11,380,381],{},"Read the directory, turn every markdown file into a route, hand the whole list to the prerenderer. The crawler still runs for the pages that have links, but the posts no longer need one. Today the build renders every post and every page, one hundred and thirty two routes including the data files that go with them, whether or not anything points at them.",[11,383,384],{},"That list is the seed of this series. The same enumeration that decides which pages exist will go on to produce the sitemap, and it is the reason the sitemap can be trusted: it is not a second list someone maintains, it is the one list the build already uses.",[15,386,388],{"id":387},"the-twin","The twin",[11,390,391],{},"Here is the part we found out on the twenty second of August, from the outside.",[11,393,394,395,398,399,106,402,405,406,409,410,413,414,417,418,421],{},"The prerenderer writes each page as an ",[39,396,397],{},"index.html"," inside a folder: ",[39,400,401],{},"dist\u002Fstory\u002Findex.html",[39,403,404],{},"dist\u002Fblog\u002Flandmines\u002Findex.html",". Our host sees a folder and prefers the folder's address, which ends in a slash. Ask it for ",[39,407,408],{},"\u002Fstory"," and it answers with a 301 to ",[39,411,412],{},"\u002Fstory\u002F",". Ask for ",[39,415,416],{},"\u002Fblog\u002Flandmines"," and it sends you to ",[39,419,420],{},"\u002Fblog\u002Flandmines\u002F",". We checked all sixty two routes on the live site: sixty answer with a redirect before they answer with a page. The two that do not are the home page, which is the root folder, and one post that had not yet deployed.",[11,423,424],{},"Every link on the site, in the navigation, the footer, and every card in the feed, points at the form without the slash. So every click inside the site is a redirect followed by a page. It costs a round trip each time, which a reader will not notice. A search engine notices. It now holds two addresses for each page, sees the site linking to the one that redirects, and has no canonical tag to tell it which one we mean. Search Console shows eighteen posts indexed under the address with the slash, which nothing on our site links to, and seven under the address without it, which the server redirects. We cannot see from our side why it chose differently for those seven, and it does not matter: the point is that we gave it a choice.",[11,426,427,428,430,431,433],{},"None of this was visible from the laptop. The development server serves ",[39,429,408],{}," as ",[39,432,408],{},", so our own audit the day before, which ran against it, recorded a clean 200 on every route. The live host, with the same files, redirects. The fix that made the pages exist also decided what their addresses were, and we did not notice we had made that decision until a crawler told us.",[15,435,437],{"id":436},"what-it-leaves-us","What it leaves us",[11,439,440],{},"The prerender stays. It is the right fix for a database that is only present at build time, and the enumeration is the right fix for a crawler that cannot press next. What it leaves is a question the next post answers with code: one address per page, declared on the page itself, with the other form redirecting to it, and a check that runs against the live site after a deploy and fails if any route answers with a 301.",[11,442,443],{},"The number for today: sixty of our sixty two addresses answer with a redirect first. The next post is about making that zero.",[445,446,447],"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 .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);}html pre.shiki code .snl16, html code.shiki .snl16{--shiki-default:#F97583}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 .sns5M, html code.shiki .sns5M{--shiki-default:#DBEDFF}html pre.shiki code .sAwPA, html code.shiki .sAwPA{--shiki-default:#6A737D}",{"title":37,"searchDepth":56,"depth":56,"links":449},[450,451,452,453],{"id":17,"depth":56,"text":18},{"id":156,"depth":56,"text":157},{"id":387,"depth":56,"text":388},{"id":436,"depth":56,"text":437},"Shipping and Operations","2026-08-22T16:00:00.000Z","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.",false,null,{},"\u002Fblog\u002Fthe-page-that-existed-only-when-someone-linked-to-it","ekohacks.com",{"title":5,"description":456},"From Invisible to Findable","blog\u002Fthe-page-that-existed-only-when-someone-linked-to-it",[466,467,468],"seo","operations","nuxt","t5lp8ZKv3x9Yvb4lmaKgq7-uR8Qm7OAbkS3pjnkBKcU",[471,483,489,496,508,514,523,530,537,546,553,561,568,575,588,597,604,611,620,628,636,646,653,661,668,674,680,689,697,707,715,722,732,740,746,756,765,773,781,789,797,804,812,820,827,829,836,845,853,860,867,876,882,890,896,904,910,919,926,933,941,947,953,959],{"path":472,"title":473,"description":474,"date":475,"author":6,"image":476,"readingMinutes":115,"category":477,"project":478,"tags":479,"draft":457,"series":458,"seriesOrder":458},"\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",[480,481,482],"git","continuous-integration","craft",{"path":484,"title":485,"description":486,"date":487,"author":6,"image":458,"readingMinutes":128,"category":454,"project":461,"tags":488,"draft":457,"series":463,"seriesOrder":72},"\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",[466,467,468],{"path":490,"title":491,"description":492,"date":493,"author":6,"image":458,"readingMinutes":115,"category":454,"project":461,"tags":494,"draft":457,"series":463,"seriesOrder":147},"\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",[495,467,468],"privacy",{"path":497,"title":498,"description":499,"date":500,"author":6,"image":501,"readingMinutes":128,"category":502,"project":503,"tags":504,"draft":457,"series":458,"seriesOrder":458},"\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",[505,506,507],"nullables","testing","websocket",{"path":509,"title":510,"description":511,"date":512,"author":6,"image":513,"readingMinutes":80,"category":477,"project":458,"tags":458,"draft":457,"series":458,"seriesOrder":458},"\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":515,"title":516,"description":517,"date":518,"author":6,"image":519,"readingMinutes":80,"category":454,"project":478,"tags":520,"draft":457,"series":458,"seriesOrder":458},"\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",[467,521,522],"deployment","idempotency",{"path":524,"title":525,"description":526,"date":527,"author":528,"image":529,"readingMinutes":115,"category":454,"project":458,"tags":458,"draft":457,"series":458,"seriesOrder":458},"\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":531,"title":532,"description":533,"date":534,"author":6,"image":458,"readingMinutes":128,"category":454,"project":461,"tags":535,"draft":457,"series":463,"seriesOrder":536},"\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",[466,467,482],0,{"path":538,"title":539,"description":540,"date":541,"author":6,"image":542,"readingMinutes":80,"category":477,"project":478,"tags":543,"draft":457,"series":458,"seriesOrder":458},"\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",[482,544,545],"fastify","security",{"path":547,"title":548,"description":549,"date":550,"author":6,"image":551,"readingMinutes":94,"category":454,"project":478,"tags":552,"draft":457,"series":458,"seriesOrder":458},"\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",[480,481,467],{"path":416,"title":554,"description":555,"date":556,"author":6,"image":557,"readingMinutes":80,"category":477,"project":478,"tags":558,"draft":457,"series":458,"seriesOrder":458},"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",[482,559,560],"documentation","ai-agents",{"path":562,"title":563,"description":564,"date":565,"author":6,"image":566,"readingMinutes":115,"category":454,"project":478,"tags":567,"draft":457,"series":458,"seriesOrder":458},"\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",[481,467,506],{"path":569,"title":570,"description":571,"date":572,"author":6,"image":458,"readingMinutes":128,"category":454,"project":461,"tags":573,"draft":457,"series":463,"seriesOrder":56},"\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",[466,467,468,574],"netlify",{"path":576,"title":577,"description":578,"date":579,"author":6,"image":580,"readingMinutes":80,"category":581,"project":582,"tags":583,"draft":457,"series":458,"seriesOrder":458},"\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",[584,585,586,587],"composition","cli-design","narration","encoding-the-release",{"path":589,"title":590,"description":591,"date":592,"author":6,"image":593,"readingMinutes":128,"category":581,"project":503,"tags":594,"draft":457,"series":458,"seriesOrder":458},"\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",[595,505,596],"design","error handling",{"path":598,"title":599,"description":600,"date":601,"author":6,"image":602,"readingMinutes":115,"category":454,"project":478,"tags":603,"draft":457,"series":458,"seriesOrder":458},"\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",[481,521,467],{"path":605,"title":606,"description":607,"date":608,"author":6,"image":609,"readingMinutes":115,"category":477,"project":478,"tags":610,"draft":457,"series":458,"seriesOrder":458},"\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",[480,481,482],{"path":612,"title":613,"description":614,"date":615,"author":6,"image":616,"readingMinutes":72,"category":581,"project":478,"tags":617,"draft":457,"series":458,"seriesOrder":458},"\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",[595,618,619],"data","onboarding",{"path":621,"title":622,"description":623,"date":624,"author":6,"image":458,"readingMinutes":115,"category":502,"project":582,"tags":625,"draft":457,"series":458,"seriesOrder":458},"\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",[626,505,585,627],"user-testing","linear",{"path":629,"title":630,"description":631,"date":632,"author":6,"image":633,"readingMinutes":94,"category":502,"project":478,"tags":634,"draft":457,"series":458,"seriesOrder":458},"\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",[506,505,635],"mocks",{"path":637,"title":638,"description":639,"date":640,"author":6,"image":641,"readingMinutes":80,"category":454,"project":582,"tags":642,"draft":457,"series":458,"seriesOrder":458},"\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",[643,644,645,587],"automation","releasing","process",{"path":647,"title":648,"description":649,"date":615,"author":6,"image":650,"readingMinutes":72,"category":454,"project":478,"tags":651,"draft":457,"series":458,"seriesOrder":458},"\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",[467,522,652],"webhooks",{"path":654,"title":655,"description":656,"date":657,"author":6,"image":458,"readingMinutes":115,"category":454,"project":478,"tags":658,"draft":457,"series":458,"seriesOrder":458},"\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",[659,660,584,467],"shell","provisioning",{"path":662,"title":663,"description":664,"date":458,"author":665,"image":666,"readingMinutes":45,"category":581,"project":667,"tags":458,"draft":457,"series":458,"seriesOrder":458},"\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":669,"title":670,"description":671,"date":672,"author":6,"image":458,"readingMinutes":128,"category":502,"project":461,"tags":673,"draft":457,"series":463,"seriesOrder":94},"\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",[466,506,468],{"path":675,"title":676,"description":677,"date":678,"author":6,"image":679,"readingMinutes":56,"category":502,"project":458,"tags":458,"draft":457,"series":458,"seriesOrder":458},"\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":681,"title":682,"description":683,"date":684,"author":6,"image":685,"readingMinutes":94,"category":502,"project":582,"tags":686,"draft":457,"series":458,"seriesOrder":458},"\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",[505,687,688,587],"testing-without-mocks","james-shore",{"path":690,"title":691,"description":692,"date":693,"author":6,"image":458,"readingMinutes":115,"category":502,"project":478,"tags":694,"draft":457,"series":696,"seriesOrder":45},"\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",[506,505,635,695],"coverage","What Mocks Cost",{"path":698,"title":699,"description":700,"date":701,"author":6,"image":702,"readingMinutes":94,"category":581,"project":503,"tags":703,"draft":457,"series":458,"seriesOrder":458},"\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",[704,705,506,706],"protocol","pubsub","tdd",{"path":708,"title":709,"description":710,"date":711,"author":6,"image":712,"readingMinutes":115,"category":502,"project":503,"tags":713,"draft":457,"series":458,"seriesOrder":458},"\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",[505,506,714],"refactoring",{"path":716,"title":717,"description":718,"date":719,"author":6,"image":720,"readingMinutes":94,"category":477,"project":478,"tags":721,"draft":457,"series":458,"seriesOrder":458},"\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",[480,481,482],{"path":723,"title":724,"description":725,"date":726,"author":6,"image":727,"readingMinutes":141,"category":454,"project":478,"tags":728,"draft":457,"series":458,"seriesOrder":458},"\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",[467,729,730,731],"debugging","european-tech","community",{"path":733,"title":734,"description":735,"date":736,"author":6,"image":737,"readingMinutes":115,"category":581,"project":503,"tags":738,"draft":457,"series":458,"seriesOrder":458},"\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",[595,706,739],"continuous integration",{"path":741,"title":742,"description":743,"date":744,"author":6,"image":745,"readingMinutes":80,"category":477,"project":458,"tags":458,"draft":457,"series":458,"seriesOrder":458},"\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":747,"title":748,"description":749,"date":750,"author":6,"image":751,"readingMinutes":128,"category":477,"project":478,"tags":752,"draft":457,"series":458,"seriesOrder":458},"\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",[753,754,755,627],"graphql","stories","xp",{"path":757,"title":758,"description":759,"date":760,"author":6,"image":761,"readingMinutes":94,"category":502,"project":582,"tags":762,"draft":457,"series":458,"seriesOrder":458},"\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",[706,763,764,587],"red-first","code-review",{"path":766,"title":767,"description":768,"date":769,"author":6,"image":770,"readingMinutes":94,"category":454,"project":582,"tags":771,"draft":457,"series":458,"seriesOrder":458},"\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",[644,772,480,587],"preflight",{"path":774,"title":775,"description":776,"date":777,"author":6,"image":778,"readingMinutes":94,"category":454,"project":503,"tags":779,"draft":457,"series":458,"seriesOrder":458},"\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",[780,505,506],"shutdown",{"path":782,"title":783,"description":784,"date":785,"author":6,"image":786,"readingMinutes":115,"category":454,"project":503,"tags":787,"draft":457,"series":458,"seriesOrder":458},"\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",[788,506,482],"packaging",{"path":790,"title":791,"description":792,"date":793,"author":6,"image":794,"readingMinutes":80,"category":581,"project":582,"tags":795,"draft":457,"series":458,"seriesOrder":458},"\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",[643,796,595,587],"human-in-the-loop",{"path":798,"title":799,"description":800,"date":801,"author":6,"image":802,"readingMinutes":115,"category":454,"project":478,"tags":803,"draft":457,"series":458,"seriesOrder":458},"\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",[481,467,482],{"path":805,"title":806,"description":807,"date":808,"author":6,"image":809,"readingMinutes":115,"category":454,"project":503,"tags":810,"draft":457,"series":458,"seriesOrder":458},"\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",[780,467,811],"signals",{"path":813,"title":814,"description":815,"date":816,"author":6,"image":817,"readingMinutes":141,"category":477,"project":503,"tags":818,"draft":457,"series":458,"seriesOrder":458},"\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",[764,714,819,506],"teaching",{"path":821,"title":822,"description":823,"date":824,"author":6,"image":825,"readingMinutes":115,"category":581,"project":503,"tags":826,"draft":457,"series":458,"seriesOrder":458},"\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",[595,705,505],{"path":460,"title":5,"description":456,"date":455,"author":6,"image":458,"readingMinutes":128,"category":454,"project":461,"tags":828,"draft":457,"series":463,"seriesOrder":45},[466,467,468],{"path":830,"title":831,"description":832,"date":833,"author":6,"image":834,"readingMinutes":141,"category":454,"project":478,"tags":835,"draft":457,"series":458,"seriesOrder":458},"\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",[467,729,730,731],{"path":837,"title":838,"description":839,"date":840,"author":6,"image":841,"readingMinutes":80,"category":477,"project":582,"tags":842,"draft":340,"series":458,"seriesOrder":458},"\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",[644,843,844,587],"dogfooding","acceptance-testing",{"path":846,"title":847,"description":848,"date":849,"author":6,"image":850,"readingMinutes":128,"category":502,"project":503,"tags":851,"draft":457,"series":458,"seriesOrder":458},"\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",[506,505,852],"scriptrunner",{"path":854,"title":855,"description":856,"date":857,"author":6,"image":458,"readingMinutes":141,"category":454,"project":461,"tags":858,"draft":457,"series":463,"seriesOrder":115},"\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",[466,467,859],"performance",{"path":861,"title":862,"description":863,"date":864,"author":6,"image":865,"readingMinutes":128,"category":502,"project":503,"tags":866,"draft":457,"series":458,"seriesOrder":458},"\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",[506,505,507],{"path":868,"title":869,"description":870,"date":871,"author":665,"image":872,"readingMinutes":115,"category":477,"project":873,"tags":874,"draft":457,"series":458,"seriesOrder":458},"\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",[482,875,618,819],"content",{"path":877,"title":878,"description":879,"date":701,"author":6,"image":880,"readingMinutes":94,"category":502,"project":503,"tags":881,"draft":457,"series":458,"seriesOrder":458},"\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",[505,506,482,819],{"path":883,"title":884,"description":885,"date":871,"author":665,"image":886,"readingMinutes":80,"category":477,"project":873,"tags":887,"draft":457,"series":458,"seriesOrder":458},"\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",[888,480,819,889],"workflow","accessibility",{"path":891,"title":892,"description":893,"date":894,"author":6,"image":458,"readingMinutes":115,"category":502,"project":478,"tags":895,"draft":457,"series":696,"seriesOrder":56},"\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",[506,505,635,695],{"path":897,"title":898,"description":899,"date":900,"author":6,"image":901,"readingMinutes":128,"category":454,"project":478,"tags":902,"draft":457,"series":458,"seriesOrder":458},"\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",[467,522,903],"observability",{"path":905,"title":906,"description":907,"date":908,"author":6,"image":458,"readingMinutes":128,"category":502,"project":478,"tags":909,"draft":457,"series":458,"seriesOrder":458},"\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",[889,506,595,482],{"path":911,"title":912,"description":913,"date":914,"author":6,"image":915,"readingMinutes":72,"category":581,"project":478,"tags":916,"draft":457,"series":458,"seriesOrder":458},"\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",[595,917,918],"validation","typescript",{"path":920,"title":921,"description":922,"date":923,"author":6,"image":924,"readingMinutes":115,"category":454,"project":478,"tags":925,"draft":457,"series":458,"seriesOrder":458},"\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",[481,467,521],{"path":927,"title":928,"description":929,"date":930,"author":6,"image":458,"readingMinutes":128,"category":454,"project":461,"tags":931,"draft":457,"series":463,"seriesOrder":128},"\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",[495,467,932],"analytics",{"path":934,"title":935,"description":936,"date":937,"author":6,"image":938,"readingMinutes":115,"category":454,"project":582,"tags":939,"draft":457,"series":458,"seriesOrder":458},"\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",[644,940,505,587],"failure-modes",{"path":942,"title":943,"description":944,"date":945,"author":6,"image":458,"readingMinutes":115,"category":454,"project":461,"tags":946,"draft":457,"series":463,"seriesOrder":80},"\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",[466,467,468],{"path":948,"title":949,"description":950,"date":951,"author":6,"image":458,"readingMinutes":115,"category":502,"project":478,"tags":952,"draft":457,"series":696,"seriesOrder":72},"\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",[506,505,635,695],{"path":954,"title":955,"description":956,"date":957,"author":6,"image":458,"readingMinutes":128,"category":454,"project":461,"tags":958,"draft":457,"series":463,"seriesOrder":141},"\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",[495,467,932],{"path":960,"title":961,"description":962,"date":963,"author":6,"image":964,"readingMinutes":80,"category":581,"project":458,"tags":458,"draft":457,"series":458,"seriesOrder":458},"\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",1787861096911]