this post was submitted on 18 Mar 2026
423 points (93.8% liked)

Technology

82745 readers
3191 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
 

Altman’s remarks in his tweet drew an overwhelmingly negative reaction.

“You’re welcome,” one user responded. “Nice to know that our reward is our jobs being taken away.”

Others called him a “f***ing psychopath” and “scum.”

“Nothing says ‘you’re being replaced’ quite like a heartfelt thank you from the guy doing the replacing,” one user wrote.

you are viewing a single comment's thread
view the rest of the comments
[–] AlecSadler@lemmy.dbzer0.com 35 points 6 hours ago (3 children)

As a developer on a team of 20ish that use AI heavily, daily, I'd argue there are proper ways of using it as a tool that substantially increases productivity and quality while also reducing bugs and improving maintainability.

But I would also say that 75%+ of people I encounter aren't leveraging it properly or even close to properly. Also too many people use ChatGPT and Copilot which are just bottom of the barrel garbage and then wonder why the output is also garbage.

But I agree that too many people and companies lean into AI too heavily and incorrectly and there will be a reckoning. I'm all for it.

[–] baines@piefed.social 22 points 5 hours ago (2 children)

everyone using ai says some variation of this

acting like they do proper code review on this ai gen code but we’ve had so many examples of how people well before ai carried massive tech debt and cut corners so I have zero faith

much less the numerous examples of slop laden bugs making it to live with major companies in the us

ai just amplifies and obfuscates the problem 

 

[–] Rekorse@sh.itjust.works 1 points 2 hours ago

Its because your perspectives clash. They are saying the problems you have are caused by people behaving poorly, and you are saying its because the AI is inherently flawed.

They do have a point, if I were to pick up a hammer and throw it through a window, I can't really blame the hammer for the broken window.

I do think we have to hold each other to some higher moral standard where we put people above profit, which would reduce a lot of abuse. Its astonishing that so many programmers would justify AI use knowing it may be causing harm to many others in their field.

[–] AlecSadler@lemmy.dbzer0.com 7 points 5 hours ago

You do you I guess. AI slop can suck a dick and we've fired people for less.

AI causes problems, AI can amplify problems, but AI can legitimately assist, too.

[–] sobchak@programming.dev 5 points 4 hours ago (2 children)

I do try to give it a chance and use it every once and a while (most recently Claude Code; last year, Cursor), and it has been my experience that it personally decreases my productivity and quality. I found that even CoPilot's autocomplete would introduce bugs if I decided to "trust" it and try to work too fast without meticulously reviewing every token generated. I have seen people I work with use AI to quickly create decent looking prototypes (i.e. bog standard, boring design), but I think this is still detrimental because they lose the full benefit of exploratory programming (and of course, the prototypes just have all kinds of faked data and functionality, glaring security problems, bad architecture). I've also experienced people submitting nonsense vibe-coded pull requests that would break tons of things they shouldn't have even touched for the issue. I could see a less interested or overworked reviewer letting stuff like that through, which is why I think we're seeing all these failures and bugs at these big tech companies. So for me, at least, I haven't seen the benefit. Using CoPilot in VSCode actually caused me to go back to using nvim and lsp plugins :)

[–] AlecSadler@lemmy.dbzer0.com 4 points 4 hours ago

Agreed, Copilot auto complete is awful. I wouldn't wish that on my worst enemy.

[–] 0t79JeIfK01RHyzo@lemmy.ml -1 points 3 hours ago* (last edited 2 hours ago)

I don’t know what these people are doing who seem to claim it’s wonderful. Every single time I have tried to use one, it’s been completely clueless about the problem and wastes my time producing slop. I almost want to keep my code closed source because of how awful it is at generating anything. Maybe they’re just doing very simple web design or something, I don’t know

I even have started to hate Google and felt like their search engine is becoming very bad. Yandex has been returning more results and Google feels censored and replaced by generative AI answers.

[–] Serinus@lemmy.world 0 points 6 hours ago (2 children)

Copilot isn't bad, but generally I agree.

It's a tool that can be helpful, or you can just create problems for yourself down the road.

It's a lot like building a house. After all the drywall is up, it's hard to tell if the studs are 18 inches apart or five feet apart, but you're gonna find out eventually.

[–] Wispy2891@lemmy.world 5 points 5 hours ago (1 children)

Are you talking about copilot, that bar that is on the side of Microsoft edge or something else? Maybe GitHub Copilot?

Because that copilot bar on Microsoft edge is literally a pointless waste of electricity

[–] Serinus@lemmy.world 1 points 25 minutes ago

Oh, I was talking about GitHub copilot that's in visual studio.

[–] AlecSadler@lemmy.dbzer0.com 6 points 6 hours ago (1 children)

Would love to know how you finagle Copilot to be useful, the code it generates and the things it suggests make me throw my hands up like 9/10.

Once in a blue moon I try to use it again, and it's laughable. It's like I told someone non-technical to do something super technical and... it's just 100% discard or 50% rewrite. I guess it just feels like it isn't saving me any time so...why?

For context I've only used it in VS Code or Visual Studio. If there is some other avenue or process that's better, let me know.

[–] Serinus@lemmy.world 4 points 6 hours ago

I'm usually just very targeted in what I ask it to do. I keep it to things I know will be in the basic reference books or on stack overflow. It basically just saves me from having to look up and apply existing examples to my code.

It makes for a pretty good ORM.