this post was submitted on 07 Mar 2026
219 points (98.7% liked)

Fuck AI

6262 readers
900 users here now

"We did it, Patrick! We made a technological breakthrough!"

A place for all those who loathe AI to discuss things, post articles, and ridicule the AI hype. Proud supporter of working people. And proud booer of SXSW 2024.

AI, in this case, refers to LLMs, GPT technology, and anything listed as "AI" meant to increase market valuations.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] gothic_lemons@lemmy.world 148 points 2 days ago (2 children)

“My thinking wasn’t broken, just noisy — like mental static,” the senior manager continued. “What finally snapped me out of it was realizing I was working harder to manage the tools than to actually solve the problem.”

Omg constantly fact checking and tweaking the lying machine is actually slower than just thinking. Who would have guessed?

[–] SupraMario@lemmy.world 15 points 1 day ago

It also kills your ability to solve problems, since you're hitting that easy button constantly.

[–] arcine@jlai.lu 27 points 2 days ago* (last edited 2 days ago) (2 children)

This is exactly the kinda thing keeping me away from so-called "modern" programming languages.

Too many tools and nonsense to manage ; I want to program the computer, not "orchestrate a build pipeline" with 10+ different tools running on different machines, doing some nonsense with their own bespoke syntax and quirks...

[–] boonhet@sopuli.xyz 4 points 1 day ago

It's modern javascript/typescript you're talking about, isn't it?

They're an edge case IMO, and largely the issue is actually modernizing old languages. If you take something like Go or Rust as an example for a modern language, it's actually nice because the tooling is standardized for the language. In particular, the dependency management is built into the standard tooling.

Now you can always make it more complex by doing things like including docker in your build pipeline and maybe even creating pipelines that automatically deploy to kubernetes on a successful build... But all that is completely optional for like 99% of scenarios.

[–] MountingSuspicion@reddthat.com 14 points 2 days ago

Not sure what you're considering as "modern", but as someone why cut their teeth on C++ and still actually enjoys it, plenty of modern languages have their uses. It really depends on what you're looking for, but I've spent years in C++ and will still use python as a go to for small projects.