WEBVTT
NOTE The Rundown — nextbig.dev daily audio edition, 2026-03-12

1
00:00:00.000 --> 00:00:07.321
<v Marcus>Hey everyone, welcome to the Builder's Briefing for March 12th, 2026. I'm Alex, here with Sam, and we've got a packed one today — Cloudflare just dropped something big for anyone building AI pipelines, there's a billion-dollar bet on world models, and we need to talk about JavaScript finally fixing time.

2
00:00:07.321 --> 00:00:12.745
<v Nadia>Yeah, also some really practical stuff today around running agents while you sleep, running hundred-billion parameter models on CPUs, and an SSH trick that went viral that honestly I'm a little embarrassed I didn't know about.

3
00:00:12.745 --> 00:00:19.610
<v Marcus>Love it. Let's jump in. So the big story — Cloudflare quietly shipped a crawl endpoint in their developer platform. If you're building anything that needs to pull data from the live web — think RAG pipelines, AI agents that browse, competitive intel tools — this is kind of a huge deal.

4
00:00:19.610 --> 00:00:25.010
<v Nadia>Right, and what's wild is this replaces what used to be a whole side project. You know, duct-taping Puppeteer to a headless browser on some random VPS, babysitting browser pools. Cloudflare just made that a managed primitive.

5
00:00:25.010 --> 00:00:32.019
<v Marcus>Exactly. And the key insight is Cloudflare already sits in front of roughly twenty percent of the web. They can render JavaScript-heavy pages at their edge without you maintaining any infrastructure. Pair that with Workers AI and you've got a fetch, parse, embed pipeline all on one platform.

6
00:00:32.019 --> 00:00:38.284
<v Nadia>This is the part where if you're building a web scraping startup, you should be nervous. This is the Twilio moment — the platform is eating your margin. But for builders? This is amazing. The 'give your agent access to the live web' problem just got way easier.

7
00:00:38.284 --> 00:00:44.932
<v Marcus>Cloudflare is methodically assembling the full AI-native stack — compute, inference, storage, and now data acquisition. I'd bet we see an integrated web research primitive from them within six months. Link in the briefing if you want to benchmark it against your current setup.

8
00:00:44.932 --> 00:00:49.301
<v Nadia>Strongly recommend doing that benchmark, by the way. If you're running Playwright or Scrapy for data ingestion, just try it side by side. The edge rendering alone might surprise you.

9
00:00:49.301 --> 00:00:54.869
<v Marcus>Alright, shifting to AI and models. A couple of big ones here. First — Fish Speech is trending hard on GitHub, over thirteen hundred engagement. It's currently the best open-source text-to-speech model, and it's fully self-hostable.

10
00:00:54.869 --> 00:01:01.446
<v Nadia>That's interesting because the self-hosting part really matters. If you're building voice features — chatbots, narration, accessibility — you can drop this in and stop paying for proprietary TTS APIs. Latency-sensitive and privacy-conscious deployments, this is your answer.

11
00:01:01.446 --> 00:01:08.022
<v Marcus>Then there's the headline grabber — Yann LeCun just raised a billion dollars at Meta for world-model AI. This is about moving beyond LLMs toward spatial and physical reasoning. Not actionable today, but if you're in robotics or embodied AI, this is a massive funding signal.

12
00:01:08.022 --> 00:01:14.431
<v Nadia>And on the more immediately practical side, Microsoft's BitNet — you can now run hundred-billion parameter models on CPUs. No GPU required. One-bit quantization. You trade some accuracy for dramatic efficiency, but for offline-first or edge deployments? Game changer.

13
00:01:14.431 --> 00:01:19.352
<v Marcus>Now here's where today's stories start connecting. There was a huge Hacker News thread — two hundred eighty-four comments — on running Claude-based coding agents overnight. Agents that run while you sleep.

14
00:01:19.352 --> 00:01:25.904
<v Nadia>I went deep on this one. The real value isn't the concept, it's the emerging patterns people are sharing — task decomposition, checkpoint and resume, and critically, the guardrails you need so your agent doesn't go completely off the rails at three AM with no one watching.

