this post was submitted on 20 Feb 2026
645 points (97.6% liked)

Technology

82188 readers
4827 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
top 50 comments
sorted by: hot top controversial new old
[–] jjjalljs@ttrpg.network 270 points 1 week ago (4 children)

“Top-down mandates to use large language models are crazy,” one employee told Wired. “If the tool were good, we’d all just use it.”

Yep.

Management is often out of touch and full of shit

[–] kescusay@lemmy.world 94 points 1 week ago (3 children)

You wanna know who really bags on LLMs? Actual AI developers. I work with some, and you've never heard someone shit all over this garbage like someone who works with neural networks for a living.

[–] exu@feditown.com 48 points 1 week ago (2 children)

There's this great rage blog post from 1.5 years ago by a data scientist

I Will Fucking Piledrive You If You Mention AI Again

[–] itsathursday@lemmy.world 8 points 1 week ago

Missed this one, thanks

[–] kescusay@lemmy.world 7 points 1 week ago

Oh, the guy from Hermit Tech! He's great, and his blog is hilarious and poignant in turns (though sometimes both at the same time).

[–] altasshet@lemmy.ca 13 points 1 week ago

That's me, but for QA...

load more comments (1 replies)
[–] Peekashoe@lemmy.wtf 32 points 1 week ago (1 children)

Management: "No, that doesn't work, because employees spend so much time doing the actual work that they lack the vision to know what's good for them. Luckily for them I am not distracted by actual work so I have the vision to save them by making them use AI."

load more comments (1 replies)
[–] paequ2@lemmy.today 8 points 1 week ago

If the tool were good, we’d all just use it.”

Eggs-mothafucking-zackly!!!

There are no daily pressure campaigns to convince you to use a laptop or a smartphone. The value of those are self-evident.

AI on the other hand... -_-

load more comments (1 replies)
[–] MagicShel@lemmy.zip 129 points 1 week ago* (last edited 1 week ago) (17 children)

At work today we had a little presentation about Claude Cowork. And I learned someone used it to write a C (maybe C++?) compiler in Rust in two weeks at a cost of $20k and it passed 99% of whatever hell test suite they use for evaluating compilers. And I had a few thoughts.

  • 99% pass rate? Maybe that's super impressive because it's a stress test, but if 1% of my code fails to compile I think I'd be in deep shit.
  • 20k in two weeks is a heavy burn. Imagine if what it wrote was... garbage.
  • "Write a compiler" is a complete project plan in three words. Find a business project that is that simple and I'll show you software that is cheaper to buy than build. We are currently working on an authentication broker service at work and we've been doing architecture and trying to get everyone to agree on a design for 2 months. There are thousands of words devoted to just the high level stuff, plus complex flow diagrams.
  • A compiler might be somewhat unique in the sense that there are literally thousands of test cases available - download a foss project and try to compile it. If it fails, figure out the bug and fix it. Repeat. The ERP that your boss wants you to stand up in a month has zero test coverage and is going to be chock full of bugs — if for no other reason than you haven't thought through every single edge case and neither has the AI because lots of times those are business questions.
  • There is not a single person who knows the code base well enough to troubleshoot any weird bugs and transient errors.

I think this is a cool thing in the abstract. But in reality, they cherry picked the best possible use case in the world and anyone expecting their custom project is going to go like this will be lighting huge piles of money on fire.

[–] pulsewidth@lemmy.world 37 points 1 week ago (1 children)

Agree with all points. Additionally, compilers are also incredibly well specified via ISO standards etc, and have multiple open source codebases available, eg GCC which is available in multiple builds and implementations for different versions of C and C++, and DQNEO/cc.go.

So there are many fully-functional and complete sources that Claude Cowork would have pulled routines and code from.

[–] xep@discuss.online 22 points 1 week ago* (last edited 1 week ago) (2 children)

The vibe coded compiler is likely unmaintainable, so it can't be updated when the spec changes even assuming it did work and was real. So you'd have to redo the entire thing. It's silly.

[–] exu@feditown.com 14 points 1 week ago (2 children)

Updates? You just vibecode a new compiler that follows the new spec

load more comments (2 replies)
load more comments (1 replies)
[–] grue@lemmy.world 28 points 1 week ago (2 children)

A C compiler in two weeks is a difficult, but doable, grad school class project (especially if you use lex and yacc instead of hand-coding the parser). And I guarantee 80 hours of grad student time costs less than $20k.

Frankly, I'm not impressed with the presentation in your anecdote at all.

load more comments (2 replies)
[–] Aceticon@lemmy.dbzer0.com 22 points 1 week ago* (last edited 1 week ago) (1 children)

It's even simpler than that: using an LLM to write a C compiler is the same as downloading an existing open source implementation of a C compiler from the Internet, but with extra steps, as the LLM was actually fed with that code and is just re-assembling it back together but with extra bugs - plagiarism hidden behind an automated text parrot interface.

A human can beat the LLM at that by simply finding and downloading an implementation of that more than solved problem from the Internet, which at worse will take maybe 1h.

