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…
Ask HN: Does it still make sense to write code by hand?
11–20 of 50 posts
Re: Ask HN: Does it still make sense to write code by hand?
#12Maybe 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?
#13I still write code by hand because sometimes it's faster and cheaper.
Re: Ask HN: Does it still make sense to write code by hand?
#14You'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?
#15Re: Ask HN: Does it still make sense to write code by hand?
#16It'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…
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?
#17I 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?
Re: Ask HN: Does it still make sense to write code by hand?
#18I 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?
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…
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.
Re: Ask HN: Does it still make sense to write code by hand?
#20and occasionally manually writing out the code could be useful as a mental exercise to keep coding skills sharp?