this post was submitted on 16 Jun 2026
210 points (95.7% liked)

Web Development

5778 readers
27 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 3 years ago
MODERATORS
 

I’m calling it now, the adoption of AI agents into software development will be one of the most costly mistakes in the field’s history. Agents cannot program, and it’s taking longer and longer to realize that they can’t. They are a highly sophisticated statistical model designed to mimic the distribution of programming. The output is broken, but in a way that’s getting harder and harder to detect. Which is exactly what you’d expect from an increasingly accurate statistical model.

you are viewing a single comment's thread
view the rest of the comments
[–] 42firehawk@fedinsfw.app 7 points 2 months ago (2 children)

But you're forgetting the key difference that makes it so much worse - we can fix human mistakes especially if we can talk to the human to figure out how. With an llm we have no external reference, only poorly designed code where the comments are there to guide the writing, not describe what was written. So it's much harder to debug an output, and the llm cannot be trusted to clean it up either.

[–] Inucune@lemmy.world 6 points 2 months ago (1 children)

A human can be held responsible. A machine cannot. If the machine writes bad code, and someone gets injured or killed because of it, who takes responsibility?

I state again: a machine cannot be held responsible.

[–] jostein@lemmy.world 2 points 2 months ago

It is never the coder that is responsible, it is the one who makes the code available to use. Often with humans, they are one and the same. With machines, they are not.

[–] FizzyOrange@programming.dev -4 points 2 months ago (2 children)

You can totally fix AI-written code with AI. You tell it something is wrong, it tries to fix it.

I did a recent experiment with AI writing a document format converter and that's exactly what I did. It wrote some code, I checked the output, found a formatting issue or similar, asked it to fix it, repeat. It works unreasonably well and with Fable the final code isn't even bad.

[–] Bane_Killgrind@lemmy.dbzer0.com 6 points 2 months ago (1 children)

You can fix problems, if you know they are there and there is a model of that problem being fixed.

You can't fix problems you don't know are there, or do not have modeling.

[–] replicat@lemmy.world 2 points 2 months ago (1 children)

Now keep doing this for months, with non-trivial software that other people use.

[–] FizzyOrange@programming.dev 3 points 2 months ago* (last edited 2 months ago)

Probably fine if you review the code carefully. And if you're working in a domain that AI is decent at (e.g. web stuff). But even if it wasn't it doesn't mean AI cannot program.