Welcome back. Devs love running AI workflows on their Macs, and Apple is taking note (remember the OpenClaw Mac Mini frenzy?). The iPhone maker just released new machines that will help devs host heavier workloads locally. But that’s not the only update for local AI enthusiasts: OpenAI is officially taking on Nvidia with their first-ever inference chip.
Also: See why Shopify’s CEO wants to ban Claude Code, creating stunning art images using JavaScript, and how to run local models with Mac Ultra Studio.
Today’s Brief
How Silicon Valley devs tackle PR overflow
A dev gave his agents their virtual office
How devs should use Grok Bot (tutorial)
Building your own coding harness (cookbook)

TODAY IN PROGRAMMING
Apple's new Macs are local AI powerhouses: The iPhone maker just dropped two new silicon chips. The M6 debuts in a Mac mini as the first 2nm processor from Apple, and the M5 Ultra powers a refreshed Mac Studio with up to 512 GB of unified memory, so you can run big models on your desk without touching the cloud. Apple even tucked Neural Accelerators into every GPU core for a serious AI speed boost. They're claiming it handles LLM prompts up to 9.8x faster than the M1 Ultra. You can check it out and preorder here.
Stripe blocked $300M in fraud aimed at an AI coding startup: The team behind coding harness OpenCode says Stripe just blocked about $300M in fraudulent charges. That is actually more than the startup even makes, according to co-founder Dax Raad. The target was OpenCode Go, a $10 a month flat plan. Scammers are using stolen cards to open thousands of accounts and resell tokens. If your product sells subsidized flat rate access to models, fraud defense is now a core engineering responsibility. Raad says these charges could have sunk the company overnight.
OpenAI's debut chip claims a lead over Nvidia's Blackwell: The ChatGPT maker just dropped the first benchmarks for Jalapeño, the inference chip it built with Broadcom. The company says it beats Nvidia's GB200 and GB300 systems on speed and efficiency. It also runs models like GPT-OSS and DeepSeek R1 more effectively than most. For devs, that could mean faster ChatGPT responses and snappier agents. You can also expect cheaper tokens and steadier access as the chip rolls out through 2027. Just a heads-up, it’s built strictly for inference, so it won’t be used for training.

PRESENTED BY TIGERDATA
Your analytics in another database? That's pipelines, sync lag, and data drift—hidden costs in every query.
Tiger Data is Postgres, purpose-built for time-series and analytics at scale. Hypertables handle billions of rows. 95% compression cuts storage costs. Continuous aggregates power real-time dashboards without the infrastructure headache.
Everything you chose Postgres for: reliability, SQL you know, ecosystem you trust—plus time-series power at scale.
No sharding. No trade-offs. No separate database.
Built by the TimescaleDB team. One database. Full power. Your analytics stay fast, your pipelines disappear, your data stays true.

INSIGHT
So you’re swamped with PRs that you cannot read, here’s how devs in Silicon Valley handle it:

Made with Midjourney. Source: The Code.
Slop wins by default. Your coding agent now writes more in an afternoon than you can read in a week, and that's where slop creeps in. You skim PRs, approve requests, and let code quality drift toward whatever passes a glance. Tech founder David Zhang’s viral essay on "software factories" points to the fix: reading every line isn't feasible anymore, so you test what the code does instead. Think of the codebase as a black box. You stop worrying about the internal mechanics and focus solely on making sure the right input always delivers the right output.
Here’s how that works:
Divide the codebase into small pieces, each with clear inputs and outputs.
Attach sensors, run the functions, and examine the outputs. Do not read the implementation.
Keep four things readable per piece: Invariants (what must always be true, in a form you can check), traces (what happened on a real run), attack surface (what the piece touches and may touch), and decisions (every choice made where the spec was silent).
Get a ranked decision ledger from the agent after each run: Start with the ones you trust the least. Read the decisions, not the code. A long run generates thousands of lines, but you can skim about thirty and focus on the four that don't look right.
Keep the auditor separate from the implementer. Use an independent sub-agent that can't change code. This keeps the audit reports honest.
Where to start. You don't need a total overhaul to get going. Just pick one messy section, define its inputs and outputs, and have your agent generate a ranked decision ledger. Read those decisions instead of the diff and see what jumps out.
P.S. Zhang has open-sourced the skills he uses to run the full loop, and they drop into Claude Code, Cursor, Codex, or any tool that supports skills.

