this post was submitted on 14 Mar 2026
209 points (99.1% liked)

Fuck AI

6484 readers
1037 users here now

"We did it, Patrick! We made a technological breakthrough!"

A place for all those who loathe AI to discuss things, post articles, and ridicule the AI hype. Proud supporter of working people. And proud booer of SXSW 2024.

AI, in this case, refers to LLMs, GPT technology, and anything listed as "AI" meant to increase market valuations.

founded 2 years ago
MODERATORS
 

Amazon is tightening software development controls after several internal code errors caused major outages that disrupted millions of customer orders. The company launched a 90-day “code safety reset” requiring stricter reviews and approvals before deploying changes to critical systems. The move also reflects concerns about risks from faster development using AI coding tools.

#Amazon #TechNews #AI #SoftwareEngineering #CloudComputing #DevOps #CyberReliability

you are viewing a single comment's thread
view the rest of the comments
[–] cloudy1999@sh.itjust.works 10 points 1 week ago

I've seen a lot of comparisons likening LLM code generation to how compilers and high level languages eventually removed the need for programmers to understand machine code. Arguments about determinism and code quality aside, I still think it's a false equivalence. Even if LLMs produced beautiful, ideal code, they fundamentally remove a programmer's understanding of what exactly is present in the logic. Mishaps are inevitable.

To prevent them, experienced programmers will do what it takes to produce human understanding and quality in spite of code generation. Yes, read the generated code. Yes, do code reviews with trusted peers. Yes, write/generate unit tests. There are even novel ideas about having LLMs interview us to make sure we understand the generated code's purpose. That's not the same as compilers, and it's not the story AI companies have told us.

Just like in the beginning: Programming languages are made for programmers, not for machines. It's on us to understand.