Live data from Hacker News

Ask HN: Does it still make sense to write code by hand?

news.ycombinator.com

11–20 of 50 posts

Re: Ask HN: Does it still make sense to write code by hand?

#11

I do all of my code by hand. I don't even use an LSP. It makes sense as long as it makes sense to you. You don't need to change the way you do things because of some perceived thing you're missing out on. That is what the AI companies want you to feel and think because it benefits them. This applies to more than AI, but programming language choices and more. Heck, it even applies to social issues and politics :) Make…

I am already being forced to use Claude for all coding in my job. All personal projects/code I still write by hand. This has always been the fun part of software development for me.

Re: Ask HN: Does it still make sense to write code by hand?

#12
Yes, there is still a need to learn to write code by hand.

Maybe not to the detailed nitty-gritty level in a computer language that was needed pre-LLM era but nevertheless still a must.

In this context, it is good to revisit the practices from early days of programming where "System Analysts" and "System Designers" provided detailed specifications to "Programmers" who translated it into computer code. The key point to understand here is that the specifications were detailed i.e they were code just in a non-machine executable form.

So detailed Specifications followed by Verification is mandatory. Understanding the code implementation in-between has lesser need but still important.

See also my previous comment chains from here - https://news.ycombinator.com/item?id=48800484

Re: Ask HN: Does it still make sense to write code by hand?

#14
> you do it on your own terms, rather than on the terms of the employer

You've setup a condition where essentially every answer is true. I know someone who spins wool and dyes it and makes socks. Does it still make sense? Only once you add in the fact she enjoys.

If you're real question is what can be done better by hand in July 2026?

afaik optimization problems are still getting superior results from humans. Things like if you do this algo you can loop the array once instead of 3x. If you align this struct like this it's faster on a certain arch + os. Or if we do these 2 steps in microservice A we can only touch the memory and network once instead of twice etc.

a 2x speed up is still meaningful at scale. (I'd bet there are 100s of software companies out there that would pay 7 to 8 figures if you could 1/2 their AWS bill)

Re: Ask HN: Does it still make sense to write code by hand?

#15
Outside of work (where they force me to use the clanker), why on God's green earth wouldn't I write code by hand? That is the fun part; I'm not going to voluntarily give up the fun part of my hobby project. If you are a person who is wired to care more about getting to the end than the process (as some here have said they are), then fine, use an LLM if you want. But there's no "makes sense to" involved here - if you like writing code then write code, if you don't then don't.

Re: Ask HN: Does it still make sense to write code by hand?

#16
post #2

It's like any other tool. Use it when you need it. We don't insist that HVAC installers use hand-powered drills to "feel closer to the work," but we also don't insist that they use battery-powered drills and impact drivers on every single task. We don't insist that a chef use a Vitamix blender to chop a single onion when a couple seconds with a sharp knife will do, but we certainly wouldn't only use a sharp knife to…

I really like your analogy as-is, but LLMs aren't reliable power tools. Asking for external help requires good communication and can be overkill for small tasks.

Hiring a team of subcontractors carries risks unless you babysit the whole project.

Re: Ask HN: Does it still make sense to write code by hand?

#17

I have a related question: In a contest where all the code is generated by LLMs and not hand-coded anymore, does it still make sense to use high-level languages and other abstractions that were created for humans?

LLMs are known to do worse the more code they have to go through. Therefore, using a high level language where it doesn't have to work with as much code is going to be far more effective.

Re: Ask HN: Does it still make sense to write code by hand?

#18

I have a related question: In a contest where all the code is generated by LLMs and not hand-coded anymore, does it still make sense to use high-level languages and other abstractions that were created for humans?

I believe so, with Rust being exhibit 1. Rust is known for finding rather a lot of bugs while compiling instead of during debugging. The quote you'll often see is: "If it compiles, it usually runs."

The Rust compiler enforces many code style conditions that you most probably want in your finished program... Type checking, only one thread writing to memory at a time to avoid race conditions, etc.

It is possible to imagine an AI version of Rust that takes this even further in the future.

Re: Ask HN: Does it still make sense to write code by hand?

#19

> you do it on your own terms, rather than on the terms of the employer You've setup a condition where essentially every answer is true. I know someone who spins wool and dyes it and makes socks. Does it still make sense? Only once you add in the fact she enjoys. If you're real question is what can be done better by hand in July 2026? afaik optimization problems are still getting superior results from humans. Things…

> If you're real question is what can be done better by hand in July 2026?

The answer to that question is "everything". Humans are still noticeably better than LLMs at writing code, and just as fast once you factor in the time it takes to review and correct the LLM.

Post reply on HN