Archive BRAIXD
The token burn, the terminal flicker, and the architecture between / DISPATCH 049
PDF RSS

Dispatch 049 · 2026-06-12 braixd

The token burn, the terminal flicker, and the architecture between

/ 00:13:58 / 7 sources

“If coding is solved, do you need feature branches? You don't. Somebody's lying to you.”

— Seln Oriax, today's narration

Nate B Jones reports his Codex Max account burned 510 million tokens in a single day. That's not from more prompting—it's from the unit of work shifting from discrete answers to continuous agent jobs. OpenAI's new Sites feature collapses the cost of web publishing to near zero, making live URLs the default knowledge artifact instead of PDFs and spreadsheets.

We check that paradigm shift against reality: Anthropic and Claude Code creator Boris claim "coding is solved" while their own toolchain has an unresolved terminal flickering bug reported for over a year. The UK Government Cyber Coordination Centre runs frontier models against public repos and finds 407 vulnerabilities for £13,000 in tokens—structure matters more than model choice.

Arvind Narayanan points out why AI experiences polarize so sharply: experts see growth cycles; non-experts see broken workflows. And a credential stealer hides in astro.config.mjs using blockchain for command-and-control—config-as-code is the new postinstall attack surface.

Oracle's capex hits $70B annually while free cash flow stays negative. The infrastructure reality behind the agent narrative doesn't lie.

Chapters

  1. 00:00:04 The token burn
  2. 00:03:34 The gap between claim and product
  3. 00:06:50 Why your AI experience will be nothing like mine
  4. 00:10:11 The attack surface and the capital reality
  5. 00:13:27 Sign-off

Sources

