Earlier quoted context omitted.
I use agents to build exactly what I want like I am pair programming with a jr engineer, and review every line of final output before I make a PR. I would have zero tolerance if anyone that did anything less in my orgs. Owning and understanding the code you submit is the one job that matters most now.
I feel that in a few years, or even less time, we'll see a whole bunch of companies implode, whist others remain fine.
Debian votes to allow "responsible use of generative AI"
351–360 of 484 posts
Re: Debian votes to allow "responsible use of generative AI"
#352Earlier quoted context omitted.
Yes. There are pockets of hardline anti-LLM policies for various reasons. SourceHut bans LLM generated code from their platform https://news.ycombinator.com/item?id=49461724 The Asahi Linux project bans LLMs. Unfortunate as LLM reverse engineering and driver writing would bring Linux to more Mac models much faster. The Zig project rejects LLM based contributions. Some of these policies were introduced when LLMs were…
> Some groups don’t care about the quality and object on moral or copyright grounds. Precisely why Debian Project's decision is both baffling and infuriating. I hope Debian forks over this. They have severely lost their way.
i don’t think you understand just how niche you already are
Re: Debian votes to allow "responsible use of generative AI"
#353Related: I find this self-assessed AI level for contributions [1] to be extremely useful, both professionally and personally, to communicate the level of AI assistance so that the person on the receiving end can evaluate how much time & effort they want to spend understanding my code. [1]: https://www.visidata.org/blog/2026/ai/#self-assessed-ai-leve...
I think 10 levels here is too much and hints that someone anchored on 10 as a round number and then forced the levels to fit after the fact. I don't really see much value beyond the 3 levels of AI disclosure that have been floating around: - fully human - ai assisted - ai generated
Re: Debian votes to allow "responsible use of generative AI"
#354Earlier quoted context omitted.
The issue that open source projects are facing at the moment is that it takes significantly less effort to submit a patch for review. A lot of developers who are submitting these AI patches don't necessarily understand the patch, so the onus is on the reviewer/code-owner. The reviewers are getting swamped (some reviewers are receiving 100s or patches per month). If feedback is provided at lot of the time the patch au…
The question becomes, does it take more time to create or review in the Grand scheme of the software life cycle? Because if it's still a time saver, even with the increased review load, then it's a win, correct? I'm not a coder so I have zero idea. Thoughts?
> I'm not a coder so I have zero idea. Thoughts?
I’m not trying to be mean, but this comment is basically “I have no experience with this topic, but it can just be boiled down to this one simple question right?”
Re: Debian votes to allow "responsible use of generative AI"
#355Earlier quoted context omitted.
Claude won’t tell you why it did something. Instead, it will generate a probable explanation. The two are very different
I'm not sure how context is managed between reasoning traces and actual output in Claude / claude code, but if the reasoning trace is in the context of the question for "why did you do that", it can actually answer why it did that.
Re: Debian votes to allow "responsible use of generative AI"
#356Earlier quoted context omitted.
Claude won’t tell you why it did something. Instead, it will generate a probable explanation. The two are very different
I'm not sure how context is managed between reasoning traces and actual output in Claude / claude code, but if the reasoning trace is in the context of the question for "why did you do that", it can actually answer why it did that.
Re: Debian votes to allow "responsible use of generative AI"
#357Earlier quoted context omitted.
Except LLMs actually are making programmers dumber. I personally know people, people whom I know for a fact were good programmers before, who have now completely stopped using their brains. When you ask them why they did something in the code, they say "I don't know, Claude did that and I didn't really question it". There was no such analogous phenomenon with IDEs.
You could also say the same with desktops. Desktops abstracted CLI commands like mv or ls. People who are taught on desktops will get scared when they see a terminal. Yet programmers will still know commands. Abstractions can make things easier but it doesn't require losing skills.
Re: Debian votes to allow "responsible use of generative AI"
#358The voting seems to have been pretty much linear to how pro-LLM they were. So it's interesting that all of the proposals were essentially anti-LLM and the chosen one was the mostly neutral, only slightly anti-LLM one. The absence of any pro-LLM proposal indicated that proposal writers are not in sync with the voters
What would "pro-LLM" look like to you?
Re: Debian votes to allow "responsible use of generative AI"
#359Earlier quoted context omitted.
For me, it’s not a question of whether I like it, nor where we might move in the future, but purely what is proven currently. In my experience, as in my evals, any model, including notably Fable 5 and GPT-5.6 Sol can and indeed do produce code that does not consider many edge cases, can be hard to maintain (especially Sol though it’s output has become markedly better with recent changes to Codex) and sometimes introd…
It's not about the prompt, it's about the guardrails. Static types, compiled, massive test suite, etc. That what I mean by extreme level of test coverage like SQLite. You'd actually need to be an expert in C and SQLite and the SQLite test suite just to sneak a bug into it. Testing and other verifications are going to be an exciting area for the foreseeable future. You can still write non-performant code even with tes…
What I will say is that I feel valid in saying that the developer behind gas town (a shudder runs down my spine even having to think about that) is not working in a test suite anywhere comparable to SQLite, though in fairness, you never claimed that.
Again, you are likely not wrong that with an environment like SQLite, bugs may be hard to sneak in, but then again, isn't retaining that so important that it is a strong argument for developers auditing LLM output even more strictly, lest we loose the resilience we currently have?
Re: Debian votes to allow "responsible use of generative AI"
#360For example, I’ve seen senior devs outsource their thinking entirely to Claude, then carefully (slowly) generate code that’s not slop on a per-line basis but is slop on an architectural level.