this post was submitted on 15 Jul 2026
141 points (98.0% liked)

Linux

66435 readers
709 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] whimsy@lemmy.zip 3 points 1 hour ago

For all his great work on Linux (and git and others) Torvalds was never into activism so much. He declined GPLv3 (yes it would be impossible to get all contributors to sign for it). He's always been an "open source pragmatist", which is fine I guess. And I really respect his work. But at these important political points, we need someone like Stallman who has consistently proven to be on the right side of the debate

[–] Zexks@lemmy.world 1 points 2 hours ago

Lmao. This went over exactly how i expected here. Oh well ludites gonna ludite.

[–] Mwa@thelemmy.club 17 points 17 hours ago* (last edited 17 hours ago) (2 children)

I seen alot of people say "AI is just a tool" ngl There is nothing wrong with that it's just a little overused

[–] HaraldvonBlauzahn@feddit.org 1 points 27 minutes ago

There is nothing wrong with that it’s just a little overused

That's one of the problems of companies devaluing and abusing language so much that words are in danger to lose any meaning. It is a difference however whether Torvalds uses such a word, or a corporation advertising bullshit. It is really clear that corporations want to replace software developers.

[–] Jankatarch@lemmy.world 1 points 2 hours ago

It feels like marketing speech to me at this point. Like a new form of "it's the newest model."

[–] ZkhqrD5o@lemmy.world 41 points 20 hours ago (2 children)

Hot Take: IMO, using generated code is fine, if it goes through the exact same due diligance as normal code. (unit tests, is the algo optimised, etc.)

[–] mushroommunk@lemmy.today 32 points 20 hours ago (19 children)

Only if you don't care about your own cognitive decline, property theft, and climate damage

[–] Don_alForno@feddit.org 3 points 2 hours ago

the destruction of the consumer electronics market ...

load more comments (18 replies)
[–] yogthos@lemmy.ml 1 points 13 hours ago

Exactly, the argument that whether the code was written entirely by hand or produced by an LLM is the wrong thing to focus on. To see why, we have to consider how software development actually works at scale.

There's a view that code written by hand has to be more intentional, almost has to be by definition since it requires the maintainer to actually put it in there themselves. That's, of course, true but once a project grows past a certain size or it has multiple maintainers, nobody really has the totality of the code in their heads. So, any new code that's added is always done with limited understanding. Code being written by hand should not be equated with it expressing the intent faithfully; if that were the case, then we'd never have software bugs. Humans make mistakes all the time as is clearly evidenced by there being no lack of buggy code predating LLM use.

I'm also not intimately familiar with most of the code in the projects I've been maintaining over the years. Any code I've written even a few months ago might as well have been written by someone else. When I need to make changes, I read through the code and figure out what it's doing, and I rely on the test harness to make sure I don't introduce regressions.

It's simply not feasible for humans to keep the entirety of large projects in their heads all at once. When you're working on a project, you're constantly forgetting and relearning code as you go. And the situation is even worse for projects where multiple people work together where nobody knows what everyone else was thinking. We look at the code and try to build up sufficient context in our heads to make the necessary changes. When we misjudge that context or misunderstand existing code, then we end up making mistakes.

The way we judge whether projects are actually solid is by the level of specification and testing they have, the experience of the developers, and amount of usage they see in the wild. All of these same tools work just as well with LLM generated code as they do with code written by hand.

Farming out design decisions to the LLM without reviewing the output or doing proper testing will almost certainly produce low quality code, but that is no different from somebody just slapping some code together to make a kludge rather than really thinking through a problem. Working with LLMs does not mean farming out your thinking to the machine. What these tools actually do is automate the mechanical aspect of producing the code. Once it is written, you can read it, understand it, and change it as you would with any other code.

[–] melfie@lemmy.zip 9 points 20 hours ago* (last edited 19 hours ago)

I don’t generally take issue LLMs used as a tool, but I do have a huge problem with lazy slop slingers. I also don’t like that the frontier models are closed source and rent-seeking, especially when they were trained on copyleft code and by all rights should themselves be open source if they were respecting the licenses. I’d think Linus would have something to say about that.

IMO, a decent philosophy is that LLMs can be useful tools, but if anyone can tell you used a LLM, you failed. People should have a healthy fear of being ridiculed for outsourcing their critical thinking. Anyone using a ton of tokens shouldn’t be commended; instead, the quality of their work should be called into question because they’re likely using LLMs as a crutch instead of a tool. Commits by Claude probably mean the person didn’t review the diff to clean up the slop, and also probably didn’t understand the changes well enough to write a clear commit message themselves. I wouldn’t want to see any commits crediting Claude in the Linux kernel.

Edit:

I’d also think that if Linus likes LLMs and wants to see quality tech democratized, he’d be advocating for FOSS LLMs under the Linux foundation where all code and training data are open source. What we have now with Anthropic and “OpenAI” is the equivalent of cloud-hosted Windows, and open weight models like Qwen are more like Windows XP in that they can be run locally, but they’re still proprietary and can’t be inspected, modified, or built upon. We need the Linux of LLMs.

[–] errer@lemmy.world 68 points 1 day ago (2 children)

Because it's not like natural intelligence is always all that great either.

Wouldn’t be a proper Linus post without calling everyone else an idiot.

[–] eager_eagle@lemmy.world 11 points 17 hours ago (1 children)

I'm sure he included himself in that group

load more comments (1 replies)
[–] vandsjov@feddit.dk 18 points 20 hours ago (2 children)

Didn’t call everyone an idiot, but he’s not wrong, humans makes mistakes all the time

[–] bountygiver@lemmy.ml 4 points 5 hours ago* (last edited 5 hours ago) (1 children)

Yes, but allowing floodgates of AI work to come in it lowers the bar and allow more mistakes to flow in.

Just because humans make mistakes doesn't mean we are ok with shipping mistakes

[–] ChairmanMeow@programming.dev 2 points 1 hour ago

He's not saying that, he is saying LLMs are a tool and can therefore be used. He's not saying AI generated code gets a free pass into the kernel just because an LLM says it looks good.

[–] willington@lemmy.dbzer0.com 0 points 7 hours ago (1 children)

We pretty much have to make some mistakes in order to learn.

Being overly afraid of making a mistake is a good way to paralize oneself.

[–] forgetfulmeat@lemmy.world 1 points 27 minutes ago

Yes but AI doesn't exactly learn like we do. It's not about being afraid of mistakes. It's about mistakes being made with no real accountability and a system that cannot critically think the same way a human can. AI can process massive amounts of information faster than us but it cannot apply knowledge the same way we can.

[–] HiddenLayer555@lemmy.ml 48 points 1 day ago (1 children)

TL;DR

Linux is not one of those anti-AI projects, and if somebody has issues with that, they can do the open-source thing and fork it.

[–] chgxvjh@hexbear.net 4 points 16 hours ago

In response to

I expect maintainers who want to act on sashiko reviews to triage and verify them first before bothering authors, yes.

load more comments
view more: next ›