Comment coders != programmers (Score 1) 150
The problem with the summery is we don't know what these "programmers" use as a language, why does it matter? Because even Claude can't get assembler or C/C++ right on the first try in complex projects (14K lines or more). Think CAD applications or indie game engines, that's programming, writing a script in JS or Python isn't programming, you're scripting, that is huge difference. There is no memory or pointers or anything that can do wrong an a very bad way.
An embedded engineer isn't going to say "gee I wish I had an AI to write my code" it just isn't going to happen, why? Because to understand this level of programming you need to truly understand what is happening at the hardware level, AI can guess, but never actually know, and this is a problem.
Easy way to prove this is ask any AI to write a bootloader from scratch, and try to assemble/compile it, it won't be pretty, it won't compile or assemble, training on patterns gives you syntax prediction, but doesn't give you experience to know enough to understand why it broke. Looking at code doesn't generate insight on why it works, sure the AI could figure out what the instructions do but can't simulate them so at the end of the day it's a guess.
That's the reason no real programmer will ever say "I'm glad I don't need to generate code anymore", a script kiddie would because languages like scripting languages are far more forgiving that the AI doesn't really need to understand the important bits anymore.