The LLM can "solve" simple and well defined problems because its basically plagiarizing existing code that solves those problems.

[–] MagicShel@lemmy.zip 11 points 1 week ago (2 children)

Hey, so I started this comment to disagree with you and correct some common misunderstandings that I've been fighting against for years. Instead, as I was formulating my response, I realized you're substantially right and I've been wrong — or at least my thinking was incomplete. I figured I'd mention because the common perception is arguing with strangers on the internet never accomplishes anything.

LLMs are not fundamentally the plagiarism machines everyone claims they are. If a model reproduces any substantial text verbatim, it's because the LLM is overtrained on too small of a data set and the solution is, somewhat paradoxically, to feed it more relevant text. That has been the crux of my argument for years.

That being said, Anthropic and OpenAI aren't just LLM models. They are backed by RAG pipelines which are verbatim text that gets inserted into the context when it is relevant to the task at hand. And that fact had been escaping my consideration until now. Thank you.

load more comments (2 replies)
[–] SMillerNL@piefed.social 17 points 1 week ago (2 children)
load more comments (2 replies)
[–] slaacaa@lemmy.world 13 points 1 week ago* (last edited 1 week ago)

Also, software development is already the best possible use case for LLMs: you need to build something abiding by a set of rules (as in a literal language, lmao), and you can immediately test if it works.

In e.g. a legal use case instead, you can jerk off to the confident sounding text you generated, then you get chewed out by the judge for having hallucinated references. Even if you have a set of rules (laws) as a guardrails, you cannot immediately test what the AI generated - and if an expert needs to read and check everything in detail, then why not just do it themselves in the same amount of time.

We can go on to business, where the rules the AI can work inside are much looser, or healthcare, where the cost of failure is extremely high. And we are not even talking about responsibilities, official accountability for decisions.

I just don’t think what is claimed for AI is there. Maybe it will be, but I don’t see it as an organic continuation of the path we’re in. We might have another dot com boom when investors realize this - LLMs will be here to stay (same as the internet did), but they will not become AGI.

[–] Evotech@lemmy.world 10 points 1 week ago

I also often get assigned projects where all the tests are written out beforehand and I can look at an existing implementation while I work…

[–] MBM@lemmings.world 9 points 1 week ago

Don't forget that there are tons of C compilers in the dataset already

load more comments (10 replies)
[–] Formfiller@lemmy.world 93 points 1 week ago (6 children)

I can’t wait until billionaires realize how worthless they actually are without people doing everything for them

[–] hector@lemmy.today 27 points 1 week ago (1 children)

They will never realize that, they will blame any failures on others naturally. They truly believe they are better than everyone else, that their superior ability led them to invest in a company that increased in value enough for them to become filthy rich.

Surrounded by yes men and woman that agree with everything they say and tell them what a genius they are. Of course any ill outcome isn't their fault.

load more comments (1 replies)
[–] Avicenna@programming.dev 18 points 1 week ago* (last edited 1 week ago) (1 children)

Eh, as the world goes to shit there will always be desperate people willing to work for them, probably cheaper than before even with the AI failures, so they wouldn't care.

load more comments (1 replies)
[–] bhamlin@lemmy.world 8 points 1 week ago (1 children)

Might be a minute. The brain damage that lets them think they've "earned" those billions kinda hides the work of others. Especially the poors.

load more comments (1 replies)
[–] bearboiblake@pawb.social 7 points 1 week ago (3 children)

We can't to wait for them to realize this themselves. We need to demonstrate this by actively creating a society which excludes them.

load more comments (3 replies)
load more comments (2 replies)
[–] ZoteTheMighty@lemmy.zip 86 points 1 week ago (5 children)

I had a meeting with my boss today about my AI usage. I said I tried using Claude 4.5, and I was ultimately unimpressed with the results, the code was heavy and inflexible. He assured me Claude 4.6 would solve that problem. I pointed out that I am already writing software faster than the rest of the team can review because we are short staffed. He suggested I use Claude to review my MRs.

[–] sepi@piefed.social 31 points 1 week ago* (last edited 1 week ago) (3 children)

One big problem with management is their inability to listen. Folks say shit over and over but management seems deaf because we're not people to be listened to. We're the help. And management acts like they know better.

[–] MagicShel@lemmy.zip 18 points 1 week ago

If you were so smart you'd have wads of cash like them. They got where they are through sheer grit and bootstraps and a paltry $50 million from their family.

load more comments (2 replies)
[–] TrippinMallard@lemmy.ml 26 points 1 week ago (1 children)

The trick is to tell them you've been using it more than they have and that it's not as good as chatGPT for task A, but that for task B claude does okay 25% of the time so we'll need to 4x the timeline in order to get a good claude output based on that expected value.

But not as good as your personal local LLM that you've been training on company data. No one else can use it because it's illegal to clone. (your personal local LLM is your brain)

[–] mech@feddit.org 10 points 1 week ago (2 children)

Telling your boss you trained a personal LLM with company data will lead to nothing but you holding a box full of your stuff about 10 minutes later.

load more comments (2 replies)
[–] mPony@kbin.earth 21 points 1 week ago (1 children)

