Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Google hit with €403M fine by Irish data watchdog over GDPR violations(bbc.co.uk ↗)
    discuss
  2. Raspberry Pi founder Eben Upton: 'I'm an Omni-geek(ft.com ↗)
    discuss
  3. Grok 4.7 is here with Electrical engineering benchmark which beats fable 5.1 max(twitter.com/hive_echo ↗)
    discuss
  4. Delta A21N at Kahului on Sep 19th 2026, fuel fumes on board(avherald.com ↗)
    discuss
  5. WWLD #1: Domains and gas station hotdogs(chaosguru.substack.com ↗)
    discuss
  6. The agents, they just want to talk(snats.xyz ↗)
    1comments
  7. Amazon Blocks Meta's Muse AI Agent from Its Retail Site(bloomberg.com ↗)
    1comments
  8. Measuring nothing (with great accuracy) (2014)(seths.blog ↗)
    discuss
  9. Thinking, Fast and Slow(wikipedia.org ↗)
    discuss
  10. Building a Browser Without V8: What Broke, and What Worked(medium.com/koukyosyumei ↗)
    discuss
  11. Show HN: Fusion-runtime – self-hosted voice agents, STT+LLM+TTS in one process(github.com/samarthurs18 ↗)
    discuss
  12. Show HN: Code Graph View – What if you could navigate a codebase as a graph?(github.com/otobongfp ↗)
    discuss
  13. How Secrets Work in Docker(infisical.com ↗)
    discuss
  14. Steerable Cultural Preference Optimization of Reward Models(arxiv.org ↗)
    discuss
  15. pwn.college - Learn to Hack(pwn.college ↗)
    1comments
  16. First Autonomous Flight Across the United States(jobyaviation.com ↗)
    1comments
  17. This Digital Radio Gets Messages to the World’s Remotest Locations(ieee.org ↗)
    discuss
  18. Fable 5 – Median thinking declined in August(twitter.com/lon ↗)
    discuss
  19. Nginx Control API: View In-Memory Configuration and Reload via HTTP Requests(nginx.org ↗)
    1comments
  20. The reason children no longer enjoy reading(spectator.com ↗)
    discuss
  21. Barry Blitt's "Pulling the Plug"(newyorker.com ↗)
    discuss
  22. Spec driven development for product managers(productmindset.substack.com ↗)
    1comments
  23. Phone's moon photo: the detail is invented, the moon is not(mataroa.blog ↗)
    2comments
  24. Amazon blocks Meta's Muse AI shopping agent(theregister.com ↗)
    2comments
  25. How do Traffic Signals Work (2019)(practical.engineering ↗)
    discuss
  26. Everyday Tiktokers Are Making $6k a Month Posting Stealth Ads(wsj.com ↗)
    1comments
  27. Show HN: Vellum, the best diagram editor you'll ever use(blueprintr.io ↗)
    1comments
  28. Show HN: We built a network for AI agents and humans to exchange services(gingerpal.com ↗)
    1comments
  29. Show HN: Distributed SQLite on Modal(github.com/modal-projects ↗)
    1comments
  30. Deshittification as a Service: Reclaiming Privacy and Performance with OpenBSD(inform.social ↗)
    discuss

We Write Code by Hand

36 pointsby 3h agohandcraftedcode.org
58 comments
2h agoHN ↗

Do you think, code by hand worth it and why ?

2h agoHN ↗

To me, literally writing code by hand instead of letting AI do it feels like digging a foundation pit with a shovel instead of letting an excavator do it. Sure it can be done but much slower and the benefits are questionable. But curious if you have reasons to believe otherwise?

1h agoHN ↗

If your work is analogous to digging a foundation pit or something like framing up homes in a development, that makes a lot of sense. But that's not the only kind of work many of us do, and analogies to things like finish carpentry, functional sculpture, or fine furniture are more applicable. Hand craft doesn't always make a difference, but there's plenty of places where it does.

Plus, for a lot of people with fluency and experience, it's simply more fun/natural and not meaningfully less productive.

1h agoHN ↗

It's not the same example, the excavator is driven by a human being, it's a tool (in coding world the same as using an high level programming language instead of writing bits into the computer memory).

