this post was submitted on 17 Oct 2025
118 points (98.4% liked)
Open Source
41480 readers
437 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
- !libre_culture@lemmy.ml
- !libre_software@lemmy.ml
- !libre_hardware@lemmy.ml
- !linux@lemmy.ml
- !technology@lemmy.ml
Community icon from opensource.org, but we are not affiliated with them.
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Okay, that was always allowed!
Programming is the weirdest place for kneejerk opposition to anything labeled AI, because we've been trying to automate our jobs for most of a century. Artists will juke from 'the quality is bad!' to 'the quality doesn't matter!' the moment their field becomes legitimately vulnerable. Most programmers would love if the robot did the thing we wanted. That's like 90% of what we're looking for in the first place. If writing 'is Linux in dark mode?' counted as code, we'd gladly use that, instead of doing some arcane low-level bullshit. I say this as someone who has recently read through IBM's CGA documentation to puzzle out low-level bullshit.
You have to check if it works. But if it works... what is anyone bitching about?
They're bitching about him pushing untested (by his own words) and broken code straight to main instead of going through the proper "PR, Review, Merge" loop like anyone else.
If you "have to check if it works" it should be in a PR for people to play with it, suggest improvements and make changes, not directly in the codebase.
They'd already admitted they accidentally pushed to the wrong branch and cleaned it up.
There's no way they actually checked that it works. It includes code for:
Verifying this would mean logging into several different desktop environments.
It's also extremely fragile code, running external commands and filtering through various files. There just is no good API on Linux for querying whether the desktop environment is using a dark theme, so it's doing absolutely inane shit that no sane developer would type out.
Because it's a maintenance nightmare. Because they almost certainly don't actually need to solve this. That's software development 101, to not write code that you don't actually need. But apparently some devs never got the memo that this is because of the maintenance cost, not because you weren't able to generate the code up until now.
If it works it can still be worse code than if somebody had just read documentation.
Then again, dead internet theory means nobody watches what AI is "documenting" and in the future documentation will be worthless.
"Just" read documentation, says someone assuming past documentation is accurate, comprehensible, and relevant.
I taught myself QBASIC from the help files. I still found Open Watcom's documentation frankly terrible, bordering useless. There's comments in the original Doom source code lamenting how shite the dead-tree books were.