this post was submitted on 22 Jun 2025
480 points (99.0% liked)

Programming

21127 readers
282 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] wetbeardhairs@lemmy.dbzer0.com 6 points 2 days ago (1 children)

Well, this kind of AI won't ever be useful as a programmer. It doesn't think. It doesn't reason. It cannot make decisions besides using a ton of computational power and enormous deep neural networks to shit out a series of words that seem like they should follow your prompt. An LLM is just a really, really good next-word guesser.

So when you ask it to solve the Tower of Hanoi problem, great it can do that. Because it saw someone else's answer. But if you ask it to solve it for a tower than is 20 disks high it will fail because no one ever talks about going that far and it flounders. It's not actually reasoning to solve the problem - it's regurgitating answers it has ingested from stolen internet conversations. It's not even attempting to solve the general case because it's not trying to solve the problem, it's responding to your prompt.

That said - an LLM is also great as an interface to allow natural language and code as prompts for other tools. This is where the actually productive advancements will be made. Those tools are garbage today but they'll certainly improve.

[–] atzanteol@sh.itjust.works -1 points 2 days ago (1 children)

Well, this kind of AI won’t ever be useful as a programmer

It already is.

[–] childOfMagenta@jlai.lu 7 points 2 days ago (2 children)

You mean useful to a programmer, or as useful as a programmer?

[–] atzanteol@sh.itjust.works 4 points 2 days ago

Ah - yeah I read that wrong. It's useful to a programmer.

[–] wetbeardhairs@lemmy.dbzer0.com 2 points 2 days ago (2 children)

I explicitly meant "as". It's great as autocomplete. Not as an agent to complete programming tasks.

[–] childOfMagenta@jlai.lu 1 points 2 days ago

Thanks for clarifying.

[–] atzanteol@sh.itjust.works 0 points 2 days ago (1 children)

It’s great as autocomplete.

I love the weird need to downplay just how good AIs are by calling them "autocomplete".

Did you even read my earlier comment?