this post was submitted on 04 Jul 2025
184 points (98.9% liked)

Programming

21381 readers
206 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
[โ€“] arthur@lemmy.zip 7 points 1 day ago* (last edited 1 day ago) (1 children)

LLMs are great for rubberducking, to do pre-reviews, and sometimes code boilerplate (under supervision).

Nothing more IMHO

[โ€“] theneverfox@pawb.social 3 points 1 day ago

Nah, they're actually fantastic at brain numbing tasks. I like to feed it sql tables and have it act like an ORM, but without the tradeoffs of an ORM. I'd never do it manually, but it's far more readable and easy to work with

I also love using it for api's. You can feed it a response, say "hey, I just want the id, status, and amount" (or whatever) and it'll restructure the data for you

These are not hard problems... They are tedious ones though. They solve a problem by brute force, a problem we "solve" over and over because at the end of the day: programmers are lazy.

You can over engineer complex bindings until the cows come home, but a simple pattern with each field explicitly mapped is the best solution. It's just really, really annoying to actually do it