frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Is Antigravity code search dropping results recently?

3•sankalpnarula•33m ago•0 comments

Ask HN: How do you feel when your coding assistant loses context?

3•noduerme•3h ago•8 comments

Tell HN: Slow Down

10•jacquesm•3h ago•4 comments

Claude Is Down Again

3•Venkymatam•1h ago•0 comments

Lazy Tmux – Lazy-loading tmux sessions with a tree view

2•Alchemmist•5h ago•0 comments

Claude Is Down

12•haebom•2h ago•8 comments

LLMs learn what programmers create, not how programmers work

37•noemit•1d ago•14 comments

Ask HN: AI productivity gains – do you fire devs or build better products?

107•Bleiglanz•3d ago•199 comments

Ask HN: Any recommended engineering/dev related Slack channels?

2•Kuraptka•11h ago•1 comments

Ask HN: How do you offload all coding to AI?

9•makingstuffs•14h ago•11 comments

Tell HN: Russians may soon lose access to the global internet

32•taminka•20h ago•14 comments

Ask HN: Do you feel less happy when coding with agent?

4•zane__chen•16h ago•9 comments

Does nobody care about not being able to copy from Slack anymore?

5•neal_caffrey•16h ago•3 comments

Is Trusttunnel easy for people to use?

2•AnonyMD•17h ago•0 comments

Ask HN: Founders of estonian e-businesses – is it worth it?

11•udl•1d ago•4 comments

Ask HN: Does the World need more software?

3•Vektorceraptor•18h ago•9 comments

Ask HN: Is anyone here also developing "perpetual AI psychosis" like Karpathy?

29•jawerty•1d ago•24 comments

Ask HN: Is using AI tooling for a PhD literature review dishonest?

9•latand6•1d ago•26 comments

Does it make sense to ask Blackberry to re-license ancient QNX sources?

4•ymz5•23h ago•3 comments

Ask HN: Analog Model of Transformers

7•JPLeRouzic•1d ago•2 comments

Ask HN: $50 monthly budget, which coding models would you recommend now?

10•klueinc•1d ago•18 comments

Ask HN: How does one get rich in 2026?

7•roschdal•4h ago•4 comments

Tell HN: H&R Block tax software installs a TLS backdoor

150•yifanlu•4d ago•12 comments

Ask HN: Is the AI software developer demand destruction narrative accurate?

4•RyanShook•15h ago•2 comments

Tell HN: MS365 upgrade silently to 25 licenses, tried to charge me $1,035

24•davidstarkjava•3d ago•8 comments

Anonymize / de-identify LLM chat history export, post-processing

2•msiraj1•1d ago•1 comments

Veevo Health – book a CT angiogram to see plaque buildup in your arteries

5•arvindsr33•1d ago•3 comments

Ask HN: If there has been no prompt injection, is it safe?

7•sayYayToLife•2d ago•8 comments

SparkVSR: Video Super-Resolution You Can Control with Keyframes

3•steveharing1•2d ago•0 comments

Anyone know how long it will take to re-start Qatar's helium plants?

9•megamike•3d ago•6 comments
Open in hackernews

Ask HN: How do you offload all coding to AI?

9•makingstuffs•14h ago
Hey all, hope everyone is well!

I’ve seen a lot of comments and posts where people have stated they ‘literally’ never write a line of code anymore and was curious as to what people mean when they state this.

I say this as a daily user of Claude code with a max plan, so I’m not bashing LLMs or people who use them. I just find it quite hard to understand how it can be productive to offload _all_ coding, especially on brownfield projects.

My reason for saying this is that I often have to debug and triage issues. Often my triage and diagnosis leads me to a point where I can see that the issue is a simple fix with a couple lines of code.

Of course, Claude could fix the issue but the time taken to prompt, wait for it to spit out a plan, evaluate said plan, wait for it to finish implementing said plan, and then evaluate the work would be considerably longer than just making the change quickly and making a PR myself.

Obviously is also possible to just offload the triage and diagnosis to Claude as well but I personally find it unproductive as it essentially ends up with a higher chance of the LLM going rogue and changing unrelated areas of the codebase.

Comments

