this post was submitted on 07 Apr 2025
536 points (98.2% liked)

Technology

68723 readers
5230 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] taladar@sh.itjust.works 3 points 1 week ago (1 children)

Honestly, AI coding assistants (as in the ones working like auto-complete in the code editor) are very close to useless unless maybe you work in one of those languages like Java that are extremely verbose and lack expressiveness. I tried using a few of them for a while but it got to the point where I forgot to turn them on a few times (they do take up too much VRAM to keep running when not in use) and I didn't even notice any productivity problems from not having them available.

That said, conversational AI can sometimes be quite useful to figure out which library to look at for a given task or how to approach a problem.

[–] Ledivin@lemmy.world 6 points 6 days ago (1 children)

Honestly, AI coding assistants (as in the ones working like auto-complete in the code editor) are very close to useless unless maybe you work in one of those languages like Java that are extremely verbose and lack expressiveness.

Hard disagree. They're not writing anything on their own, no, but my stack saves at least 75% of my time, and I work full-stack across pieces in 5 different languages.

Cursor + Claude was the latest big shift for me, maybe two months ago? If you haven't tried them, it was a huge bump in utility

[–] taladar@sh.itjust.works 6 points 6 days ago

If you spend 75% of your time writing code you are in a highly unusual coding position. Most programmers spend a very high percentage of their time understanding the problem domain and on other parts of figuring out requirements and translating them into something resembling some sort of semi-formal understanding of what the program actually needs to do. The low level detailed code writing is very rarely a bottleneck.