this post was submitted on 14 May 2026
460 points (95.8% liked)

Technology

84648 readers
4829 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
[–] Matty_r@programming.dev 19 points 1 day ago (1 children)

Go ahead, use your AI to replace all of your own skills. The rest of us will gladly take your job when you can no longer troubleshoot problems.

[–] jj4211@lemmy.world 11 points 1 day ago (1 children)

Based on my experience with LLM and developers I personally know, my only assumption is they don't have the skills in the first place...

In corporate world there are a lot of "developers" that actually act kind of like codegen. They just throw plausible sounding bullshit into an editor and hope for the best. Two examples:

Once asked to help a team speed something that ran slow, even by their low standards. Turned out they had made their own copy file routine instead of using the standard library one, and sucked the file into memory, expanding array 512 bytes at a time, and then wrote it out, 512 bytes at a time. I made the thing nearly instant by just making it a call to the standard library function to copy a file.

While helping with a separate problem, I noticed their solution for transferring some file with an indeterminate version number in the middle of the file name. It was a huge mess, but the most illustrative line was the line in their Java application declaring a string "ls /path/with/file|grep prefix.*.extension".....

Lots of human slop out there that AI can actually compete with.

[–] Feathercrown@lemmy.world 3 points 1 day ago

I've spent the last few days cleaning up some genuine garbage in a file. The file shows a single UI grid with four editable columns and some basic validation logic. It started out as over 3000 lines long and I have managed to consolidate and remove enough to get ot down to 1000. I have done nothing but remove 2/3 of the file and literally no functionality has been lost. I'm losing my mind over here how does the tech debt even get this bad lmao