<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: bishwas jha</title>
    <description>The latest articles on DEV Community by bishwas jha (@alphacrack).</description>
    <link>https://dev.to/alphacrack</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2629801%2F4f499ed0-1048-45f5-9588-0b27ee608adc.png</url>
      <title>DEV Community: bishwas jha</title>
      <link>https://dev.to/alphacrack</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alphacrack"/>
    <language>en</language>
    <item>
      <title>The AI that refuses to publish a tutorial it didn't run twice</title>
      <dc:creator>bishwas jha</dc:creator>
      <pubDate>Wed, 08 Jul 2026 20:14:53 +0000</pubDate>
      <link>https://dev.to/alphacrack/the-ai-that-refuses-to-publish-a-tutorial-it-didnt-run-twice-8lp</link>
      <guid>https://dev.to/alphacrack/the-ai-that-refuses-to-publish-a-tutorial-it-didnt-run-twice-8lp</guid>
      <description>&lt;p&gt;There's a special kind of betrayal in a README quickstart that doesn't work.&lt;/p&gt;

&lt;p&gt;You paste the command. It fails. You backtrack, was it a missing step, a flag that got renamed three releases ago, a dependency the author had installed so long ago they forgot to mention it? The instructions were written by a human who was sure they worked. They just… didn't, not on a clean machine.&lt;/p&gt;

&lt;p&gt;AI has made this worse, not better. Point a language model at a repo and it will happily generate a confident, well-formatted tutorial — one that was never executed a single time. It reads plausible. That's the problem. Plausible is not the same as &lt;em&gt;runs&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;readme2demo&lt;/strong&gt; to take the opposite stance: it doesn't trust the model, and it doesn't trust itself. It trusts a container.&lt;/p&gt;

&lt;h2&gt;
  
  
  The idea in one sentence
&lt;/h2&gt;

&lt;p&gt;Point it at a repo. An AI agent reads the README and &lt;strong&gt;actually runs it&lt;/strong&gt; inside a hardened Docker sandbox. The working path is distilled to its minimum, then &lt;strong&gt;replayed in a brand-new container the agent never touched&lt;/strong&gt; — and only what survives that clean-room replay gets published.&lt;/p&gt;

&lt;p&gt;Out the other end you get a &lt;code&gt;tutorial.md&lt;/code&gt;, a step-by-step guide, a&lt;br&gt;
troubleshooting doc, a machine-readable &lt;code&gt;howto.jsonld&lt;/code&gt;, and a &lt;strong&gt;VHS demo video&lt;/strong&gt; that types every verified command on camera.&lt;/p&gt;

&lt;p&gt;The value was never "AI writes a tutorial." It's that the tutorial &lt;strong&gt;ran, twice&lt;/strong&gt;, before you saw it.&lt;/p&gt;
&lt;h2&gt;
  
  
  The one rule everything is built around
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;The LLM never publishes anything a fresh container did not independently execute.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is the whole project in a sentence, and the important part is &lt;em&gt;how&lt;/em&gt; it's enforced: &lt;strong&gt;in code, not in prompts.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Prompts are suggestions. A model told "only include commands that worked" will, eventually, helpfully include one that didn't. So grounding isn't left to the model's good intentions. Every command the distiller wants to emit has to fuzzy-match a command that actually succeeded in the recorded run log. No match, no publish. And the final verdict doesn't come from the agent at all — it comes from a separate stage that replays the distilled script in a container with zero agent state.&lt;/p&gt;

&lt;p&gt;If that replay fails, the output doesn't get quietly patched. It ships loudly labeled &lt;code&gt;⚠ UNVERIFIED&lt;/code&gt;. When it passes, every doc carries a badge:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;✅ Verified on 2026-07-07 · image &amp;lt;digest&amp;gt; · commit &amp;lt;sha&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How it actually works
&lt;/h2&gt;