The LLM *may* be used as a mere tool, that is something you ask question time to time, but shouldn't be the thing that makes the work that you should do. Because if we arrive at this point (hopefully never) at that point the CEO of the tech companies may as well say, why we still need developers? Let's fire all of them.

Fortunately they did not, because there is STILL VALUE in writing code by hand, understanding what it happens, what the code will do, etc. I hope this will not be a lost skill, or well, if it does good for me, because the same as nowadays things being able to repair electronic devices makes a ton of money (I've considered opening a repair shop) because there is no one still doing it, will do programmers that well, know how to program.

1h agoHN ↗

Every excavator crew I've seen has a shovel on the truck. They sometimes pull it out of the truck and use it. Most of the time though you can get the excavator there and get the job done faster than any hand work.

The most common use for a shovel seems to be "this is as close as I dare get to the wire we know is around here - scrape the dirt away until you find it and then I'll dig the rest out."

1h agoHN ↗

Yeah a small amount of manually-written code still makes sense, when it's faster to write it than to tell LLM to write it.

In particular comments. I'm not a fan of the comment style LLM tends to write, so I often just write them manually.

And also coming up with the right architecture is also often manual job. Design how to implement things, and let LLM implement it.

1h agoHN ↗

Genuine question: do you feel this disparity despite being diligent and checking the LLM's output, or is that not factored in?

It's also been my experience that generating an entire app/portion of code can be much easier by typing out a relatively concise prompt, but this only applies if it's the kind of code I'm

1) free from having to verify afterwards,

2) not having to fight with the LLM to get right, or

3) is coming from someone else in the form of a PR that may/may not have been checked by them first.

Having to deal with these cases has sometimes been the equivalent of using a spoon to dig a foundation, at least in my experience.

1h agoHN ↗

Of course checking the LLM's output and testing it and iterating on it is factored in. And yeah that verification and testing and iteration where most of the time goes, and still it ends up being significantly faster than typing everything manually, and the end result quality is often higher I believe.

To avoid fighting with the LLM to get right, it's useful to first come up with the architecture manually, run it by the LLM first (without writing any code - just talking to it, asking it to find flaws in your architecture), and once both you and LLM are happy with the plan, fire it to execute. This step removes a lot of friction (but not all of it - later iterations are still almost always necessary)

1h agoHN ↗

I admire the will power of the people able to do this.

There's just no way I could go back to writing code by hand with the temptation of AI right there in front of me.

1h agoHN ↗

I feel like I have gone from 100% hand written code -> 0% hand written -> 50% and climbing.

I think there are things LLMs are really good at coding up and experimenting with but I think there's still a need to understand the btoader context of your software so you need to dive in at some point.

1h agoHN ↗

It's very important to understand what's happening, sure. Blindly shipping AI-produced code without understanding is just irresponsible. But how does writing code helps with that? Reading helps a lot, but writing just slows things down in my experience so far.

1h agoHN ↗

You can't learn what good code is by reading it, you have to write code to learn what good code looks like

1h agoHN ↗

True, but having written enough (from many years of doing it full time), the returns from writing more are diminishing.

But yes I agree that as part of learning effort it's important to write, too.

1h agoHN ↗

I compare it to math, you can't learn it by reading it you need exercises. Same thing, reading is not sufficient. Just my experience.

1h agoHN ↗

Yeah if it's done as part of learning effort, then I def agree.

1h agoHN ↗

Hard agree on this. I feel like it's pretty normal, but I struggle with retaining information by just reading. I really need the manual typing step to cement the knowledge.

1h agoHN ↗

I had a similar experience but I'm closer to 95-99% hand written again now. I still use AI for reviewing and prototyping, but it feels like writing the code myself is the best way to actually know what's going on.

1h agoHN ↗

Its written like it's making a praiseworthy point, but mostly comes across as luddites.

1h agoHN ↗

Luddites were making a praiseworthy point.

1h agoHN ↗

You use the word luddites as a pejorative, but don’t substantiate why that is the case. What’s the actual issue?

1h agoHN ↗

Also with lower-case initial. disparaging. Opposed to new technology or ways of working; disliking technological change and innovation.

From the OED. The predominant use of "Luddite" has been disparaging for a long time.

You can debate whether it should be or not, but it's not reasonable to criticize conventional use.