7 cited
  1. 1

    Only 1 in 1,600 People Use Codex. Here's How to Catch Up.

    Source Nate B Jones

    Codex token consumption hitting 510 million tokens in a single day — not from more prompting, but from larger unit of work. The shift from human-as-router to humans delegating above the computing stack.

    www.youtube.com/watch?v=xqGCbEDbny8 →
    Details
    Excerpt
    Codex token consumption hitting 510 million tokens in a single day — not from more prompting, but from larger unit of work. The shift from human-as-router to humans delegating above the computing stack.
    Context
    The token burn is behavioral proof that the unit of computation is shifting from bits-bytes-apps to tokens-agents-jobs. Whether this specific implementation converges or not, the paradigm has moved.
    Key points
    • Codex Max user burned 510M tokens in one day (May 20), now consistently at 300-500M/day
    • Most computer work is now routed through agents rather than apps directly
    • Chief of Staff thread pattern separates planning from execution and sub-agent scope
    • Skills turn repeated corrections into reusable compounding workflows
    Provenance
    Source · Background source
  2. 2

    I Think They Are Lying To You

    Source The PrimeTime (Anthony)

    Challenges Anthropic and Boris's "coding is solved" claim by documenting Claude Code's own unresolved terminal flickering bug (reported Feb 2025, still not fully fixed after 14+ months), session isolation failures, and…

    www.youtube.com/watch?v=zfYsSFY4l18 →
    Details
    Excerpt
    Challenges Anthropic and Boris's "coding is solved" claim by documenting Claude Code's own unresolved terminal flickering bug (reported Feb 2025, still not fully fixed after 14+ months), session isolation failures, and an $85 reduction claim that was rolled back days later.
    Context
    It's one thing for a marketing team to say coding is solved. It's another when the tool they're selling can't render text in its own terminal without flickering. The gap between claim and product reality tells you something about what's actually been solved.
    Key points
    • Claude Code terminal flickering bug reported within weeks of Feb 2025 research release
    • Anthropic claimed 85% flicker reduction in Dec 2025 but rolled back the change days later
    • Feature-flagged 'no flicker mode' arrived in April 2026 via alternate rendering path, not a fix
    • Session isolation issues — users receiving other users' prompts and responses — remain unresolved
    Provenance
    Source · Background source
  3. 3

    Arvind Narayanan (random_walker)

    X Arvind Narayanan (random_walker)

    Points out that the divide in AI experience comes down to one question: are you using it for tasks you're already an expert at, or tasks you can't do yourself? The former leads to a growth cycle; the latter leads to the…

    x.com/random_walker/status/2065408097640677… →
    Details
    Excerpt
    Points out that the divide in AI experience comes down to one question: are you using it for tasks you're already an expert at, or tasks you can't do yourself? The former leads to a growth cycle; the latter leads to the opposite.
    Context
    This explains the polarization in AI discourse. Half the industry reports a growth cycle; the other half reports broken workflows. They're often using the same model and reporting from different sides of the expertise gap.
    Key points
    • People who use AI for tasks they're already experts in see accelerated growth
    • People who use AI for tasks they can't do themselves often get worse outcomes
    • The same model produces radically different experiences depending on user expertise level
    Provenance
    Tweet · Primary source
  4. 4

    Department for Science, Innovation and Technology (UK Government)

    Article Department for Science, Innovation and Technology (UK Government)

    Government Cyber Coordination Centre ran frontier models against public government code repositories. Found 407 findings including critical vulnerabilities — authentication bypass, remote code execution — at £13,000 in…

    www.gov.uk/government/case-studies/when-ai-… →
    Details
    Excerpt
    Government Cyber Coordination Centre ran frontier models against public government code repositories. Found 407 findings including critical vulnerabilities — authentication bypass, remote code execution — at £13,000 in token costs across nine organizations for one month. Structure matters more than model choice.
    Context
    This is what real AI infrastructure work looks like at the government scale: 407 findings for £13K, human triage required, structure over model. A useful baseline for calibrating expectations.
    Key points
    • £13,000 in tokens found 407 findings including critical auth bypass and RCE vulnerabilities
    • The strongest results came from models used as tightly scoped components inside structured pipelines
    • Model mattered less than task design — near-frontier and frontier models performed comparably at scanning code
    • Finding is not the same as fixing — all findings still had to enter the patch pipeline
    Provenance
    Article · Supporting source
  5. 5

    SafeDep

    Article SafeDep

    A fake bug fix PR in a 57k-star repo hid a credential stealer in astro.config.mjs. The payload uses blockchain (Tron/BSC) for command and control relay, exfiltrates campaign markers, and can't be blocked via IP because…

    safedep.io/astro-config-blockchain-c2-suppl… →
    Details
    Excerpt
    A fake bug fix PR in a 57k-star repo hid a credential stealer in astro.config.mjs. The payload uses blockchain (Tron/BSC) for command and control relay, exfiltrates campaign markers, and can't be blocked via IP because it uses public blockchain RPC nodes.
    Context
    As agents start executing on our codebases and configs, the attack surface expands from dependency graphs into the build pipeline itself. Every dev run becomes a potential execution point for hidden payloads.
    Key points
    • PR #206 against Egonex-AI/Understand-Anything hid an obfuscated IIFE in astro.config.mjs
    • Payload beacons C2 servers and resolves commands from a Tron blockchain address via public RPC nodes
    • astro.config.mjs executes as a live Node.js module on every build/dev/preview — no sandbox, no opt-out
    • Config-as-code is the new postinstall attack surface
    Provenance
    Article · Supporting source
  6. 6

    Jordan Novet (CNBC)

    Article Jordan Novet (CNBC)

    Oracle shares fell 8% on news of an additional $20 billion capital raise, bringing total to $40 billion. Free cash flow was negative $23.7 billion for the year. Capex jumped 162% to $55.7 billion. New CFO said net cash…

    www.cnbc.com/2026/06/11/oracle-shares-tumbl… →
    Details
    Excerpt
    Oracle shares fell 8% on news of an additional $20 billion capital raise, bringing total to $40 billion. Free cash flow was negative $23.7 billion for the year. Capex jumped 162% to $55.7 billion. New CFO said net cash outlay for capex in fiscal 2027 will be around $70 billion.
    Context
    The capital story matters because it grounds the agent narrative in real-world economics. $70 billion in annual capex isn't trivial — and the market is questioning whether that spend translates to profit, not just code velocity claims.
    Key points
    • Oracle planning $40B capital raise ($20B equity + $20B debt)
    • Free cash flow negative $23.7 billion for fiscal 2026
    • Capex jumped 162% to $55.7B; fiscal 2027 capex expected around $70B
    • Cloud infrastructure revenue up 93% to $5.8B; remaining performance obligation hit $638B
    Provenance
    Article · Supporting source
  7. 7

    10 Sites Knowledge Workers Should Build with AI

    Source The AI Daily Brief

    OpenAI announced 'Sites' in Codex — a simplified way to publish AI-generated code as interactive web apps. This collapses the marginal cost of web development to near zero, making websites the default artifact for knowl…

    www.youtube.com/watch?v=45UGHbqq2fQ →
    Details
    Excerpt
    OpenAI announced 'Sites' in Codex — a simplified way to publish AI-generated code as interactive web apps. This collapses the marginal cost of web development to near zero, making websites the default artifact for knowledge work instead of PDFs, spreadsheets, or slide decks.
    Context
    Sites are the natural extension of the agent paradigm — if your computer is routing through agents, the output of those agents should be live URLs, not static files. This changes how knowledge compounds and gets distributed.
    Key points
    • OpenAI Sites feature lets you publish AI-generated code as interactive websites without external hosting
    • Websites solve version currency, distribution friction, and navigation constraints that downloadable files can't
    • Knowledge work artifacts (decks, memos, spreadsheets) become better as navigable, live URLs
    Provenance
    Source · Background source