this post was submitted on 31 Jul 2026
154 points (99.4% liked)

Fuck AI

7807 readers
768 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
 

cross-posted from: https://lemmy.blahaj.zone/post/46091883

Though nobody expected it in the first place, AI is not perfect and can make mistakes (obviously 🙄) What’s your experience with this? I’d love to hear about it.

you are viewing a single comment's thread
view the rest of the comments
[–] HaraldvonBlauzahn@feddit.org 3 points 17 hours ago* (last edited 16 hours ago) (1 children)

The level of incompetence that AI can mask is absolutely stunning. (And this precisely is probably why the AI hype resembles so much Hans Christian Andersens Tale "The Emperor's new Clothes".)

I had to explain to a senior embedded software architect that you need to use locks to access and change the same variable in multiple threads in concurrent C++ code.

[–] WaterWaiver@aussie.zone 2 points 16 hours ago* (last edited 16 hours ago)

Make the variable a word size relevant to the processor's memory access width (eg 32bit), don't use atomic locks, mark it as volatile, write a comment about how things are perfect this way and lockers are losers; then rig the struct it's in to have a 50% chance of misaligning the 32bits (so two cycles are required to read/write to it) every time someone changes and recompiles the code >:D

(Yes I no longer work as a programmer, no I don't know why they don't want me)