kenmu•14h ago
I've experienced the same issues with Claude Code. I think it's very important that you sufficiently specify what you want to accomplish. Both overall for the project, but also for the immediate task you're trying to complete (e.g., new feature, bug fix). There are some good frameworks for this: - https://openspec.dev/ - https://github.github.com/spec-kit/

For most applications, it is certainly possible to never write code and still produce something substantial. But in my experience, you have to be really diligent about the specifications and unit/contract/e2e testing. Where I've run into trouble requiring me to dig into the code is when creating software that uses new algorithms that haven't been trained on.

thienannguyencv•13h ago
"Offloading all coding" is perhaps a misleading expression. Those who say they no longer write code are often describing a change in what kind of work they do, not that they've stopped writing code entirely. They spend more time on technical specification, architectural decisions, considering differences, and figuring out when the model misinterprets intent—and less time on actual code typing.

Your brownfield instinct is right though. The productivity gap between "fixing it yourself" and "require → plan → evaluate → deploy → evaluate" only narrows when the task is large enough to justify the cost incurred, or when you're running parallel agents. For a bug requiring only two lines of code, the cost of context switching alone can negate the return on investment (ROI).

raw_anon_1111•13h ago
I agree with this completely. Since coding agents came along, I stay completely on the architectural, requirements level and don’t look at code at all. I have damn good markdown files and I have coding agents transcribe what they are doing and decisions I made.
ThrowawayR2•13h ago
You're replying to what looks like a bot account.
raw_anon_1111•13h ago
With brownfield projects, I can’t speak to. All of my (consulting) projects start with an empty AWS account and empty git repo.

My Claude/Codex session have temporary AWS Credentials in environment variables. The AWS SDK and CLI use those variables automatically.

My AWS account is bootstrapped with infrastructure as code.

They both do pretty well with troubleshooting since they have the code and my markdown summaries from the contract, diagrams, call transcripts, project plan etc.

They can both look at live CloudWatch logs to find errors.

AbanoubRodolf•13h ago
The brownfield vs greenfield split is the real answer to "how do people offload all coding." They mostly don't, on legacy codebases. The "never write code" crowd is almost always working on new projects where the AI has full context from the start.

The economics flip on brownfield for exactly the reason you describe: the diagnosis and fix are tightly coupled. You already did the expensive cognitive work to understand the bug. The AI's planning overhead exceeds the writing overhead at that point.

Where the calculus does shift on brownfield is larger feature additions that can be spec'd in isolation. "Add this new endpoint that follows the same pattern as these three existing ones" works well because the AI can pattern-match against existing code. "Fix this subtle race condition in the session handler" almost never does, because the AI's diagnosis phase is unreliable enough that you'd rather just trace it yourself.

makingstuffs•11h ago
Yeah that pretty much aligns with my experience in regard to feature additions. It’s great at those due to the reasons you mentioned!
stephenr•10h ago
> leads me to a point where I can see that the issue is a simple fix with a couple lines of code.

If you can see the problem, know how to fix it, and still ask spicy autocomplete to do it for you, that isn't "using a tool", it's cargo culting.

ad-tech•6h ago
I disagree that offloading all coding to AI makes sense. We started using Claude heavily for our services work about a year ago and what we found is you still need to understand the codebase deeply to know when the AI is hallucinating or changing wrong things. The prompt-wait-evaluate cycle you mentioned is real and kills productivity on brownfield projects. What actually worked for us was using AI for scaffolding new features or writing tests, not for debugging existing code. On debugging I still do it myself because I know our system and can fix it in 2 minutes vs 20 minutes prompting Claude. The people saying they never write code anymore probably either work on greenfield projects or they're not measuring their actual time cost accurately.
jryan49•3h ago
When people say they don't write the code, they mean they don't type it, but if there are not vibe coding garbage they are still watching what the agent outputs, and redirects it when it goes wrong. Instead of fixing the code manually they prompt the LLM.
paulwelty•56m ago
I don't look at much code in my own work anymore. Sometimes, I'm just lazy. But mostly, I trust but verify. I spent a lot of months looking at every line, hand-editing, etc. I built a fair bit of trust. I learned the best way to assign tasks and structure the work. Beyond that, I definitely keep the architecture for myself. And I do believe that prior manual fluency is a requirement for being this hands off.