PRESENTED BY SONAR
Gitar automatically reviews pull requests, providing AI-powered feedback on security, bugs, performance, edge cases, and code quality. It analyzes your CI pipelines and fixes CI failures on your PRs. Not just comments: real fixes, until your pipeline passes.

IN THE KNOW
What’s trending on socials and headlines

Meme of the day.
Config Clash: Shopify's CEO is threatening to ban Claude Code because it won't read AGENTS.md. Anthropic replied, and now the whole exchange is going viral (1.5M views).
Virtual Agent Office: A dev swapped out the chat interface for his Codex agents for something way more fun. Now, he can literally watch them work in real-time (2.1K likes).
Comprehend Code: Agents are pumping out code so fast we're losing track of how our own apps actually work. This former Google engineer has a fix to help you take back control before the machines take over.
Digital Art: A dev just shared how he taught a coding model to paint stunning water coloured flowers using JavaScript. The results are actually pretty impressive (1.4M views).
One Advice: Zoho's founder says engineers starting a business should do one uncomfortable thing first. He calls it obvious advice that still needs to be said (6.2K likes).
Local AI (at $200): A dev claims you can now lease the new Mac Ultra Studio at the price of a Claude Max subscription. This means you can just run models locally for yourself without limits (3.6K likes).

TOP & TRENDING RESOURCES
Top Tutorial
How devs should use Grok Bot: This tutorial guides developers through setting up Grok Bot for AI agent automation. You'll learn to configure permissions, connect plugins like Notion, Gmail, and Cursor, and build multi-bot chains that automate web scraping, prompt preparation, and cross-platform data retrieval.
Top Repo
Headlong: Self-guided agents that keep thinking. This open-source microharness gives agents a continuous inner loop, so they don’t stop when the prompt ends. They can set priorities, kick off their own work, and ping you with updates as they go. It's alpha software that runs shell commands around the clock, roughly $1–2/hour in tokens
Trending Cookbook
Build Your Own AI Coding Agent Harness (by Vercel): A basic tool loop breaks down fast on real coding work. This hands-on guide shows you how to build a working harness from scratch, covering tool design, safety gates, sandboxes, context pruning, subagents, human approvals, planning, verification, and extensibility.

AI CODING HACK
How to get Codex to review Claude Code's work
Claude Code checks its own code, so it misses its own mistakes. OpenAI released an official Codex plugin that reviews Claude's changes without leaving the terminal.
Step 1: Install the plugin. You need Node 18.18+ and a ChatGPT account (free works) or API key.
/plugin marketplace add openai/codex-plugin-cc
/plugin install codex@openai-codex
/reload-pluginsStep 2: Check if Codex is installed and logged in. Setup can install it for you.
/codex:setupStep 3: Review your uncommitted changes in the background. Check progress with /codex:status.
/codex:review --backgroundCodex only reads here. To hand it a bug to fix, run /codex:rescue followed by a plain-English task.
P.S. Get 50+ AI coding hacks for Claude Code, Cursor, and Codex here.

IN CASE YOU MISSED IT
Our most-clicked story from yesterday
Andrew Ng shared the 6 skills you need to build and deploy AI apps, including the one thing that separates top-tier AI engineers from the rest.
Grow customers & revenue: Join companies like Google, IBM, and Datadog. Showcase your product to our 300K+ engineers and 150K+ followers on socials. Get in touch.
What did you think of today's newsletter?
You can also reply directly to this email if you have suggestions, feedback, or questions.
Until next time — The Code team





