this post was submitted on 15 Jul 2026
173 points (98.3% liked)

Linux

66538 readers
316 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
you are viewing a single comment's thread
view the rest of the comments
[–] ZkhqrD5o@lemmy.world 53 points 5 days 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 58 points 5 days ago (6 children)

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

[–] fraichu@lemmy.ml 0 points 1 day ago

And what will you say when 80% of all climate saving technology gets invented using AI?

[–] Don_alForno@feddit.org 11 points 4 days ago

the destruction of the consumer electronics market ...

[–] fraichu@lemmy.ml -3 points 4 days ago (1 children)

This is like saying you should dig with bare hands even though drilling machines have been invented.

[–] eldebryn@lemmy.world 1 points 2 days ago (1 children)

Drilling machines are not made by forcibly kidnapping diggers and making them motion-capture their movements for a robot that pollutes and consumes water by ignoring previous green regulations.

[–] fraichu@lemmy.ml 0 points 1 day ago

The first robot is going to be shit. Eventually we will have a robot that will have less climate impact so much so that a human would be more load on climate and more polluting. Where will you take all your hate then? Should human diggers be illegal?

Training and LLM using your code isn't same as kidnapping you. Your freedom of movement still exists during and after LLM gets trained.

I agree they should pay full fines and maybe a temporary ban due to and proportional to their crime. And so should Taylor Swift and every other celebrity causing disproportionately more pollution.

LLM and AI is the inevitability now. You and I better prepare for a world where we can sell skill even after AI.

It's not all bad - that shouldn't discount their crime punishment, but it will go and discover next billion things about human body operation and will make you healthy and strong and will cure cancer, make us far more environmentally friendly than what humans can ever hope of achieving without AI and LLMs.

[–] yogthos@lemmy.ml 0 points 5 days 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.