6/17/2026 at 3:51:17 PM
It is now significantly harder to figure out who understands the systems and is using AI effectively and who doesn't know shit and is just slinging LLM copypasta around. Before 2025, the underperformers/coasters were at least relatively identifiable by the paucity of their contributions. Now all of the sudden every single engineer is filing PRs, code reviews, technical design documents, and every other artifact under the sun with perfect formatting and at least superficial plausibility. This is mostly due to incredible pressure from the C-level for every engineer to be using as much AI as possible, but it's also just a game theory respopnse because it's in every engineer's best interest to be as prolific as possible.We are absolutely drowning in documentation and code that seems legit and the only recourse is to lean on AI to help process the sheer quantity of it. I have a feeling that the fallout from this phase of the industry is going to be an exotic form of technical debt that is remarkable mostly in its enormity.
by ryandvm
6/17/2026 at 4:29:28 PM
I'm sure this is gated by where you work (especially by how technically savvy your manager is), but the most effective contributors at my job tend to be the ones with near-zero (or sub-zero!) net LoC.LLMs are prolific and they love to add shit. Truly capable engineers are able to achieve more business outcomes with less code / fewer moving parts.
by strix_varius
6/17/2026 at 6:11:51 PM
"Truly capable engineers are able to achieve more business outcomes with less code / fewer moving parts"I'd simplify to "Truly capable engineers are able to achieve more positive outcomes" - half of what makes a capable, dependable engineer is knowing what outcomes are needed and making them happen.
by tj-teej
6/17/2026 at 6:32:58 PM
Good revision!by strix_varius
6/17/2026 at 5:51:02 PM
I really can't agree with this. Sure pure LoC is a bad metric. But there is a correlation between output and LoC. Outside of a very senior developer, maybe a Principal or Lead that is spending all day in architecture meetings and reviewing PRs, most high performers are also outputting code.by ecshafer
6/17/2026 at 6:36:02 PM
This is exactly what the article is addressing:> But there is a correlation between output and LoC.
That is less true today than it ever has been, due to LLMs.
by strix_varius
6/18/2026 at 4:43:40 AM
They could just use AI to communicate. Why they they still on meetings?by dlahoda
6/17/2026 at 7:53:02 PM
"High performers". Can't believe we have normalized this vocabulary, among us, "hackers".by dakiol
6/17/2026 at 8:08:15 PM
Most of us work for business and on teams where performance matters.by therealdrag0
6/17/2026 at 11:27:02 PM
Dunno about you but I work for a "business" (large company, you've heard of it) and the concept of "High Performer" is synonymous with "best politician". Sure, a lot of theater goes into things, especially dances around "data points", but at the end of the day the top tier goes to the fortunate sons.by blindhippo
6/17/2026 at 9:39:52 PM
I’m not sure that there is a consistent definition for matters in this context. What matters is completely subjective to an individual. Furthermore, performance is rarely correlated with success and compensation in an enterprise. I could just as easily say that playing the game is what matters.by oompydoompy74
6/18/2026 at 9:26:43 AM
You should not treat it as fact that "performance" of an individual, not a team is a thing that actually exists in any way that matters and is measurable.by SideburnsOfDoom
6/18/2026 at 9:37:14 PM
I do treat it as a fact. Why shouldn’t I? Varying performance among my coworkers is obvious and blatant.by therealdrag0
6/17/2026 at 4:54:18 PM
if you're trying to use sloc as a proxy for productivity in any way, shape or form you've already lost the game.i tend to find that the most productive teams make better decisions and work fewer hours. the quality of decisions is such a huge force multiplier that it renders actual hours worked almost an irrelevant variable.
by pydry
6/18/2026 at 1:31:30 AM
> if you're trying to use sloc as a proxy for productivity in any way, shape or form you've already lost the game.
YES! this is exactly why at $work we have moved from loc to number of pr's per week!in fact, i've sent over 20 variable rename prs and am now topping the leaderboard!
by andrekandre
6/18/2026 at 11:15:36 AM
Good code is absent code LLMs by nature work like autocomplete on steroids. They're always trying to write more than necessary to please the prompt. Seniority now is measured by the ability to break down a task so that the agent doesn't even think to drag in unnecessary abstractionsby SwtCyber
6/17/2026 at 5:09:43 PM
• LoC/LOC = Lines of Code• sloc = Source Lines of Code
.. so I suppose nloc would mean Net LoC
by QuantumGood
6/17/2026 at 5:49:29 PM
[dead]by ihsw
6/17/2026 at 4:46:12 PM
The most effective contributors at your job remove more code than they add? That doesn't sound effective that sounds like digging ditches to fill them. Every line of code removed is a line that was previously added.by 4lx87
6/17/2026 at 7:14:53 PM
We had a library written by a former employee who was a prolific producer of code. He insisted we needed it and spent over a year developing it in company time.The library was a masterpiece of what if driven development. It was about 50k LoC, and it had 300k LoC of dependencies. It was a nightmare to modify. And no one wanted to take over maintenance so people would submit PRs to the former employee when they did modify it.
I wanted to change something in the library to support a large migration I was in charge of. When I went digging it turned out that we were barely using any of the features in the 2 years since he’d finished it. I replaced the 50k LoC library and 300k LoC of dependencies with 300 lines in less time than it would have taken me to modify the library (a few days).
by sarchertech
6/17/2026 at 9:56:44 PM
Every line of code is a liability. A potential security breach. An error waiting to corrupt customer data. A maintenance burden.by agentultra
6/17/2026 at 5:21:05 PM
Turning inefficient, unreadable code into efficient, readable code often results in an overall reduction in LoC.High-quality code and high-volume code are highly anti-correlated. Incidentally, low-quality code that is excessively long just so happens to be common complaint with AI-generated code.
by banannaise
6/17/2026 at 5:38:14 PM
Rewriting code to be more compact is orthogonal to productivity.by hhjinks
6/17/2026 at 6:54:58 PM
In a similar way to how a radial burn (https://space.stackexchange.com/questions/44608/what-happens...) may be orthogonal to your trajectory but still may be necessary to avoid becoming a fireball in half an orbit's time.by tauroid
6/17/2026 at 8:22:18 PM
How so? Let's say that over a year, a given section of code needs to be read and understood once a month. Taking some time to keep the code succinct and free of distraction will increase productivity all those occasions, as well as the rest of the lifetime of the system. Say the next decade.How is that not efficient?
by e12e
6/17/2026 at 5:55:51 PM
Which is not what is being discussed. Often rewriting code to make it more understandable makes everybody more productive.by jtbayly
6/17/2026 at 7:28:13 PM
Simplification usually requires the most effort and results in simple and elegant systems easy to understand and maintain with reduced error surface.So overall increases productivity by a lot
by risyachka
6/17/2026 at 7:08:14 PM
you have evidently been blessed to work only in places with acceptable level of quality code and above.by bryanrasmussen
6/18/2026 at 4:41:05 AM
Or he's the one bringing down quality and productivity.by LtWorf
6/17/2026 at 7:40:15 PM
non-coding manager spottedby dijksterhuis
6/17/2026 at 9:38:16 PM
> The most effective contributors at your job remove more code than they add?Yes.
> That doesn't sound effective that sounds like digging ditches to fill them.
It sounds effective to me, like removing garbage from sidewalks so people can walk straight instead of walking around the trash.
> Every line of code removed is a line that was previously added.
Correct. Today I cleaned up
if (a || b)
return true;
if (c)
return true;
if (d)
return true;
return false;
to return a || b || c || d;
and contributed various other negative lines of code in multiple areas.Every line of code removed is a line that was previously added.
Do you have any experience coding before LLMs?
by gitremote
6/17/2026 at 10:51:07 PM
Written exactly like that, yours is obviously cleaner.But, if that original code had comments and traceability of each condition and return to a specific domain scenario, you would be doing a disservice by collapsing it to the one flat boolean expression. In that case, it may be better in its expanded form, and you should let an optimizing compiler do the collapsing.
by saltcured
6/18/2026 at 1:16:38 AM
There were no comments.If there were comments for each conditional, it should still be refactored as
return a || b // comment 1
|| c // comment 2
// long comment 3
// on multiple lines
|| d;
Many years ago, "lines of code" was the classic example of nonsense management metrics. Today, there are somehow HN users who argue that lines of code is indeed a good metric and ask "But what if the code had comments?" as if they have never seen comments interleaved with code.> In that case, it may be better in its expanded form, and you should let an optimizing compiler do the collapsing.
This is nonsense. This optimization is not about compiler optimization for efficiency. It's an optimization for human readability and maintainability.
by gitremote
6/18/2026 at 1:27:13 AM
FWIW, I'm no advocate of "lines of code", or really any KPIs at all. All I'm saying is context matters.Such branches could make sense if the conditions have to do with underlying domain concepts, but you expect the outcomes to be revised. It could just be a moment-in-time accident that they are all returning True right now.
This kind of tension is also where you often see indirection via configuration files or other auxiliary data structures. Or in the old days, things like bit fields instead of booleans, so that merging the conditions would encode different small integers to use as lookup table indices.
by saltcured
6/18/2026 at 11:45:27 AM
That's still going to make it hard to read. I'd have one big comment above talking about the different cases and then one line of code. Even with the slightly higher risk of getting code and comment out of sync. But that context switch between code and comments you need when you read this one return are pretty awful.by nedt
6/18/2026 at 3:53:43 AM
Right, and do you spend so much of your time doing that your net LoC is negative? If that's the case it implies people are writing code only for other programmers to clean it up. Programmers solving a problem created by programmers. That's dysfunctional. Effective engineering as I see it would be putting the processes in place to prevent having to constantly rewrite code.by 4lx87
6/17/2026 at 4:53:19 PM
> That doesn't sound effective that sounds like digging ditches to fill them. Every line of code removed is a line that was previously added.Because they were added doesn't mean they were needed and even if the same person added and then removed them, it doesn't mean they are digging ditches to fill them.
The idea that "I would have written a shorter letter, but I did not have the time" also applies to code, and sometimes later you are blessed with more time than you had when implementing something under deadline pressure.
by georgemcbay
6/17/2026 at 5:12:58 PM
> Because they were added doesn't mean they were needed and even if the same person added and then removed them, it doesn't mean they are digging ditches to fill them.Huh? If LoC weren't needed then adding them was unnecessary and a waste of time. Someone who is known at an organization for removing unnecessary code screams inefficiency to me. It's paying one person to create a mess then another to clean it up.
by 4lx87
6/17/2026 at 5:16:18 PM
> Huh? If they weren't needed then adding them was unnecessary and a waste of time.My previous reply already addressed this?
I can't help but think you are being purposefully obtuse if you can't acknowledge the concept of developers creating known (and hopefully temporary) technical debt due to various forms of deadline related time pressure or changing requirements.
by georgemcbay
6/18/2026 at 1:41:45 AM
Old guard status games be likeby whattheheckheck
6/17/2026 at 4:56:23 PM
> The most effective contributors at your job remove more code than they addPerhaps they tackle non-code-editing tasks like architecture, design, mentoring and code review (think staff and principal tasks)
> Every line of code removed is a line that was previously added
Yes. This os not a failure. Code has a surprisingly short half-life.
by overfeed
6/17/2026 at 5:08:46 PM
It’s not a failure that resources were spent writing code that was not needed?by 4lx87
6/17/2026 at 5:22:11 PM
Maybe it was temporarily needed, but the assumptions around it has changed and now it's unneeded. Then people built on top of that not understanding that they could simplify the whole system, and only later was that option discovered.What would you keep from this?
by gf000
6/17/2026 at 8:20:27 PM
It's only a failure if perfect information was available at the time, an impossibility for most people.by overfeed
6/17/2026 at 8:23:37 PM
Write one (system) to throw away...by e12e
6/18/2026 at 11:48:41 AM
It's all about YAGNI. Programmers try to be smart covering cases no one thought about, reviewer is happy that corner cases have been implemented, artificial tests report all good. But it's just more to read when you have to change the code.by nedt
6/17/2026 at 4:50:59 PM
I definitely agree with the GP, and the point is that most often someone else (or an LLM) added all those LOC that are removed to make the system sensible.by fifilura
6/18/2026 at 12:57:01 AM
Thought experiment: if you can solve a problem with 100 lines of dependency free code, or with 10,000 lines of code that depends on hundreds of things - which is better?There's an obvious answer of course. And that is the direction that these effective senior engineers move towards.
by strix_varius
6/18/2026 at 4:46:23 AM
Numbers feels like outliers.by dlahoda
6/17/2026 at 8:41:14 PM
… by some fool who didn’t know what they were doing, since evidently the same behavior could be done with less.by FuckButtons
6/18/2026 at 4:39:53 AM
Not everybody is good at their job, or requirements changed over time.by LtWorf
6/18/2026 at 12:27:34 PM
Deleted code is debugged code.by BerislavLopac
6/17/2026 at 6:18:28 PM
There are also people who think AI is magic. I have often heard - "we want to use AI to automate processes but we don't have full documentation about the processes, we hope AI can help". Despite being told that no one can create outputs from thin air - every AI topic turns into the same discussion.Often the solution to create those document to feed into these AI automations? Use AI. Its like ouroboros. Create docs using AI, then summarize and ingest using AI, explained by AI.
Same thing is going to happen with code. Create 1000s of line of code using AI. Then explain it using AI etc.
by thisisit
6/19/2026 at 12:03:20 AM
a process of1. add tools to be able to do the job 2. work through the process using the agent interactively many times 3. have an llm read back through the session histories to create the full agent definition 4. run it and review
works fairly well, and does use llms for most of the steps
by 8note
6/17/2026 at 5:28:35 PM
> It is now significantly harder to figure out who understands the systems and is using AI effectively and who doesn't know shit and is just slinging LLM copypasta around.It's okay, I'm sure the algorithm questions during the interview phase totally weeded out the fakers of systems knowledge right?
by giancarlostoro
6/17/2026 at 10:48:25 PM
I've even seen AI-generated roadmap documents that promise the world, are broadcasted to director+, who sign off without a thought.Words and code are so cheap they're meaningless, while human focus, attention, and understanding are so expensive and overloaded.
by golly_ned
6/17/2026 at 3:53:55 PM
Maybe the solution is to look out for the most silent engineers. Those that output less despite having the ability to create near infinite output.by blensor
6/17/2026 at 10:08:07 PM
Not sure how to understand that. You mean as the best engineers?Funnily at my company, the few engineer that did the majority of the work before AI still do the majority of the work now. By majority I mean tackling both more issues and better.
However there is a general verboseness and over engineering trend across the board.
by AStrangeMorrow
6/18/2026 at 8:24:14 AM
Kind of yes. The person who does not spam the messages.What I noticed for myself is that saying no to something is becoming harder by the day because, why wouldn't you try something if it's so cheap to do.
That makes having the strength to say no almost a quality in and of itself.
That is true both for external pressure and internal pressure.
by blensor
6/18/2026 at 12:29:47 PM
Saying "no" as in "this makes no sense" is not the same as "give it to another team". The first can be an engineering take while the second is just politics.by LtWorf
6/18/2026 at 6:22:48 AM
"I distinguish four types. There are clever, hardworking, stupid, and lazy officers. Usually two characteristics are combined. Some are clever and hardworking; their place is the General Staff. The next ones are stupid and lazy; they make up 90 percent of every army and are suited to routine duties. Anyone who is both clever and lazy is qualified for the highest leadership duties, because he possesses the mental clarity and strength of nerve necessary for difficult decisions. One must beware of anyone who is both stupid and hardworking; he must not be entrusted with any responsibility because he will always only cause damage."— Kurt von Hammerstein-Equord
These days it is so easy to appear hardworking (by volume of contributions) when you have LLMs. The difference is that the inept now can literally create orders of magnitude more than the careful, experienced engineer.
by sph
6/18/2026 at 3:51:03 AM
The under-performers and coasters just don’t read their code, in my experience thus far it’s been pretty transparent. PRs aren’t a perfect gate, but they’re one of the only ones we have right now, and it’s pretty clear who’s putting in the effort and who isn’t.by Arthurian
6/18/2026 at 4:05:31 AM
How is it clear though? It can be really hard to tell.by beezlewax
6/19/2026 at 7:47:19 AM
Surely the harder it is to tell the less of a problem the whole thing is.by tonyedgecombe
6/18/2026 at 9:18:15 PM
> the fallout from this phase of the industry is going to be an exotic form of technical debtThis is a common sentiment and possibly motivated by the belief that writing "clean" code was right all along. Even odds that an AI 2 major model versions smarter will be able to eliminate that debt or rewrite from specs derived from the codebase.
by xnx
6/17/2026 at 4:06:29 PM
I think it depends a little on how and where you work. In the energy industry of Europe where we are extremely regulated AI has been writing some excellent and maintainable code. Of course we can't do any of that CLEAN SOLID DRY stuff, or any abstraction and implicity really, and I imagine that AI would struggle with that. Though you have to wonder if any of those religions ever really worked when you consider that they've still failed to replace most COBOL systems 30 years later. Anyway, that's a different discussion and even Uncle Bob has moved on to functional programming.I've yet to have Opus 4.8 fail me with defensive explict code. Often it'll write code that is better than what I might have done. I imagine it would be a nightmare to go through one of the OOP debug chains with implict error handling, but when every function has a runtime assertion which is basically the contract for how it is supposed to work and exactly what to do if it encounters a corrupt state, then things are just so much easier with AI.
I do agree with you on documentation. The amount we have has exploded in the post AI world. Which is a little ironic since the assertion is frankly what you'll need to know and not the 10 pages of prose the AI autogenerated in the shared loop (microsoft's terrible confluence). It is what it is though, and at least it's easier to meet EU compliance rules now, since those are more about the bureaucracy than actual security.
by Quothling
6/19/2026 at 7:51:15 AM
>at least it's easier to meet EU compliance rules nowUntil the bureaucrats start using AI to create a flood of new rules.
by tonyedgecombe
6/17/2026 at 10:49:07 PM
>I have a feeling that the fallout from this phase of the industry is going to be an exotic form of technical debt that is remarkable mostly in its enormity.This.
I feel like it is going to become illegal for older engineers to retire until its all cleaned up. When the debt catches up its going to be civilisation level problem, like asbestos or lead.
by protocolture
6/18/2026 at 5:51:06 AM
> like asbestos or leadPerfect framing! I was leaning towards "AI Chernobyl" analogy in my predictions, but I think "asbestos" or "fossil fuels" captures its nature much better. May I borrow it? I definitely see the harmful consequences of "AI" exceeding both, however with sad realization that it usefulness was absolutely below par with any.
by aakresearch
6/17/2026 at 11:19:49 PM
[flagged]by deadbabe
6/17/2026 at 11:33:28 PM
>Illegal? Get fucked. They will retire and you can deal with the mess, you have AI.Considering the balance of my job is cleaning up technical debt, that's my own retirement I am worried about.
>When you can no longer pay off technical debt, you turn to technical bankruptcy: start over from scratch, greenfield.
What that looks like in say, 2030, I can only guess. We saw this happen to a multinational shipping company due to cryptolocker, but I dont know if theres going to be any interest in replicating that. Certainly the AI barking in the ear of the CEO isnt going to recommend it.
>I predict what will happen is eventually the number of technical bankruptcies will rise
Outside of industries required for national security maybe.
> there will be some new movement to only build codebases that fit within human heads, no AI required.
I suspect that rational governments are probably going to require No AI clauses in their tenders, but that we will also get hundreds of high profile "Whoops we used AI in this contract when we shouldn't" scandals that come to nothing.
by protocolture
6/17/2026 at 11:15:10 PM
I've been thinking about the manga Blame! a lot recently, where the entire story takes place in a run away machine built mega structure that is larger than at least the solar system.by tracerbulletx
6/17/2026 at 5:45:19 PM
>This is mostly due to incredible pressure from the C-level for every engineer to be using as much AI as possibleI think this is an important point. Software engineers always had the right instincts on how to approach AI for coding -- cautiously. Execs got too coked up on LinkedIn puff pieces from nobodies and adver-prophesizing CEOs selling their tokens and chips that they forced something unnatural upon their orgs.
Now what we see in the software dev space is incredible levels of malicious compliance ("you want slop, I'll give you slop").
by roncesvalles
6/18/2026 at 1:14:32 AM
I don’t know. I mean, I agree with you overall, but it seems like tons of engineers, especially here on HN, have been more than willing to go all-in on AI for at least the past year, with many dire warnings of “coding is a solved problem,” “if you’re not programming swarms of agents, you’re going to be left behind,” and so on.This has not been my experience with my fellow engineers IRL on average, but I do feel like there is a significant contingent of us who are ready and raring to yield engineering in its entirety to the LLMs.
by mplanchard
6/18/2026 at 3:29:38 AM
A lot of people who write code aren't professional SWEs. A lot of professional SWEs especially on Blind aren't typical SWEs at typical companies. A lot of people who claim to write code are lying. I mean would you take Gary Tan as a valid datapoint for how effective AI is at professional SWE coding? I wouldn't. But these are the kind of people who shill it the most on HN.Also, I suspect that a lot of HN comments that generally state that AI has been useful for their work are actually not referring to programming work, but it's very easy to default interpret it that way. For example, I just recently saw a comment stating how AI can do 90% of their senior-level job, and when I looked into the guy's profile, he was actually a designer, which makes sense. But on first read I assumed the comment was referring to writing code.
by roncesvalles
6/18/2026 at 12:44:20 PM
There's also a lot of people whose jobs involve sitting in 3 hours meeting to decide where to add another textbox to the website, and that will then create a ticket to create the textbox, have a meeting to estimate the creation of the textbox, have several meetings with the design team about the placement and size of the textbox.Some teams are incredibly inefficient. And in the end the AI is perfectly capable of creating the textbox.
by LtWorf
6/17/2026 at 11:05:33 PM
You'll recognise the good engineers as the ones that remove code.by contravariant
6/18/2026 at 4:30:19 AM
I bet code removal is _not_ something that goes into LLM training sets much, unfortunatelyby da-x
6/17/2026 at 6:18:01 PM
Eh, are you using the loop engineering effectively? Remember, Boris can merge more than 200 PRs a week mostly with merely a phone and despite his busy schedule. Anthropic engineers do not write code manually any more, and they don't need to review most of the code either.In all seriousness, though, I'm indeed curious about Anthropic's engineering practice, particular how they can achieve such level of autonomy.
by hintymad
6/17/2026 at 8:46:32 PM
Remember Facebook's original motto: Go fast and break things. That's where the speed is coming from.Anthropic's speed of development is about 20% AI and 80% technical debt. We all could be faster if we stopped trying to build things right.
Once Anthropic floats, I predict a screeching halt in feature development to fix all the technical debt that they're accumulating.
by youknownothing
6/17/2026 at 5:08:29 PM
AI usage perhaps will have to be monitored by AI.by j45
6/17/2026 at 4:34:03 PM
This game-theory phase seems to go hand-in-hand with totally myopic grift/gig/hustle thinking too. There is no product but the confidence act needed to win each moment.Chalk up yet another echo of the 1920s Gilded Age? Between all these economic spasms and the simultaneous tilting towards fascism, I think there is way too much historical rhyming going on right now...
by saltcured
6/17/2026 at 4:26:06 PM
So, in other words, all the "awesome engineers" can't really tell good code from bad unless it's really obvious? Why should we listen to you about AI code being crap, then? Maybe, in the end, you don't really know. Maybe AI is better at it than you?by budsniffer952
6/17/2026 at 4:41:30 PM
No. Your AI tool that summarized the comment did you dirty. The key here was this:> perfect formatting and at least superficial plausibility
Basically, a library full of books that have nice covers is going to take time to see that all those books are just filled with ipsum lorem. Before, they coudln't stand up a fake library.
The issue comes down to time and effort.
by jasonlotito
6/17/2026 at 5:42:59 PM
> Basically, a library full of books that have nice covers is going to take time to see that all those books are just filled with ipsum loremWorse if it’s a mixture of good content and ipsum lorem.
by skydhash
6/17/2026 at 4:34:07 PM
[dead]by horticulturist