&lt;p&gt;It's a pipeline of small, resumable stages over a crash-safe &lt;code&gt;manifest.json&lt;/code&gt;, so a run that dies at stage 5 resumes at stage 5 instead of starting over:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;repo URL / guide → ingest &amp;amp; plan → agent run (in Docker) → normalize transcript
        → distill minimal path → VERIFY replay in a fresh container
        → tutorial + step_by_step.md → render VHS demo video
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;ingest&lt;/strong&gt; — clone the repo, collect the README/docs, and run one planner
pass that emits a machine-checkable plan with a feasibility verdict.
Quickstarts that &lt;em&gt;can't&lt;/em&gt; work in a sandbox (need a GPU, real cloud creds, a
GUI) fail here, for pennies, before any agent time is spent.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;agent&lt;/strong&gt; — the agent engine runs &lt;em&gt;inside&lt;/em&gt; the hardened sandbox until the
quickstart works, blocks, or runs out of turns.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;normalize&lt;/strong&gt; — pure, deterministic Python turns the messy transcript into a
structured command log. No LLM calls, fully testable against fixtures.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;distill&lt;/strong&gt; — one LLM pass reduces the run to the minimal reproduction path
and writes &lt;code&gt;commands.sh&lt;/code&gt;. The grounding validator lives here.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;verify&lt;/strong&gt; — the moat. &lt;code&gt;commands.sh&lt;/code&gt; is replayed in a fresh container the
agent never saw. This is the &lt;em&gt;only&lt;/em&gt; source of the word "verified."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;tutorial&lt;/strong&gt; — finalizes the step-by-step guide with the verified outputs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;render&lt;/strong&gt; — builds the VHS video &lt;em&gt;from&lt;/em&gt; the finalized guide, so the demo
provably follows the published steps line for line.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Because READMEs are untrusted code, the agent's container is the permission&lt;br&gt;
boundary: &lt;code&gt;cap-drop ALL&lt;/code&gt;, &lt;code&gt;no-new-privileges&lt;/code&gt;, non-root execution, and&lt;br&gt;
memory/CPU/PID limits.&lt;/p&gt;

&lt;h2&gt;
  
  
  The unglamorous part: everything that goes wrong
&lt;/h2&gt;

&lt;p&gt;The honest engineering story here isn't the happy path — it's the long tail of&lt;br&gt;
ways "run a README" breaks. A few that shaped the design:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The agent fakes success.&lt;/strong&gt; Told to make something work, a model will patch
the source, stub a socket, or pipe a failing command into &lt;code&gt;head&lt;/code&gt; so it exits

&lt;ol&gt;
&lt;li&gt;Each of these is now a detected failure class with a code-level defense and
a regression test, not just a stern prompt.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Syntax drift breaks grounding.&lt;/strong&gt; &lt;code&gt;2&amp;gt;&amp;amp;1&lt;/code&gt;, an env-var prefix, a &lt;code&gt;| head&lt;/code&gt;, a
heredoc body — the "same" command shows up a dozen ways. Matching is
normalized on both sides so real successes don't get dropped as unverified.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Findings tools exit nonzero on success.&lt;/strong&gt; Linters and drift-detectors
"fail" when they find something. Under &lt;code&gt;set -e&lt;/code&gt; that aborts the script before
the assertion, so those are special-cased to still count as passing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Videos that lie.&lt;/strong&gt; The demo tape is generated &lt;em&gt;from&lt;/em&gt; the finalized guide in
the render stage — not hand-written — so the video can't drift from the doc.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every one of those was found on a real run and has a test named after it. That's&lt;br&gt;
the culture of the project: when you need the model to behave, you add &lt;strong&gt;both&lt;/strong&gt; a&lt;br&gt;
prompt rule and a parser that enforces it. Prompts are suggestions; parsers are&lt;br&gt;
law.&lt;/p&gt;

&lt;h2&gt;
  
  
  Running it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-e&lt;/span&gt; &lt;span class="s2"&gt;".[dev]"&lt;/span&gt;
docker build &lt;span class="nt"&gt;-t&lt;/span&gt; readme2demo/base:latest images/base/