next time, tell your boss that Claude should replace him, not you.

load more comments (1 replies)
[–] lepinkainen@lemmy.world 12 points 1 week ago

Ralph Wiggum loop that shit

Numbers go up, Claude won’t bother you 👍🏻

load more comments (1 replies)
[–] grapefruittrouble@lemmy.zip 84 points 1 week ago (4 children)

From reading all the comments from the community, it’s amazing (yet not surprising) that all these managers have fallen for the marketing of all these LLMs. These LLMs have gotten people from all levels of society to just accept the marketing without ever considering the actual results for their use cases. It’s almost like the sycophant nature of all LLMs has completely blinded people from being rational just because it is shiny and it spoke to them in a way no one has in years.

On the surface level, LLMs are cool no doubt, they do have some uses. But past that everyone needs to accept their limitations. LLMs by nature can not operate the same as a human brain. AGI is such a long shot because of this and it’s a scam that LLMs are being marketed as AGI. How can we attempt to recreate the human brain into AGI when we are not close to mapping out how our brains work in a way to translate that into code, let alone other more simple brains in the animal kingdom.

[–] sobchak@programming.dev 18 points 1 week ago (2 children)

I don't think LLMs will become AGI, but... planes don't fly by flapping their wings. We don't necessarily need to know how animal brains work to achieve AGI, and it doesn't necessarily have to work anything like animal brains. It's quite possible if/when AGI is achieved, it will be completely alien.

[–] qaeta@lemmy.ca 9 points 1 week ago

Aircraft wings operate on pretty much the same principle as bird wings do. We just used a technology we had already developed (fans, essentially) to create the forward movement necessary to create the airflow over the wings for lift. We know how to do it the bird way too, but restrictions in material science at scale make the fan method far easier and less error prone.

load more comments (1 replies)
[–] ipkpjersi@lemmy.ml 12 points 1 week ago* (last edited 1 week ago)

One of the best written comments I've seen about this. LLMs are cool for what they can do, but anyone comparing them to AGI is just shilling and trying to make a fortune off of selling pickaxes in a gold rush with the only gold being fools gold.

[–] ziproot@lemmy.ml 10 points 1 week ago

From reading all the comments from the community, it’s amazing (yet not surprising) that all these managers have fallen for the marketing of all these LLMs

This is probably related to automation bias and wishful thinking

[–] iglou@programming.dev 7 points 1 week ago

I agree with almost all of your comment. The only part I disagree on is:

How can we attempt to recreate the human brain into AGI when we are not close to mapping out how our brains work in a way to translate that into code, let alone other more simple brains in the animal kingdom.

An implementation of AGI does not need to be inspired from the human brain, or any existing organic brain. Nothing tells us organic brains are the optimal way to develop intelligence. In fact, I'd argue it's not.

That being said, it doesn't change the conclusion: We are nowhere near AGI, and LLMs being marketed as such is absolutely a scam.

[–] panda_abyss@lemmy.ca 58 points 1 week ago

Man, corporate layoffs kill productivity completely for me.

Once you do layoffs >50% of the job becomes performative bullshit to show you’re worth keeping, instead of building things the company actually needs to function and compete.

And the layoffs are random with a side helping of execs saving the people they have face time with.

[–] db2@lemmy.world 31 points 1 week ago (1 children)
[–] ThePowerOfGeek@lemmy.world 102 points 1 week ago (2 children)

The original creator of Twitter and now creator of Bluesky and whatever this thing that's falling off the rails is.

Basically another billionaire living in his own little bubble and huffing his own farts too much.

[–] rimu@piefed.social 29 points 1 week ago* (last edited 1 week ago) (1 children)

He also had a lot to do with Nostr, early on.

Jack Dorsey, has endorsed and financially supported the development of Nostr by donating approximately $250,000 worth of Bitcoin to the developers of the project in 2023,[13][15] as well as a $10 million cash donation to a Nostr development collective in 2025.

[–] saltesc@lemmy.world 9 points 1 week ago (1 children)
[–] rimu@piefed.social 7 points 1 week ago

Oops I mistread my source. Have updated my comment.

[–] priapus@piefed.social 21 points 1 week ago (1 children)

he left Bluesky around 2 years ago

[–] ThePowerOfGeek@lemmy.world 37 points 1 week ago (1 children)

That must be why they are doing okay, haha.

load more comments (1 replies)
[–] TropicalDingdong@lemmy.world 24 points 1 week ago (2 children)

Is that thumbnail a scene from 12 monkeys?

[–] IratePirate@feddit.org 17 points 1 week ago (1 children)

Naw. This is clearly just 1 monkey.

load more comments (1 replies)
load more comments (1 replies)
[–] pelespirit@sh.itjust.works 17 points 1 week ago (2 children)

Uhhh, Block is the the parent company of Square (formerly known as Square Up). This is actually a huge company, not some little side thing.

load more comments (2 replies)
[–] lechekaflan@lemmy.world 8 points 1 week ago

Yeah, the sellout.

load more comments
view more: next ›