this post was submitted on 16 May 2025
24 points (69.4% liked)

Programming

20196 readers
217 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
 

I appreciate Simon's balanced take on how LLMs can enhance a project when used responsibly.

I'm curious, though—what are this community's opinions on the use of LLMs in programming?

you are viewing a single comment's thread
view the rest of the comments
[–] Solemarc@lemmy.world 5 points 1 day ago (1 children)

It's funny, to me I've had an llm give me the wrong answer to questions every time.

The first time I couldn't remember how to read a file as a string in python and it got me most of the way there. But I trusted the answer thinking "yeah, that looks right" but it was wrong, I just got the io class I didn't call the read() function.

The other time it was an out of date answer. I asked it how to do a thing in bevy and it gave me an answer that was deprecated. I can sort of understand that though, bevy is new and not amazingly documented.

On a different note, my senior who is all PHP, no python, no bash, has used LLM's to help him write python and bash. It's not the best code, I've had to do optimisations on his bash code to make it run on CI without taking 25 minutes, but it's definitely been useful to him with python and bash, he was hired as a PHP dev.

[–] kevin2107@lemmy.world -5 points 1 day ago

Your problem is you don't understand how llms work. You treat it like a magic genie when its not. Treat it right and you can fly. I integrated a new messaging architecture into my stack the other day that would of taken me weeks before. But I isolated my problem set and targeted what I needed to target. But I also understand what to tell it and how to utilize it as a tool.

In your case, its trivial to just check the methods of the class or know that its a call you're accessing in the first place. That AI can't read your mind if you don't frame the problem correctly.