&lt;span class="c"&gt;# self-hosted, single-operator, on your Claude subscription (no API key):&lt;/span&gt;
claude setup-token
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;CLAUDE_CODE_OAUTH_TOKEN&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;sk-ant-oat01-...
readme2demo run https://github.com/owner/repo &lt;span class="nt"&gt;--llm-backend&lt;/span&gt; claude-cli

&lt;span class="c"&gt;# or metered API billing (best for scale, required if you host it for others):&lt;/span&gt;
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;ANTHROPIC_API_KEY&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;sk-ant-...
readme2demo run https://github.com/owner/repo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The repo is optional now — hand it a self-contained step-by-step guide instead&lt;br&gt;
and the fresh-container replay still verifies every command.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it is and isn't
&lt;/h2&gt;

&lt;p&gt;It's &lt;strong&gt;open-core and MIT-licensed&lt;/strong&gt;. The CLI and the whole verification pipeline&lt;br&gt;
are the free core. A hosted version is exploratory — gated entirely on whether&lt;br&gt;
people actually want it — and I'm deliberately not putting SaaS code into the&lt;br&gt;
OSS core until that's answered.&lt;/p&gt;

&lt;p&gt;It's honest about its edges: the in-sandbox agent needs a model credential that&lt;br&gt;
lives in the container for the duration of the run (hardened, but a real&lt;br&gt;
tradeoff), the OpenHands engine is experimental, and "verified" means the&lt;br&gt;
quickstart &lt;em&gt;runs&lt;/em&gt; — not that the project is good.&lt;/p&gt;

&lt;p&gt;It even generated its own tutorial and demo. That self-run is committed in the&lt;br&gt;
repo, alongside a run against a second project, so you can inspect exactly what&lt;br&gt;
it produces before installing anything.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/alphacrack/readme2demo" rel="noopener noreferrer"&gt;https://github.com/alphacrack/readme2demo&lt;/a&gt; (MIT)&lt;br&gt;
&lt;strong&gt;Docs:&lt;/strong&gt; &lt;a href="https://alphacrack.github.io/readme2demo/" rel="noopener noreferrer"&gt;https://alphacrack.github.io/readme2demo/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If the idea of docs that can't lie about whether they run appeals to you, a star&lt;br&gt;
helps it find the next person and I'd genuinely like to hear where it breaks on &lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqwvw0jr2cfvkiu5focdz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqwvw0jr2cfvkiu5focdz.png" alt=" " width="800" height="400"&gt;&lt;/a&gt;your repo.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>ai</category>
      <category>devtools</category>
      <category>python</category>
    </item>
    <item>
      <title>5 things Railway’s 8 hour outage should change about how you think about redundancy</title>
      <dc:creator>bishwas jha</dc:creator>
      <pubDate>Fri, 22 May 2026 08:03:03 +0000</pubDate>
      <link>https://dev.to/alphacrack/5-things-railways-8-hour-outage-should-change-about-how-you-think-about-redundancy-1k5l</link>
      <guid>https://dev.to/alphacrack/5-things-railways-8-hour-outage-should-change-about-how-you-think-about-redundancy-1k5l</guid>
      <description>&lt;p&gt;Railway runs on Google Cloud, AWS, and its own metal.&lt;/p&gt;

&lt;p&gt;So when I first saw that Railway was down for hours, my first thought was probably the same as yours.&lt;/p&gt;

&lt;p&gt;"How does a multi cloud platform go dark like that?"&lt;/p&gt;

&lt;p&gt;Then I read the incident report, the Hacker News discussion, and the follow up coverage. And the real lesson is uncomfortable.&lt;/p&gt;

&lt;p&gt;This was not really a cloud outage.&lt;/p&gt;

&lt;p&gt;The servers did not all die. AWS did not die. Railway Metal did not die. Google Cloud infrastructure itself did not have to collapse.&lt;/p&gt;

&lt;p&gt;What failed was much higher up the stack.&lt;/p&gt;

&lt;p&gt;The account.&lt;/p&gt;

