frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek launching v4.1 flash cheaper and more capable than v4 pro

21•nickweb•40m ago•2 comments

Ask HN: 3.5 inch diskette read errors, would a period correct drive do better?

29•rietta•1d ago•34 comments

I'm going back to coding by hand

33•trencedamp•4h ago•25 comments

Ask HN: Are others seeing Google's reCAPTCHA rejecting Firefox users?

252•Animats•5d ago•127 comments

Ask HN: Fable hacked my piano, can I release the results?

295•jmpman•3d ago•163 comments

Ask HN: How do you manage skills files?

307•imadtaieber•2d ago•285 comments

Apparently CodePen 2.0 sends data to their servers as you type

112•maxim-fin•2d ago•59 comments

Ask HN: Are you leveraging Spec-Driven / Spec-Anchored development?

4•locusofself•12h ago•2 comments

Ask HN: Who is using MCP in production?

198•sukit•6d ago•200 comments

Ask HN: Is ageism in tech still a problem in 2026?

3•leonagano•10h ago•1 comments

Ask HN: Would you hire a new engineer, or get 300k worth of tokens for the team?

5•websap•11h ago•8 comments

Ask HN: Would you read a statistics textbook?

106•usernametaken29•3d ago•66 comments

Ask HN: Why were OpenAI, Claude, and Grok simultaneously down?

404•halcdev•5d ago•705 comments

The universal programming language of LLMs

5•senorqa•14h ago•9 comments

Ask HN: Show your micro-SaaS

22•genekrapivin•2d ago•21 comments

Tell HN: OpenAI keeps stealing my money

10•dingdong2026•18h ago•3 comments

Ask HN: Anyone using dictation with coding agents?

3•TomEleff•21h ago•7 comments

Ask HN: Any Software Engineers here who enjoy their AI-native dev workflow?

12•pkos98•2d ago•12 comments

Tell HN: OpenAI brings back 5 hour limit for plus and business standard users

127•spwa4•1d ago•146 comments

Ask HN: Connecting Kubernetes dependencies to application telemetry

6•chipfixer•2d ago•2 comments

Ask HN: UK Rescue Rocket Sheds/Houses Information

24•burnt-resistor•2d ago•6 comments

Tell HN: Both recent GCP outages caused by fiber optic maintenance

20•fastest963•5d ago•1 comments

DeepSeek v4.1 Flash is now available for internal beta testing

21•dares2573•1d ago•8 comments

Ask HN: (Why) Was the LLM breakthrough useful for images, audio, etc.?

4•rogerrogerr•2d ago•5 comments

Tell HN: I want to see the same moon as you

16•UnderABlueMoon•4d ago•16 comments

Ask HN: Best Platforms to Orchestrate Agents

3•venkat971•1d ago•2 comments

Ask HN: How safe are our password managers in face of LLM cyber attacks?

3•muddi900•2d ago•1 comments

Bun rewrite and FLT formalization had nearly identical resource usage

5•Zsfe510asG•1d ago•1 comments

Is OpenAI silently routing GPT‑6 requests to GPT‑4o?

2•skaiuijing•1d ago•4 comments

Ask HN: Founders that raised funding and shutdown, did you raise again?

18•asim•5d ago•1 comments
Open in hackernews

I'm going back to coding by hand

33•trencedamp•4h ago
I have a successful app I built myself with a solid user base. I had been working on a new version via Claude on and off for about six months

In work we use LLMs exclusively. Nobody writes code anymore. It's all hands off and we have a high level understanding of how things work but no more than that.

When it comes to my side project, I was adding features at breakneck speed with Claude but I realized I have no clue how the new code works or what it changes or breaks. I spent many years of my life working on this project and I don't want to turn it into another vibe coded black box, especially without an org of other engineers to help.

So last night, I abandoned my Claude branch with all the fancy new things and started hand coding again.

It was very very satisfying. Sure, there was monotony. I changed some variable names and I had to chase down all the places they were referenced, comment out tons of stuff to get things working and then slowly bring it back in, but it felt like coming home to an untidy house after living in hotels for half a year, and starting to clean up. Yeah there's work to do, but this place is mine. My own. I know where things live.

It's given me love and energy for the project again (at least for now, I hope it continues!) and I'm delighted to say I took a good look at code I myself had written pre Claude and I still found many ways to write it better, refactor, make it more readable and efficient. I haven't forgotten.

If anyone is feeling the despair of not coding anymore, stairs you're losing your edge, I would suggest you ditch Claude for a few days at least and see how you feel. Your mileage may vary, but it's given me back something I thought was gone forever

Comments

dphender•4h ago
Plug Claude back into your cleaned up codebase.. Its performance may surprise you once again. Maybe the trick to keep our sanity is LLM only on the odd days of the week.
trencedamp•3h ago
The performance was never in question, it's the control I missed
krapp•2h ago
>Maybe the trick to keep our sanity is LLM only on the odd days of the week.

"I can quit any time I want to."

conartist6•4h ago
Welcome back! Despite all the prophecies of doom and gloom, little has changed.

You can still very much get ahead by working smarter not harder, even when working with your hands

yoz-y•3h ago
Power to you!

I started building a Claude which retains some brain power. After each pass it ablates a function or a portion of code and forces you to write it out by hand. My hope is that I can get something that deals with boilerplate and makes me focus on the interesting stuff. We'll see.

