Welcome back. Google just gave NotebookLM a major visual upgrade. Building on the basic video features released last year, the new output looks completely different from anything the tool has produced before.

Also: How an engineer runs 30 coding agents in parallel, what Karpathy deleted in 2023 and just reposted, and how to fine-tune LLMs.

Today’s Insights

  • Powerful new updates and hacks for devs

  • The code review bottleneck

  • How to auto-format Claude Code's output

  • Trending social posts, top repos, and more

TODAY IN PROGRAMMING

Click here to watch the tutorial.

Google's NotebookLM turns files into cinematic videos: NotebookLM just rolled out Cinematic Video Overviews, a big step up for its Studio feature that turns your uploaded files into polished videos. It moves beyond the old narrated slide look by using Gemini 3 and Veo 3 to handle everything from the storytelling flow to the visual design. You can drop in a technical spec, API docs, or an architecture diagram, and it turns that dense material into a structured video explainer.

OpenAI revises its Pentagon deal after employee backlash: The ChatGPT maker amended its Department of War contract following employee pushback, user cancellations, and a reported surge in Anthropic sign-ups. CEO Sam Altman publicly disclosed the new terms, which state that the AI won't be used for domestic surveillance of U.S. citizens, and intelligence agencies like the NSA are explicitly barred from the agreement unless a formal contract modification is made.

Google ships a Workspace CLI built for humans and agents: The search giant just open-sourced gws CLI, a single terminal tool for managing Drive, Gmail, Calendar, Sheets, and more. It's built with Rust and comes with dynamic command generation, JSON outputs, and over 40 pre-built agent skills. Just install it through npm and automate your Workspace tasks from the command line.

Delve is the AI-native compliance platform that actually does the work for you, auto-collecting evidence from AWS, GitHub, and your stack so you’re not chasing screenshots or babysitting integrations. Use AI security questionnaires and an AI copilot to make compliance less dreadful.

The proof is in the pudding:

  • Bland unlocked $500k ARR in 7 days. 

  • 11x streamlined audits and moved faster on enterprise deals. 

  • micro1 scaled compliance without adding headcount.

Free migration. Zero disruption. No starting over.

Book a demo, trigger your migration, and get $2,000 when you’re onboarded.

INSIGHT

The code review bottleneck is getting harder to ignore

Source: X/petergyang

The infinite scroll of PRs. A YC founder dropped an essay this week with a bold claim: human written code died in 2025, and code reviews are next. The piece is sparking real debate, and the pushback is just as interesting as the original take.

Mo code, mo problems. AI adoption is flooding systems with more PRs (pull requests) and more diffs (code changes). Review times are skyrocketing because AI code actually takes more effort to check than a teammate’s work. If AI writes the code and AI reviews it, what exactly is the human approving? The PR was built for people working at a human pace. In this new reality, it just doesn't fit.

The skeptics have a point. Django co-creator Simon Willison nails the real concern: security. How do teams stay safe when dozens of groups are shipping constantly? Kill the review gate, and you might just be fast-tracking a disaster.

So what fills the gap? The real move is shifting human judgment upstream by focusing on specs and constraints rather than diffs. It’s a compelling shift, but most teams haven’t figured out how to actually make it work yet.

IN THE KNOW

What’s trending on socials and headlines

Meme of the day.

  • Before Everyone Does: Google quietly dropped a Gemini 2.0 Flash-Lite guide for devs with 7 use cases.

  • 30 for 30: A dev swapped his 30-person engineering team for 30 AI agents. Twelve days later: 44K lines of TypeScript, 175 PRs, 1,500+ tests.

  • Anthropic Comeback: This viral chart shows just how quickly Anthropic has won market share from OpenAI since early 2025.

  • Delete, Undelete: Andrej Karpathy deleted a diagram in 2023 because it looked too radical. He just reposted it because it doesn't anymore.

  • No Labels: Fine-tuning in 2026 doesn't need labeled datasets or reward functions. Here's what it needs instead.

  • Earned Reading: A software engineer with 15+ years just shared the 14 articles he'd go back and read again.

  • Land Grab: The OpenClaw ecosystem is 3 months old. Here are 11 businesses you can still build before the window closes.

AI CODING HACK

How to auto-format Claude Code's output

Source: X/bcherny

Claude usually writes clean code, but that final 10% of formatting inconsistencies means you're still stuck running your formatter manually before you can push anything.

Creator of Claude Code, Boris Cherny, shared a simple fix: a “PostToolUse” hook that automatically triggers your formatter every time Claude writes or edits a file.

To set it up, open ".claude/settings.json" for a specific project, or "~/.claude/settings.json" to apply it globally. Just add the following block:

"PostToolUse": [
  {
    "matcher": "Write|Edit",
    "hooks": [
      {
        "type": "command",
        "command": "bun run format || true"
      }
    ]
  }
]

Using “|| true” prevents Claude from crashing if the formatting script hits an error and ensures every file Claude modifies is automatically formatted before it even reaches you.

TOP & TRENDING RESOURCES

Click here to watch the tutorial.

Top Tutorial

How to build and scale voice agents: This tutorial shows devs how to build and scale fast, responsive voice AI agents. You will learn how to use NVIDIA Nemotron, Modal, and Daily's Pipecat framework to manage real time speech processing and tool calling while reducing latency for natural conversations.

Top Repo

Claude-Code-best-practice: A complete collection of Claude Code resources that serves as a practical reference for devs building structured AI workflows.

Trending Paper

Tracing the thoughts of LLMs (by Anthropic): During training, AI models often develop hidden problem-solving strategies that remain difficult for developers to interpret. By mapping these internal processes, researchers found that Claude is capable of planning ahead, bridging concepts across different languages, and even faking its own reasoning.

Grow customers & revenue: Join companies like Google, IBM, and Datadog. Showcase your product to our 200K+ engineers and 100K+ followers on socials. Get in touch.

Whenever you’re ready to take the next step

What did you think of today's newsletter?

Your feedback helps us create better emails for you!

Login or Subscribe to participate

You can also reply directly to this email if you have suggestions, feedback, or questions.

Until next time — The Code team

Keep Reading