this post was submitted on 30 Apr 2025
596 points (95.2% liked)

Technology

69491 readers
4109 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
 

Now I understand why at each windows 11 update, they introduce more bugs than ever

you are viewing a single comment's thread
view the rest of the comments
[–] megopie@lemmy.blahaj.zone 39 points 1 day ago (13 children)

I bet they’re counting code written while someone had an AI plugin installed as “written by AI” and I bet that accounts for almost all of that 30%. On top of that, I’m betting that they made it mandatory to have such a plug in, and the other 70% is just code written before they mandated this.

[–] SandmanXC@lemmy.world 8 points 1 day ago (2 children)

Also, having 1/3 lines with obvious code that can be auto suggested correctly would make sense, but that is hardly code "written by ai" in the way they suggest.

[–] megopie@lemmy.blahaj.zone 6 points 1 day ago (2 children)

I’d guess a lot of the people writing the code don’t even have it turned on, it’s just installed because management said it had to be, because management wants to be able to tell investors they’re “innovating work flows”.

[–] balder1991@lemmy.world 2 points 17 hours ago* (last edited 17 hours ago)

I am a small sample to confirm that’s exactly the reason in my brother’s company.

And in my company we’re pressured to make X prompts every week to the company’s own ChatGPT wrapper to show we’re being productive. Even our profit shares have a KPO attached to that now. So many people just type “Hello there” every morning to count as another interaction with the AI.

[–] bluGill@fedia.io 2 points 18 hours ago

Every few months I turn it on for a few days just to see if it is better.

Then I go back to the old AST based autocomplete that actually knows something useful about my code.

[–] Nighed@feddit.uk -1 points 1 day ago (1 children)

Those are the easy time savings though, the safe easy stuff the developer doesn't have to worry about anymore. (Giving them time do the gnarly stuff)

[–] taladar@sh.itjust.works 5 points 1 day ago (1 children)

It is exactly the opposite, with simple, predictable auto-complete you didn't have to worry about that anymore, with LLMs you always have to look at it in detail because every little thing could be just plain completely different and wrong.

[–] Nighed@feddit.uk 0 points 1 day ago (1 children)

I can read way faster than I can type though. You still check it, but it's pretty good as that kind of stuff once you have an example for it to follow.

[–] taladar@sh.itjust.works 5 points 1 day ago (1 children)

Reading code is usually orders of magnitude slower than writing code. Sure, typing might be slower than reading but to check if it is what you intended you have to understand it too.

[–] mbtrhcs@feddit.org 0 points 1 day ago (1 children)

Well, I'm generally very anti-LLM but as a library author in Java it has been very helpful to create lots of similar overloads/methods for different types and filling in the corresponding documentation comments. I've already done all the thinking and I just need to check that the overload makes the right call or does the same thing that the other ones do – in that particular case, it's faster. But if I myself don't know yet how I'm going to do something, I would never trust an AI to tell me.

[–] taladar@sh.itjust.works 1 points 23 hours ago

Well, okay, I can see how it would be useful in languages like Java that are extremely verbose and have a low expressiveness. Writing Java pretty much was already IDEs with code generation 20 years or so ago because nobody wants to write so much boilerplate by hand.

load more comments (10 replies)