abstractspoon•3h ago
Goog for you!
dudewhocodes•2h ago
Welcome back and godspeed.
sgbeal•2h ago
> I changed some variable names and I had to chase down all the places they were referenced,

   $ find . -name '*.c' -exec perl -i -pe 's/\btheOldName\b/theNewName/g' \{} \;
sfn42•2h ago
Any half decent IDE will change them automatically for you, no need to chase them down. Just look at the git diff if you want to see where things changed.
donkey_brains•30m ago
Yeah this is a very very common and fundamental operation in programming. Always use the “refactor” tool in your IDE instead of trying to change every instance of a variable name by hand.

It’s like using a linter: you do it because it’s the right thing to do and doing it without the tool confers no benefit and is prone to error.

dunefox•6m ago
Not using an IDE in 2026?
sfn42•2h ago
It's a common complaint that people lose control of their codebase using LLMs. It always strikes me as odd, because this is a choice you make when you use the tool.

You don't have to just give it a task, let it do whatever it wants, then accept the result. You can tell it how to do things. You can read the changes. You can ask it to do things differently.

You choose to relinquish all control and then complain that you don't like not being in control. It's all about the level of involvement you choose for yourself. It's not all or nothing, you don't have to go full vibe coder it's a spectrum and you choose where you want to be on that spectrum.

sevenseacat•1h ago
Even with manual reviewing, most of its changes will look relatively reasonable when approving every chunk... until you come across one that doesn't, and then it'll be a neverending chain of 'wait why tf does it do this? Why does it work this way?'
sfn42•1h ago
This is not a problem I've had. I know roughly what I want before I ask for it, I make sure the result is roughly what I expected. Some times if I'm not entirely sure what I want I'll ask it to plan the change or suggest some approaches etc then choose the one I prefer.

For me it works great. My judgement is that I get things done significantly faster, and generally with comparable or better quality than I would doing it manually. It's important to lay a good foundation, if you are careful with the broad strokes it helps the LLM lay the rest down more consistently. It's also a lot easier to refactor things when the need becomes apparent.

donkey_brains•28m ago
So do you make the LLM restrict its output to small, individually-reviewable chunks per PR?
aatd86•1h ago
Unfortunately I can't do that. My projects are too big now. In fact, this is how I deal with projects: I build the base manually and then I can iterate with AI faster once the fundamentals are solid. Sometimes the AI tends to forget those fundamentals or tries to change those and add unnecessary stuff on top. If I stay invested in what the AI is doing, I can usually spot it and nudge the AI back to sanity.

That is how I think it should be done.

spottedmarley•1h ago
The debate bothers me. Why anyone feels they need to only code one way or the other is strange. I do both. Actually, there are three options: By hand, hands off, and AI assistance while you code by hand. I'll do any of the three depending on what Im building or how I feel. Why does it have to be a hard line "Im not using AI anymore" or "I have to use AI for everything"?
rf15•1h ago
Did the same. First few days was like learning to walk from scratch again. Welcome back, programmer.
pulkas•1h ago
If your idea generation isn’t outpacing your implementation speed, coding by hand probably makes more sense. At least it keeps your brain engaged.

But the right move is to find a way to increase the rate at which you generate ideas and offload the coding almost entirely to AI. Because if you’re not doing that, someone else is. They’ll eventually build something better than your app.

And when people stop choosing your product, if you can’t come up with the next idea and this is your only source of income... well, good luck.

arkensaw•17m ago
> If your idea generation isn’t outpacing your implementation speed

For me, it definitely is. Hell, my idea generation outpaces my ability to delegate it to agents. I can't do all the things I want to do because I don't have enough time in the day to vocalise them all, let alone hand code.

But in my case, I choose to handcode sometimes because I value the certainty of the results more than the speed of development.

It's the choice between a well-engineered application that does a handful of things reliably through a well-tested UI, or a rough-around-the-edges app that does 50 different things passably well, most of the time, with an inconsistent UI and lots of small bugs

People here might question the "lots of small bugs" but I have developed some apps solely with LLMs and despite using test-suites and spec-driven development I still face constant regression and UI bugs creeping in with every revision.

A good example - in React Native, in Android, Claude cannot keep the controls above where the onscreen nav appears, no matter how many times I ask it to. It'll solve it until three iterations later when the issue will return on another screen.

rajeasy•37m ago
not going to easy after using agentic ai, as mind get used to it .not easy but best of luck.
dunefox•7m ago
I'm not. I just don't want to implement code for reading files, setting up and population databases, logs, etc. manually anymore. I want to automate boilerplate, the occasional frontend code, etc. and focus on the parts that are interesting for me. This way I can get things done that I wouldn't otherwise.
dosisking•4m ago
I hope I never have to use your software
dunefox•5m ago
Honestly, this is less of a problem with LLMs than with some colleagues I've had.
arkensaw•27m ago
I don't think anyone chooses to relinquish all control from a project they've worked hard on. It's a slippery slope. You start with allowing it to help out a tiny bit, being in control and understanding the code the LLM writes, and then you become more confident in the results, and you trust it, and you don't read every line, and before long its refactoring an entire file by itself and you're not reading it.

And then you look up one day and you don't recognise the codebase