惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
B
Blog
aimingoo的专栏
aimingoo的专栏
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
月光博客
月光博客
H
Help Net Security
V
Visual Studio Blog
量子位
A
About on SuperTechFans
博客园 - Franky
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
George Hotz called AI code 'slop.' He's half right.
Aditya Agarwal · 2026-05-26 · via DEV Community

When George Hotz described AI-generated code as "slop," everyone knew exactly what he meant.

His blog post, "The Eternal Sloptember," names something that's been nagging at every developer who's spent real time with AI coding tools. The code appears correct. It performs correctly. And then you ship it, and something quietly breaks in a way that takes you three hours to trace.

The Thesis That Hit a Nerve

According to Hotz, AI generates "statistically plausible but subtly broken code." This encapsulates exactly how I've sensed things for a while now. The AI almost nails the solution. It almost gets the imports correct, the function signatures correct, the overall flow correct.

However, the final 10% that includes edge cases, error handling, strange interactions between your auth middleware, and that one legacy endpoint, is not as successful. Yet, that final 10% is the most important part.

He's Right: AI Front-Loads Progress

Here is something AI is actually really good at. It can get you from zero to "looks like it works" faster than any tool previously created.

→ Scaffolding a new feature? Incredible.
→ Writing boilerplate CRUD routes? Chef's kiss.
→ Generating test stubs? Solid starting point.

The first 90% of a task feels like magic. You're flying. You feel like a 10x engineer. Then you hit the wall — the part where the code needs to actually be correct, not just plausible. That's where AI taps out and you're back to being a regular human reading stack traces.

He's Wrong: The Tool Isn't the Problem

This is where I depart from the "Eternal Sloptember" narrative. Hotz's argument suggests that AI code is inherently sloppy. I'd argue that developers are simply erroneously treating the AI's writing as final code, rather than a rough draft.

A first draft you don't review is slop. A first draft you refine is a workflow advantage. The distinction is entirely on the human side.

The growing concern — that AI empowers low-performing devs to generate 10x more low-quality code — is real. However, this is not an AI issue. It's a code review issue. It's a team standards issue. We've always had bad developers writing bad code. They were just writing it by hand. 🤷

The Actual Danger Nobody Talks About

The scariest part isn't bad code. It's the confidence bad code ships with.

When you struggle through writing something yourself, you have a mental model of where it's fragile. You know which parts you're unsure about. When AI writes it for you, that mental model doesn't exist. You merge code you can't fully reason about, and you don't even know what you don't know.

That's the actual problem. Not the syntax. It's the lack of understanding.

Where This Leaves Us

Hotz makes a good point, but the reality is that AI code can be sloppy if you allow it to be. The fact is that the tool is exceptionally good at getting you to the 90-yard line. However, software engineering has never been about getting to the 90-yard line. It has always been about the last 10 yards.

The developers who thrive with AI will be the ones who treat it like a fast but careless junior engineer: useful, productive, and absolutely not to be trusted without review.

So here's my question: have you changed your code review process since your team started using AI tools? Or are you reviewing AI-generated code the same way you review human-written code?