15
00:01:25.904 --> 00:01:32.505
<v Marcus>And then there's CCG-Workflow, an open-source toolkit that routes between Claude Code, Codex, and Gemini with seventeen-plus commands. Basically a unified interface to play models against each other. If you're tired of being locked into one AI coding assistant, check it out.

16
00:01:32.505 --> 00:01:39.201
<v Nadia>Oh, and one more on the AI side that people need to see — Codewall published a detailed breakdown of how they compromised McKinsey's AI platform through agent-based attack vectors. Prompt injection is just the beginning. Every tool you give your agent expands the attack surface.

17
00:01:39.201 --> 00:01:42.754
<v Marcus>Required reading if you're exposing agents to external inputs. Link in the briefing. Okay, dev tools — Sam, I know you've been waiting for this one.

18
00:01:42.754 --> 00:01:49.978
<v Nadia>The Temporal API! Nine years in the making. Bloomberg's engineering blog documented the whole journey. JavaScript is finally, finally replacing the Date object with proper timezone, calendar, and duration support. If you've ever wrapped moment.js or date-fns and felt dirty about it, relief is coming.

19
00:01:49.978 --> 00:01:53.507
<v Marcus>It's landing in engines now. Start experimenting. This will eliminate an entire class of bugs that every JavaScript developer has suffered through.

20
00:01:53.507 --> 00:01:59.027
<v Nadia>Also trending — difftastic. It gives you syntax-aware diffs that understand your code's AST instead of just comparing lines. So it won't flag moved-but-unchanged code as modified. Incredibly useful in code review pipelines and CI.

21
00:01:59.027 --> 00:02:05.964
<v Marcus>And a quick nod to Mozilla pushing WebAssembly toward first-class web language status — direct DOM access, garbage collection integration, component model support. If you're shipping compute-heavy client-side features, this removes the JavaScript interop tax that's been holding Wasm back.

22
00:02:05.964 --> 00:02:08.676
<v Nadia>That's been the pain point forever. The bridge between Wasm and the DOM has been the bottleneck, not Wasm itself.

23
00:02:08.676 --> 00:02:14.581
<v Marcus>Quick hit on security and infra — Google's Wiz acquisition officially closed. If you're a Wiz customer, expect deeper GCP integration. If you're multi-cloud, maybe some friction ahead. The independent cloud security market just got a lot smaller.

24
00:02:14.581 --> 00:02:21.109
<v Nadia>And the fun one — SSH has a secret menu. A viral thread showed off the hidden escape sequences. Tilde-question-mark during a session. Tilde-dot to kill a hung connection. Tilde-C for command-line mode. Honestly, share this with your team. Half of them won't know about it.

25
00:02:21.109 --> 00:02:27.062
<v Marcus>I will admit I only knew tilde-dot. So here's the big takeaway from today. Three threads are converging — Cloudflare's crawl endpoint, multi-model agent toolkits like CCG-Workflow, and the overnight agents pattern. They all point to the same shift.

26
00:02:27.062 --> 00:02:32.126
<v Nadia>Right — the AI builder stack is moving from 'call an API and parse the response' to 'orchestrate autonomous pipelines that acquire data, reason over it, and ship code.' It's not about single model calls anymore.

27
00:02:32.126 --> 00:02:39.711
<v Marcus>If you're building AI features, start thinking in terms of infrastructure for agent loops — data ingestion with something like Cloudflare's crawl, model routing with tools like CCG-Workflow, and async execution with those overnight agent patterns. The builders who wire these together first get compounding leverage.

28
00:02:39.711 --> 00:02:43.119
<v Nadia>And the cool part is all of this is available right now. Open source, managed services, real patterns from real teams. This isn't theoretical.

29
00:02:43.119 --> 00:02:46.552
<v Marcus>That's the briefing for March 12th. Links to everything we mentioned are in the show notes. If any of this was useful, share it with your team.

30
00:02:46.552 --> 00:02:49.000
<v Nadia>Go build something. And maybe let an agent build something while you sleep tonight. See you next time.
