this post was submitted on 01 May 2026
78 points (98.8% liked)

Technology

84278 readers
5548 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
[–] MangoCats@feddit.it 1 points 4 hours ago

You find yourself signing off on an overwhelming amount of raw code just to keep up with the output that's expected these days.

Then you're doing it wrong, very very wrong. And any management that expects you to "just read faster" is management you should be distancing yourself from at maximum possible speed.

No, you can't review the volume of code that LLMs output, one engineer driving an LLM code generator can create code faster than 10 engineers can review it. However, one engineer driving an LLM code generator, then driving the same and other LLMs to review that code for correctness can.

You can, and also should, be developing documented requirements for EVERYTHING the code is doing - LLMs help accelerate that process too.

You can, and also should, be developing unit and integration tests which ensure that your implementation doesn't regress as new features are added. LLMs help accelerate that process too.

You can, and also should, be using LLMs to review the requirements, implementation and tests to ensure they are all synchronized, aligned, saying what they do and doing what they say. LLMs help accelerate that process too.

You can, and also should, be doing all of the above for software developed without LLMs, but in my experience the vast majority of teams don't do good implementation of all the pieces. LLMs are an opportunity to start.