Back to News
Advertisement
Advertisement

⚡ Community Insights

Discussion Sentiment

69% Positive

Analyzed from 2421 words in the discussion.

Trending Topics

#code#writing#understanding#llms#bottleneck#don#write#review#always#same

Discussion (70 Comments)Read Original on HackerNews

dbinghamabout 1 hour ago
I think most of this is correct, in spite of potentially being built on a bad assumption.

The assumption is that LLMs should be writing the code and human engineers reviewing and verifying the LLM output. And that this pushes the cost of producing down. And I fundamentally disagree with that.

Every time I ask LLMs to write code, even with Opus 4.8 (haven't tried it with Opus 5 yet), what I get ends up being totally rewritten. LLMs still aren't good at writing maintainable code. Can they write plausibly functional code? Yes. But it won't survive the long term. People using LLMs to write all their code are gambling on them eventually getting to a point where the LLMs can fix their own code. It's possible, but I wouldn't necessarily bet on it.

Where I have found immense value from LLMs is in code review. Repeated review by LLMs catches an amazing amount of potential issues. They really shine on security review, but are very effective with any kind of review.

The other thing that the "LLMs write code camp" misunderstands is that writing was never the bottleneck. Understanding was. And understanding the code is still the bottleneck. But understanding is truly gained during the writing loop. The understanding you gain from pure reading or code review is marginal compared to the understanding you gain while writing.

Most of the time previously spent writing was actually spent updating and deepening our understanding of the system under development. There's no replacement for that understanding in a world where LLMs are doing the writing.

But if you flip it: humans write, LLMs review, then you still get a major gain -- not in speed, but in quality. And you keep the understanding loop intact. I would propose that this might be the best way to deploy LLMs.

SoftTalker19 minutes ago
How do you handle the fact that an LLM can't seem to help itself from disgorging page after page of words no matter what it's asked to do? I've never seen an LLM say "this looks good as-is; I would not spend any more time on it; what's next?" it will always seem to suggest using another pattern or additional abstractions or other yak shaving.

But to be fair human code reviews have the same problem. It's like reviewers feel they have not done their job if they don't find something wrong.

dbingham12 minutes ago
Yeah, that's just a problem with review. I tend to keep it going until the stuff its finding is stuff that I look at and think "I can live with that". Usually by that point it's found the worthwhile stuff and what remains is minor or, like you said, yak shaving.
SoftTalker2 minutes ago
There used to be a bit of "wisdom" passed around that said "when you submit something to the client (or management, etc) for approval, leave an obvious mistake somewhere." Then they will find it and point it out, otherwise they will find something to critique, just to demonstrate that they contributed something to the review.

I wonder if the same trick works with AI?

ilovefood29 minutes ago
You're right about understanding. Where we might disagree is the conclusion. I think it's possible to build the understanding without having to type out syntax by hand (debugging, writing tests, etc). Maybe we're missing much better verification tools? LLMs will likely play a big part in those too (explain the codebase, walk me through A, B, C etc)
dwayneIIabout 1 hour ago
I write code in Go in an established codebase. 90% of the time the LLM gets a basic api/feature right and fully e2e tested as long as I give it enough business context in the prompt. The other 10% of the time I have to do some follow up prompts to either change the behaviour or change the approach of a given step in the flow or just to point out that the wrong pattern was used and please rather use our codebase standard. I haven’t actually hand-written code in well over a year. Is this way faster? Absolutely. Does it lead to better code? Yes, because I have time to write all the regression tests that keep the behaviour as I wanted it when others come bungling around.
sanderjd43 minutes ago
I do think the comment is right about understanding. I'm still feeling out what I think is the right level of understanding to invest in now. I think it is probably not the deep line by line understanding I used to have of the systems I worked on. But I also think it's easy to remain too aloof from how the system is being built, and that this is very bad. I think the right answer is somewhere in between, but I'm still working through my own process and forcing functions to strike that balance properly.
lukanabout 1 hour ago
" But understanding is truly gained during the writing loop. The understanding you gain from pure reading or code review is marginal compared to the understanding you gain while writing."

Debugging code step by step is how I understand complicated code.

broast39 minutes ago
many of us work with swarms of cheap off-shore contractors and have to rewrite or finish their code already as it is. The llm is much lower friction
rufius34 minutes ago
IME, the LLM when used well also gets closer to correct.
marginalia_nuabout 1 hour ago
Code was very rarely the bottleneck in the first place.

If programmer productivity was something we actively optimized for, we wouldn't have crammed programmers like sardines in warm and noisy open floor offices with 2000 ppm CO2 levels and then further constantly interrupt them with emails and slack pings and meetings all day long, Jira rigmarole wouldn't make up a significant portion of what they did, programmers would have instead mostly been thinking and programming.

We've always had the ability to 2X if not 10X the output of each and every one of those poor souls. You don't end with this sort of programming purgatory because it's a productivity optimum, it very clearly isn't, but because it's a billable hours optimum and/or an org chart clout optimum and/or because of Jevons paradox got hands even in business management and the IT department was allocated too many dollars.

raverbashingabout 1 hour ago
> Code was very rarely the bottleneck in the first place.

I disagree. Kinda

What AI has made much simpler is that you don't have to waste time checking docs and have the best autocomplete system by a long shot - this was a bottleneck unless you were doing Java or some other language with "perfect" AC

What AI made "kinda easier": solving for usual problems. The stuff you would search Stack Overflow, or think a couple of minutes for an optimized solution - not a bottleneck but not 100% smooth neither

You still have to test and validate your code. AI made this easier-ish but this is still where I see manual work being needed (even if you are automating tests - you still have to think on what you want the code to do)

bitladabout 1 hour ago
I disagree. Coordinating 100 folks to align on a problems statement with "agile" and sprints was always the biggest bottleneck. Difference in opinion, internal politics is always a bottleneck.

I think now, code is the bottleneck. Just because you can generate million lines of code, people with different skill level think they are accomplishing the task, testing, merge conflicts, trust has become the bottleneck.

parpfish39 minutes ago
A pattern I have seen:

The “old way” would be lots of debate (both bike shedding and useful) among engineers during design phase, and then you’d implement.

Now it’s shifted so there are no design docs and there is only the generated prototype. People trying to do their design review while there’s already a functional-ish prototype and it goes nowhere. There’s an anchoring effect in place because the first thing already exists and management says “this seems to work, just use it and move on”. The result is that useful debates about substantive issues don’t happen and bikeshedding is all way get to do

marginalia_nuabout 1 hour ago
This just says that we can output code faster. I'm saying that the rate at which we output code wasn't the thing that was slowing down development. We've always been able to increase that even without AI by adjusting the working environment and removing obstacles to programming.

In larger organizations, quite often it's the business that is holding back development. They can only handle so much change and speed needs direction to be velocity. Drafting requirements is generally much slower than implementing them.

Like the number one complaint from programmers has been that they don't get to do programming. They want to write code, not update jiras or spend hours in meetings.

baron3dlabout 1 hour ago
What is the right, best software organization in the current era of AI coding? This question is critical and wholly unanswered in comprehensive research along the same axis as Accelerate (2018, Forsgren, Humble, Kim).

There are a lot of (excruciatingly) long-form posts about what folks are pioneering but not a whole lot of follow up about what failed. Where are the short posts on the negative space? How did halving your staff work out? Flattening your org? All those dark factories, what haven't they produced? How about all the other things tried, failed, and unceremoniously scrapped?

We need to explore and communicate the negative space more efficiently. Don't repeat the same mistakes, and don't make me read 2653 words when 300 do it better.

VeninVidiaViciiabout 1 hour ago
Hard to say what caused what, but the internet seems to mistake verbosity for authority, and so does AI.
baron3dl35 minutes ago
A tech comm course I took in college was graded on two 20-page papers and accompanying 5-minute presentations. That was like 10k written words in a single semester. It was a challenging class, and gave me substantial sense of accomplishment, just to hand in completed work.

Similar to a functioning side project in the 5-10k LOC range. Announcing something that worked a year ago, was laudable, even if not profitable.

I vibe coded 15k LOC this morning and read 20k words of AI generated text while doing so. No longer are either noteworthy or valuable public contributions just by virtue of having been done. I don't think that's widely recognized yet.

sanderjd41 minutes ago
Great framing.
mgaunardabout 2 hours ago
The cost of code actually increased; code debt is being accumulated faster than we can clean it up.
VeninVidiaViciiabout 1 hour ago
Yeah but look how much there is! Aren’t you impressed?
stefangordon19 minutes ago
I’m struggling to imagine a project that would require more than one talented engineer and a bucket of tokens anymore.

I think perhaps the assumption that engineering managers should have any employees may be outdated.

I can imagine average and mediocre engineers equipped with tokens could create chaos and debt on a scale never before imaginable, so it’s easy to see how orgs who still have these employees around are struggling with the transition.

The reality is you need to get rid of them all, and replace them with the most experienced highest paid person you can find. In the near future that person will become obsolete too.

tiago_human42 minutes ago
AI reduces the cost of writing code, but it makes adding things that nobody uses even cheaper. The bottleneck then becomes deciding what deserves to exist—and having the discipline to remove the rest. So this will imply more time spent in code reviews that lead to more iterations in PR's.

AI is doing a good job on writting code these days! Nothing against it; I use it every day, but the context switching is costing us a lot!

siliconc0wabout 1 hour ago
I don't think it changes much for good managers. It should always be able setting people and processes up so the team can land durable measurable impact. The managers that thought the job of software engineers was to write code were bad managers. PRs or LoC were never good metrics.
ilovefood43 minutes ago
Agreed, which is why I also believe "token usage" and similar proxy metrics aren't the right ones for what's next.
georgeburdellabout 1 hour ago
In my experience, management is mostly pissing away the gains made by AI by either:

1. Pursuing polish and quality beyond previous norms

2. Replacing $100/mo/seat SAAS with something coded by a junior costing $200/day to develop over months.

The cost of code approaches zero, but the cost of communication, having accountability, and hosting remains the same, and so individuals need to only coordinate to the extent that those things remain finite resources. Management needs to stop insisting that their directs adopt each others vibe coded tooling.

sanderjd40 minutes ago
I think #1 is quite a good thing, on net.
jboss10about 1 hour ago
> Gemini 4 helped with the editing.

Does this guy have access to Gemini 4 already?

I'm guessing Gemma 4 was happy to be mistaken for Gemini and didn't catch this mistake.

trollbridgeabout 1 hour ago
“Helping” is doing some heavy lifting in that sentence! It appears to be 100% AI.
ilovefoodabout 1 hour ago
Yes correct, Gemma. Will correct it shortly.
dataplumb3rabout 1 hour ago
If you wrote an initial draft you should consider using a better model or just posting what you wrote.

The smaller models can be sufficient for coding but for document writing not highly specific I've yet to be satisfied with AI output. I certainly wouldn't expect gemma to produce good outputs.

ilovefoodabout 1 hour ago
Makes sense, perhaps I'll post the raw notes + more material with the next article, prior to any edit. I like to use local models, even if they are not that powerful precisely because of that, I'm forced to put in more thought and it's my signed off article in the end.

Thank you for the suggestion.

add-sub-mul-divabout 1 hour ago
You don't build credibility by putting out slop and correcting it every time someone points out that it's wrong. You think it's our job to proofread and fact-check?
ilovefoodabout 1 hour ago
A genuine mistake. I make these posts for myself, mainly to structure & share my thoughts. Let me know if you find other errors, I appreciate the feedback.
raffraffraffabout 1 hour ago
My take, as a non-coder (well, not software engineering, I write 'code' but it's infra, and utilities in go/bash/pythong)...

I work at a company where the biggest problems are not 'writing code', they are:

- Organising teams

- Designing the system

- Prioritisation of work

The fuckups that we make on a daily bases are not 'code errors' they are failures in THOSE three things. I'll go into detail if anyone cares.

treetalker17 minutes ago
Generative language models have helped me most by drawing my attention to the importance of context, communicative compression, prompting, comprehension, coherence, and coordination in the domain of human groups.
sanderjd39 minutes ago
Same as it ever was.
convolvatronabout 1 hour ago
don't forget 'actually making decisions'
trollbridgeabout 1 hour ago
Pangram reports this post was 100% AI generated.
CharlesW13 minutes ago
Pangram's marketing always reminds me of Anchorman's Sex Panther cologne: "They've done studies, you know. Sixty percent of the time, it works every time."

Pangram's "100% AI generated" claims are right 65% of the time. https://link.springer.com/article/10.1007/s40979-026-00226-w

bonziniabout 1 hour ago
It's depressingly hard to find one that isn't. You see the title, think this might be interesting, and puke by the second paragraph.
ilovefood41 minutes ago
I'm really open to feedback. I checked your past comments and you posted:

> AI is good at coding if there's an oracle. If the system is ancient, unreadable, untestable, that's exactly the opposite. It won't get the exact set of corner cases.

I sort of mention this in the article, so I'm sure we're somewhat aligned on the core. How would you have worded things?

Advertisement
cineticdaffodilabout 2 hours ago
Can a llm predict the price of a change to a codebase in tokens and predict the origin of the price, aka cam it see good and bad architecture?
arjieabout 2 hours ago
Some code bases better than others but the top models can.
mathgeekabout 2 hours ago
Ask it to do so, would love to know your results.
cineticdaffodilabout 1 hour ago
I did, the problem is that you need a sort of standardized feature change to compare similar repos. So the metric is relative only to same projects lacking that same feature. So no, its a useless thing. No architecture score comparisson between apples and oranges.
j45about 2 hours ago
Software development has always evolved. Sometimes slowly, sometimes quicker.

LLMs have brought a different unlock, and for everything we're seeing become easier, it allows people learn to use the tools to take on solving problems that couldn't be approached before.

glimshe19 minutes ago
Your short post speaks of exactly what people should be talking about. Due to the panic related to job replacement, not many are talking about the new frontiers. Vibe coding is boring because it does the same faster/cheaper. I'm more interested in the things we couldn't do before but we now can because there's a crazy savant a few keystrokes away.
happytoexplainabout 1 hour ago
Code was never expensive.
mohamedkoubaa5 minutes ago
At least not the writing of it
doug_durhamabout 1 hour ago
Code was always expensive. Entire industries of design tools cropped up simply to avoid writing the wrong code since it is so expensive. There are entire journals dedicated to this. Organizations are fixated on making sure that the right code is written since the cost of getting that wrong is so great.
SoftTalker8 minutes ago
Building the wrong thing is what is expensive.

Once you know what you are building and can clearly describe it, the code isn't the hard part. Or at least that's how it has always seemed to me.

mathgeekabout 1 hour ago
I assume GP meant exactly this (the people designing and writing good code are expensive).
antonvsabout 2 hours ago
The worse problem is blog posts after the cost of writing collapsed.

Not everything has to be written as though it’s a middle manager’s idea of what makes for a good TED talk.

nvme0n1p1about 2 hours ago
I closed the tab after seeing the AI hero image. Good to know I didn't miss anything.
JSR_FDEDabout 1 hour ago
You did miss something. But the picture doesn’t help…why would you start an article with an image that telegraphs “low effort”?
zo1about 1 hour ago
Reading the domain-name had the same effect for me.
obmelvinabout 1 hour ago
You discount people's blogs based on them having a non-western name? Maybe I've misunderstood your comment, but the domain is just their name.
ilovefoodabout 1 hour ago
I can't change my name, but happy to change the hero picture :))
aplummerabout 2 hours ago
I read this entire article and didn’t sniff AI, plus it had some good insights…?
nwah1about 2 hours ago
Feels like a human-authored outline that was run through AI to make it into an article.
ilovefoodabout 1 hour ago
I've written this myself, Gemini 4 did a bit of editing:

> What follows is a cleaned-up version of notes I accumulated over the past year. Gemini 4 helped with the editing.

The image is made by an AI image generator on fal.ai. It's better I spare you all my design skills :)

hgomersallabout 2 hours ago
Well it contains a typo, so it made a cock up.
sodapopcanabout 2 hours ago
AI image, though.
JSR_FDEDabout 1 hour ago
Yes the article took a while to get going, but once it did it was thoughtful and well reasoned.
ilovefoodabout 1 hour ago
Thank you very much for the kind words :)