&lt;p&gt;Google Cloud placed Railway's production account into suspended status incorrectly as part of an automated action. Railway says this happened around 22:20 UTC on May 19, and the platform was not fully recovered until the next morning. (&lt;a href="https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage" rel="noopener noreferrer"&gt;https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;That should make every CloudOps, platform, SRE, and engineering leader stop for a minute.&lt;/p&gt;

&lt;p&gt;Because most redundancy plans are built for the wrong failure.&lt;/p&gt;

&lt;p&gt;We design for dead VMs.&lt;br&gt;
We design for unavailable zones.&lt;br&gt;
We design for regional failover.&lt;br&gt;
We design for database replicas.&lt;/p&gt;

&lt;p&gt;But what do we do when the provider says, incorrectly or automatically, “your account is no longer allowed to exist normally”?&lt;/p&gt;

&lt;p&gt;Not much, usually.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. This was not a cloud outage. It was an account suspension&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That is the first big lesson.&lt;/p&gt;

&lt;p&gt;A lot of people hear "cloud outage" and instantly think of regions, zones, load balancers, or broken hardware. But Railway’s case was different.&lt;/p&gt;

&lt;p&gt;Google Cloud's automated systems suspended Railway's production account. Railway says this was incorrect, and that the action was part of a wider automated event affecting many accounts. (&lt;a href="https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage" rel="noopener noreferrer"&gt;https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;That kind of failure does not look like a server going unhealthy.&lt;/p&gt;

&lt;p&gt;It looks like identity, billing, trust, abuse detection, policy, support, and account control all becoming part of your availability story.&lt;/p&gt;

&lt;p&gt;Your health checks can say everything is fine.&lt;/p&gt;

&lt;p&gt;Your multi zone architecture can be green.&lt;/p&gt;

&lt;p&gt;Your workloads can still technically exist.&lt;/p&gt;

&lt;p&gt;But if the account is restricted, your beautiful infrastructure diagram does not matter much.&lt;/p&gt;

&lt;p&gt;This is the part many teams do not model.&lt;/p&gt;

&lt;p&gt;They model "what if eu west 1 is down?"&lt;/p&gt;

&lt;p&gt;They rarely model "what if our production cloud account is frozen by an automated system at 11 PM?"&lt;/p&gt;

&lt;p&gt;And honestly, that second one is scarier.&lt;/p&gt;

&lt;p&gt;Because you do not debug it with kubectl.&lt;/p&gt;

&lt;p&gt;You debug it with support tickets, escalation paths, account managers, legal trust, and luck.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The control plane was the real single point of failure&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Railway had workloads on AWS and Railway Metal that were still running during the incident. But users still saw errors.&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;p&gt;Because the routing control plane was hosted on Google Cloud.&lt;/p&gt;

&lt;p&gt;Railway's edge proxies needed that control plane to know where workloads lived. They had cached route data for a while, but once the cache expired, the edge could not keep routing properly. Railway's community update said route cache expiry caused the incident to spread beyond GCP hosted workloads and affect the wider platform. (&lt;a href="https://station.railway.com/community/what-we-know-so-far-may-19th-2026-86354cdd" rel="noopener noreferrer"&gt;https://station.railway.com/community/what-we-know-so-far-may-19th-2026-86354cdd&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;This is the second lesson.&lt;/p&gt;

&lt;p&gt;Your data plane can be redundant while your control plane is still fragile.&lt;/p&gt;

&lt;p&gt;And this is where a lot of "multi cloud" thinking becomes a little fake.&lt;/p&gt;

&lt;p&gt;You can run compute in three places.&lt;br&gt;
You can run storage in two places.&lt;br&gt;
You can have Kubernetes clusters everywhere.&lt;/p&gt;

&lt;p&gt;But if the scheduler, routing map, identity service, deployment API, config database, or certificate automation lives in one provider, your multi cloud story may only be multi cloud on paper.&lt;/p&gt;

&lt;p&gt;The thing customers see as "the product" is often not the workload.&lt;/p&gt;

&lt;p&gt;It is the control plane around the workload.&lt;/p&gt;

&lt;p&gt;For Railway, customers were not just buying raw compute. They were buying routing, builds, deployments, dashboard access, APIs, orchestration and platform magic.&lt;/p&gt;

&lt;p&gt;And the platform magic had a dependency.&lt;/p&gt;

&lt;p&gt;That dependency became the outage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Getting the account back is not the same as getting the service back&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This one is very important.&lt;/p&gt;

&lt;p&gt;According to Railway, Google reversed the suspension shortly after escalation. But recovery still took hours because account restoration did not automatically bring everything back cleanly. Persistent disks, compute instances, networking and orchestration layers had to be restored and verified step by step. (&lt;a href="https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage" rel="noopener noreferrer"&gt;https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;This is the part people underestimate.&lt;/p&gt;

&lt;p&gt;A provider can say, “access restored.”&lt;/p&gt;

&lt;p&gt;But your system still has to wake up.&lt;/p&gt;

&lt;p&gt;Disks need to attach.&lt;br&gt;
Networks need to behave.&lt;br&gt;
Queues need to drain.&lt;br&gt;
Deployments need to stop stampeding.&lt;br&gt;
Databases need to agree again.&lt;br&gt;
Caches need to be repopulated.&lt;br&gt;
Humans need to verify what is safe.&lt;/p&gt;

&lt;p&gt;That is not instant.&lt;/p&gt;

&lt;p&gt;And in a complex platform, bringing things back too fast can be worse than bringing them back slowly.&lt;/p&gt;

&lt;p&gt;Railway also throttled queued deploys during recovery, which sounds boring, but it is actually the responsible move. Because after an outage, your own backlog becomes traffic. And that traffic can flatten the recovering system.&lt;/p&gt;

&lt;p&gt;So the real RTO is not:&lt;/p&gt;

&lt;p&gt;"How fast can the provider undo the mistake?"&lt;/p&gt;

&lt;p&gt;It is:&lt;/p&gt;

&lt;p&gt;"How fast can we safely restore the whole chain after the provider undo the mistake?"&lt;/p&gt;

&lt;p&gt;Small difference in words.&lt;/p&gt;

&lt;p&gt;Huge difference in reality.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Recovery can create a second outage&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is probably my favorite lesson from the whole incident, because it is so real.&lt;/p&gt;

&lt;p&gt;When Railway started recovering, queued retries and user activity came back in a burst. That burst hit GitHub OAuth and webhook flows hard enough that GitHub rate limited Railway. So logins and builds had problems again, even after the original Google Cloud issue was no longer the main blocker. (&lt;a href="https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage" rel="noopener noreferrer"&gt;https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;That is painful.&lt;/p&gt;

&lt;p&gt;The first outage came from one provider.&lt;/p&gt;

&lt;p&gt;The second problem appeared during recovery, from another dependency.&lt;/p&gt;

&lt;p&gt;This happens more often than teams admit.&lt;/p&gt;

&lt;p&gt;After an outage, everything tries to catch up.&lt;/p&gt;

&lt;p&gt;Cron jobs wake up.&lt;br&gt;
Webhooks retry.&lt;br&gt;
CI pipelines restart.&lt;br&gt;
Users refresh dashboards.&lt;br&gt;
Workers pull old messages.&lt;br&gt;
Integrations suddenly see a wall of traffic.&lt;/p&gt;

&lt;p&gt;And then some other system says, “this looks abusive.”&lt;/p&gt;

&lt;p&gt;Now your recovery has become its own incident.&lt;/p&gt;

&lt;p&gt;This is why serious resilience is not just failover.&lt;/p&gt;

&lt;p&gt;It is controlled recovery.&lt;/p&gt;

&lt;p&gt;Backpressure matters.&lt;br&gt;
Retry budgets matter.&lt;br&gt;
Queue draining matters.&lt;br&gt;
Circuit breakers matter.&lt;br&gt;
Rate limit awareness matters.&lt;br&gt;
Runbooks matter.&lt;/p&gt;

&lt;p&gt;And boring old institutional memory matters even more.&lt;/p&gt;

&lt;p&gt;Railway had already hardened parts of the GitHub rate limit path after a prior incident, which helped reduce damage this time. That is not luck. That is the value of learning properly from past pain.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Most teams insure the wrong half of the risk&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Railway incident is not the first time account level cloud risk became real.&lt;/p&gt;

&lt;p&gt;In 2024, UniSuper, a major Australian pension fund, had a serious Google Cloud incident where its private cloud environment was deleted because of a misconfiguration. Google later published details saying backups in Google Cloud Storage and third party backup software helped restoration. (&lt;a href="https://cloud.google.com/blog/products/infrastructure/details-of-google-cloud-gcve-incident" rel="noopener noreferrer"&gt;https://cloud.google.com/blog/products/infrastructure/details-of-google-cloud-gcve-incident&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;So no, account level and provider control plane risk is not some imaginary edge case.&lt;/p&gt;

&lt;p&gt;It happens.&lt;/p&gt;

&lt;p&gt;But most companies still talk about redundancy like this:&lt;/p&gt;

&lt;p&gt;"We use multiple clouds."&lt;/p&gt;

&lt;p&gt;Ok, but what does that mean?&lt;/p&gt;

&lt;p&gt;Does it mean workloads can run somewhere else?&lt;/p&gt;

&lt;p&gt;Or does it mean you can actually operate the business if one provider account disappears?&lt;/p&gt;

&lt;p&gt;Those are very different things.&lt;/p&gt;

&lt;p&gt;Flexera's 2026 State of the Cloud report shows multi cloud is still a major enterprise pattern, and its report is based on 753 cloud decision makers. (&lt;a href="https://info.flexera.com/CM-REPORT-State-of-the-Cloud?lead_source=Organic+Search" rel="noopener noreferrer"&gt;https://info.flexera.com/CM-REPORT-State-of-the-Cloud?lead_source=Organic+Search&lt;/a&gt;) But in practice, many companies are multi cloud for procurement, politics, analytics, or workload placement.&lt;/p&gt;

&lt;p&gt;Not always for true survivability.&lt;/p&gt;

&lt;p&gt;True survivability asks much harder questions.&lt;/p&gt;

&lt;p&gt;Can we deploy without this provider?&lt;br&gt;
Can we route without this provider?&lt;br&gt;
Can we authenticate without this provider?&lt;br&gt;
Can we restore backups without this provider?&lt;br&gt;
Can we contact support fast enough?&lt;br&gt;
Can we prove ownership if an automated trust system flags us?&lt;br&gt;
Can we keep serving read only traffic if the control plane dies?&lt;br&gt;
Can we rebuild from another account, another org, or another provider?&lt;/p&gt;

&lt;p&gt;That is not as sexy as "active active multi cloud."&lt;/p&gt;

&lt;p&gt;But it is probably more useful.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The real takeaway&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Railway did have redundancy.&lt;/p&gt;

&lt;p&gt;Just not for the layer that failed.&lt;/p&gt;

&lt;p&gt;And that is the uncomfortable lesson for the rest of us.&lt;/p&gt;

&lt;p&gt;Redundancy at the compute layer does not protect you from account suspension.&lt;/p&gt;

&lt;p&gt;Multi region databases do not protect you from provider level identity actions.&lt;/p&gt;

&lt;p&gt;Healthy servers do not help when routing control planes cannot tell traffic where to go.&lt;/p&gt;

&lt;p&gt;And getting your cloud account back does not mean your service is back.&lt;/p&gt;

&lt;p&gt;The next resilience review should not only ask:&lt;/p&gt;

&lt;p&gt;"What happens if a region dies?"&lt;/p&gt;

&lt;p&gt;It should also ask:&lt;/p&gt;

&lt;p&gt;"What happens if our cloud provider suspends our production account by mistake tonight?"&lt;/p&gt;

</description>
      <category>aws</category>
      <category>runway</category>
      <category>architecture</category>
      <category>gcp</category>
    </item>
  </channel>
</rss>
