Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
11–19 of 19 posts
Re: Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
#12I've only been using AI for small editor tools or for common utils (math, physics, string manipulation) instead of importing libraries to reduce random dependencies. I find that most LLMs hallucinate and write too much bad code. However, with Claude Opus 4.5 it's completely shifted my entire day. I'm out here running 8 concurrent agents knocking items off our todo list like crazy. I've gone from 99% manual code to 1%…
how are you managing to run and work between 8 concurrent agents to get through the ask in hand?
I keep seeing git workspace tree + agent combo being mentioned
Re: Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
#13Any systems / low-level / embedded developpers who could give their grain of salt on this? I'm a student and I'm specializing in embedded and systems programming, but everyone around me (webdevs) tells me LLMs will take over and writing C and Zig and Rust is useless... Should I just give up on my passion and embrace AI and high-level programming?
I don’t know if LLMs will completely take over, but they’re a useful tool today. I think it’s worth learning how to use them effectively, but also know how to work without them, and when to work without them.
Re: Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
#14I’m writing, designing and building more than ever before but Claude, Cursor and friends do all the grunt work. The most I’ll do is some pseudo-code if I want to clearly define a pattern for the LLM to follow - but that’s it!
Re: Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
#15I've only been using AI for small editor tools or for common utils (math, physics, string manipulation) instead of importing libraries to reduce random dependencies. I find that most LLMs hallucinate and write too much bad code. However, with Claude Opus 4.5 it's completely shifted my entire day. I'm out here running 8 concurrent agents knocking items off our todo list like crazy. I've gone from 99% manual code to 1%…
> 8 concurrent agents how are you managing to run and work between 8 concurrent agents to get through the ask in hand? I keep seeing git workspace tree + agent combo being mentioned
Give Claude Code a try, with git work trees and especially some skills pre-loaded https://github.com/obra/superpowers
Re: Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
#16Re: Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
#17Earlier quoted context omitted.
> 8 concurrent agents how are you managing to run and work between 8 concurrent agents to get through the ask in hand? I keep seeing git workspace tree + agent combo being mentioned
git workspaces, combined with some guard rails to keep the llm on task. For example a detailed document with requirements and implementation details and a unit tests that the llm can keep verifying against and/or enhancing between each step to increase the reliability of it’s output. Give Claude Code a try, with git work trees and especially some skills pre-loaded https://github.com/obra/superpowers
Two days after they released their web interface for Claude Code I was hooked. Haven't really used the regular interface or the app since. Oh god, I'll never go back to copy-pasting code.
Re: Ask HN: Anyone writing code from scratch or mostly doing architecting and LLM?
#18I still write most things myself. So far, Copilot has been very unreliable with what I’m working on and it often costs more time than it saves. I mostly use it for one-off regex or json stuff. As far as Python goes, I think it depends on your goal. If you’re just trying to get something quick done, you can probably use an LLM. If you’re trying to learn something new and get a new skill, I think it’s worth going throu…