Sunday, 09 August 2026
Anthropic claims Claude Code's auto mode blocked all 720 third-party injection attempts; Shopify migrates inventory reservations from Redis to MySQL; programmers push back against AI-era dismissal of coding skill
Today's Lead
EngineeringSimon Willison
Auto Mode Is Now the Default in Claude Code for Pro, Max, and Team Plans
Anthropic makes auto mode the default for Claude Code on paid plans starting August 14th. Safety tests show auto mode blocks 89% of harmful commands, compared to 13.6% rejection by human reviewers. Third-party testing found that 720 prompt injection attacks failed against auto mode.
senko.net
"Code Was Never the Hard Part" Is an Insult to All Programmers
The author challenges the false claim that coding is easy and that deciding what to build is harder. Coding requires substantial skill because programmers have high salaries, face burnout, and study rigorous technical material. Programmers should develop skills in user experience and business strategy and keep personal accountability for their decisions.
Read →Shopify Engineering
We Replaced Redis with MySQL for Inventory Reservations—and It Scaled
Shopify migrated inventory reservations from Redis to MySQL to handle high scale. The system stores one row per sellable unit and uses SKIP LOCKED transactions for consistency. Connection pool exhaustion was the actual bottleneck, not database performance. Optimization of checkout processes reduced primary reads by fifty percent. The system now handles 5.1 million dollars in sales per minute.
Read →specification.website
A DNS standard allows domain owners to signal that their domain is for sale. The owner publishes a TXT record at _for-sale to indicate the domain is available for purchase. Brokers can discover these domains through DNS lookups without affecting the live website.
Read →Fastmail Blog
Fastmail Offers EU Data Region
Fastmail launches a data center in Amsterdam. Users store email and data in Europe. The company built the infrastructure and manages it in-house. Data encryption protects stored files. Users control their data region with no extra cost. Fastmail keeps backups in the United States.
Read →dbushell.com
Sublime Text: A Return to Simplicity
A developer returns to Sublime Text after using modern editors like VS Code and Zed. Sublime Text provides stable work without intrusive notifications or extra features that slow development. The author argues that effective tools need reliability and focus, not constant updates or feature growth.
Read →andrewt.net
How to Make Error-Diffused QR Codes
QR codes can embed photographs while staying scannable. The method uses error-diffusion dithering to reduce noise. First pass fixes errors from required QR data modules. Second pass applies Floyd-Steinberg dithering to the image. This approach improves appearance but reduces error correction capability. Less robust codes may fail on damaged or crumpled surfaces.
Read →