this post was submitted on 04 Jun 2026
444 points (97.2% liked)

Technology

85163 readers
3880 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 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Pechente@feddit.org 62 points 1 day ago (3 children)

Yeah also noticing similar bullshit. People send me exact steps on what to do written by ChatGPT that understands exactly nothing about the context and is therefore often wrong or a half truth at best.

Another client has pushed a single commit to a messy project that added 70k lines and a load of new features. The project is now unmaintainable.

[–] webhead@lemmy.world 3 points 11 hours ago

I am not even a developer but I've noticed tickets having a response written clearly by AI that miss several things I already talked to the person over teams about. Like dude read your own fucking comment before you post. The conclusion is wrong and you know that because we talked about it before you had the AI "figure out the problem" in the first place. Fuck. I know reading logs is really time consuming and annoying but the AI isn't always very good or won't just say "hey that log isn't showing that I'm looking for" and instead just hallucinates something.

I don't even hate AI, but could we at least use our fucking brains while using the AI? When it spits out code to me for my home projects, I, someone who is not a developer, still look at the code to make sure it's not say running a loop that will hammer disk looking for 1200 files one at a time instead of pulling a directory listing and searching it or something very similar in the database I'm using. People have gotten so lazy. Maybe they're tired of their bosses trying to force them and are providing garbage? I don't know but can we just not? Lol.

[–] tristynalxander@mander.xyz 10 points 1 day ago

I'm just glad people will write off my terrible code as AI.

[–] MangoCats@feddit.it -2 points 1 day ago (1 children)

Instructions are sloppy, code can be sloppy, but what I find is: when they review code changes they find real stuff. Not all the real stuff, but more real stuff than human reviewers typically find. A code review doesn't need to be perfect, not even 100% correct, it just needs to show you stuff that you look at and think "damn, good to catch this now instead of in a field problem report a year from now..."

[–] BradleyUffner@lemmy.world 2 points 12 hours ago (1 children)

That's fine when you're looks at 1 or 2 reviews. Now try sitting through hundreds a day.

[–] MangoCats@feddit.it 1 points 18 minutes ago (1 children)

We only do about 3-10 reviews a week, depending... it's not there to replace you, it's there to help.

Before AI assistance we would do fewer reviews, because the AI is finding things - real things worth fixing - now some reviews (the reviews of our colleagues who haven't figured out how to use AI to review their pull requests before submitting them effectively) get recycled 2-3 times before they're adequately cleaned up.

Documentation and requirements are better aligned with code, unit test coverage is better, and the developers who use AI to review their code before putting in a pull request generally are getting through on the first pass. You still have to read the documentation and requirements, review the code, but now it's actually approaching accurate and complete much more closely than it used to.

Our team is small and diverse, some do embedded C, some do GUI oriented .NET, some do backend processing in Rust / Linux - we all know our domains and there is lots of value in the collective wisdom, but it doesn't translate super easily or efficiently - AI is helping with that.

If you've got 100 pull requests to review every day - quit. Maybe stick around for the paycheck until you find something better, but that's not a job, that's a clusterbomb waiting to go off.

[–] BradleyUffner@lemmy.world 1 points 10 minutes ago

I was referring to the people running open source projects that are receiving 100s of reviews per day from people just blasting outs PRs.