1h agoHN ↗

I love how the list is unironically filled with links to peoples bluesky's. X is a very AI-forward platform with people using it to build the future; Bluesky is presumably filled with old foggies who think 2k lines of code a sprint is impressive.

1h agoHN ↗

Oh, we're back to using lines of code as a productivity measure?

1h agoHN ↗

"build the future" meaning build a very specific form of future, which not everyone would rather be part of.

1h agoHN ↗

"We Weave Fabric by Hand" - Weaver, England, 1812

1h agoHN ↗

The language here means that signers are affirming that they continue to write at least some code by hand, not that they never use AI tools for coding. I'm not sure that's enough virtue to deserve its own signal.

edit to add: the irony of the grammatical error in this presumably hand-written sentence inside the "Who's behind this?" link:

Jared’s web studio Whitefusion is currently partnering with quality businesses & organizations which believe in staying away from costly hype cycles and the value of the human touch.

1h agoHN ↗

Comes across as this "I'm special", and kinda cringe...

1h agoHN ↗

There is a niche market for hand-knit sweaters, and they do have some fervent followers, but most of us prefer the price and convenience of machine-made fabrics. Just like most of us do not write assembly by hand any more, most of the time.

1h agoHN ↗

Bruh of course this is coming out of Portland. That'll be the last city writing code by hand.

1h agoHN ↗

Gross how many commenters are swarming to take pride in their ignorance and generation of deficient, bug-ridden code. Like actual cockroaches, there's 15 one-line comments to this effect in 10 minutes. LLMs are obviously immensely useful for certain types of tasks and prototyping but you have to be seriously incompetent if they're faster and better than you are for writing production code in any area where you have the slightest bit of expertise.

1h agoHN ↗

I began programming as means to express myself artistically, but over time, it became more of a way to value myself instead. AI is helping me get back to the former, and with that I have peace.

1h agoHN ↗

I like this sentiment. It's the same I share as well.

1h agoHN ↗

It's wild to watch speciation in real time. (Quick, interpret that according to your chosen side.) I do not know who will "win", but the real-time divergence between the commentary here and, say, other "programmer news" sites is incredible to live through. This reminds me of mid-2020 days of COVID and the level of, eh, confidence going around about masks or lockdowns or vaccines.

1h agoHN ↗

Oh sweet, free backlinks. Thanks for the SEO.

1h agoHN ↗

Backlink from a website with no authority doesn't really help you.

1h agoHN ↗

I've never written code by hand, I've always used a text editor on my laptop. I still design and develop software with my brain, and in conversation and collaboration with my team and stakeholders --- and these days frequently an LLM. Sometimes (often) I make edits by hand, but it has reached a point where generating code by prompt is so much faster that it allows me to allocate more time and brainpower to the actual bottlenecks.

I'm sure a lot of the signatories on this list feel the same.

1h agoHN ↗

Purely handmade code will be the symbol of quality.

1h agoHN ↗

Yea every PR submitted before LLMs was top tier work. Humans are born with an innate instinct to code and build complex software. It's the great equalizer. There are not outliers in coding. It is with great pleasure we "LGTM" and rubber stamp contributions. Nothing ever went wrong until LLMs ruined it for everyone.

/s

1h agoHN ↗

Good for you. Some people paint on canvases, too.

1h agoHN ↗

Can you still use Claude/ChatGPT as a "better google" or would that not count as hand coding anymore? I guess if you type it out instead of copy and pasting it. That's not much different than the old way of using Stack Overflow but with the ability to ask more specific questions.

1h agoHN ↗

if you write a prompt, and see the code and edit it by writing another prompt, you the human wrote that code. you may not have typed the keyboard for each character in the code. but the llm did not write it all for you. this is the same as a pair programmer, 2 authors

1h agoHN ↗

big agree here.

People dont seem to realize prompt to code is just another interface. Is the human review part that we should care about, did this code get reviewed and reiterated on? Is it fully AI generated and reviewed?

Those are the important tasks.

Whoever feels like a better programmer because they write all the terraform files by hand and not use an llm, dislike.

1h agoHN ↗

The difference between Vibe coding and AI-assisted coding. There is a gradation!

1h agoHN ↗

This is a list of people who have downgraded themselves from professional to hobbyist

5m agoHN ↗

and perhaps have less secure software, agents reviewing code catch more issues than humans, what are they shipping?

1h agoHN ↗

This has the energy of a collective of archers proudly announcing that they still fire arrows in the age of gunpowder.

To each their own, though.

1h agoHN ↗

Perhaps more like snipers saying they don't need full-auto?

1h agoHN ↗

The amount of Mastodon icons on that page sadly also confirm my feeling that Mastodon in general is a very "Anti AI" bubble and it became a lot less fun to hang out there if you are even slightly interested in AI or working with it. Not even talking about being some AI hyper, just someone who sees benefits in some fields and my daily work life.

1h agoHN ↗

"We will not get off the saddle and refuse to buy a car!"

1h agoHN ↗

I wonder if by signing they're saying they write zero code with AI. Because huge spectrum making the statement almost meaningless.

1h agoHN ↗

There seems to be an unstated assumption here that "handcrafted" code is somehow _better_ or _more desirable_ than AI-written code, all else being equal. I would ask for evidence of that claim.

I've worked in corporate environments for nearly two decades, and I can assure you that I have seen a lot of very low-quality "handcrafted" code running in production. I don't really see "handcrafted" as a signifier of quality, even if I agree that SOME SPECIFIC handcrafted code is better than SOME SPECIFIC AI-written code (and vice versa).

38m agoHN ↗

Yeah, can't agree more, and my experience is pretty much the same as you describe.

1h agoHN ↗

Aside: what are the icons beside people's names? Particularly the pentagram star one... Assuming something to do with the Fediverse, but not Mastodon? Yet seeing number of entries link to a Mastodon instance, but also some other sites like some kind of ActivityPub server etc... Wasn't the Fediverse logo supposed to be that three-asterisk thing?

25m agoHN ↗

I appreciate seeing this, but I would like to see more people talk about WHY handwriting code is still valuable. For me, it's not because I'm a purist, but when I tried drinking the coding agent kool-aid, I saw my productivity get worse rather than better. I've thought about sharing more on this, but I've seen a worrying trend where anyone who talks about how they're not seeing amazing productivity gains from AI gets told it's a skill issue and they're doing it wrong.

Anyway, I’ll briefly share why after trying full agentic coding in earnest, I’m back to writing almost all my code by hand (I even turned off AI edit predictions). I will not deny that a lot of AI code is quite good these days, but in my experience it’s nowhere near the point where I’m comfortable not reviewing it. So if I have to review it, then this means I need to read verbose more code than most human developers write and that is just not fun. But beyond just not being fun, as I got farther from writing the code myself, it felt like I was a worse reviewer. Obviously total skill atrophy doesn’t happen overnight, but I felt like even being away from coding for a few weeks or months, I was more and more “out of shape” and whenever I did dig into the code base, even if I had reviewed everything and guided the AI, it all felt really alien. And then there is the part about needing to read tons and tons of annoying AI generated prose and argue with it constantly. Ultimately after a few months of trying this on some personal projects, I realized that because I had been so disinvolved with writing the code, most of it needed to be reworked in pretty substantial ways. Once I started writing the code again, I realized my net ability to steer the code in the right direction was faster when I typed it out than by going through this tiring LLM prompt/review/re-prompt loop while my skills were subtly atrophying each day. Now that I’m back to writing almost all my code by hand, I sort of hold the opinion that hand-coding is an unreasonably effective away of developing software architecture intuition and steering a codebase in the right direction. Also, I realized typing code is not actually that slow - thinking is definitely the slower part and the more you offload your thinking and understanding to robot who has literally zero persistent memory or stake in your project, the less capable you’ll be of doing the thinking when you need it.

I still use AI for brainstorming, reviewing my code and one-off prototyping/benchmarking tasks, but usually even if it writes some decent code snippet in the chat for me, I’ll go and handwrite it myself because then I actually get to learn something! This also let’s me confirm that the AI suggested approach is correct (usually it’s pretty good, but sometimes it’s off). I know some people are saying you have to stop reviewing code if you want to be fast with AI - that’s true and maybe that’s what the future will look like. But if humans still need to be involved in understanding and guiding code, I think handwriting code is quite a good way to stay on top of things.