4
Agentic Coding is Burning Me Out | Sid's Blog
(0xsid.com)
This is a most excellent place for technology news and articles.
I never understood vibe coding (or ✨Agentic Coding✨) tbh.
May be I am too stupid, but I think as I code and code as I think. I do not usually formulate a plan before I start coding. I am categorizing architecture as code btw because, for me, architecture involves pseudo-code to some degree .
Even in college, I could never just understand lectures. I needed to write down the formulas and work out the derivations myself to grasp them. I know there are people who understand things right away, but I am not one of them.
So, now, when I see senior developers (which I am not) vibe code green field projects, I am just astounded as to how they manage the architecture + understanding + optimization + maintenance context.
Clue: you can vibe-code pseudo-code. Hell, I vibe-coded a season of screen-plays for a TV series. Once you're comfortable with the architecture and requirements, then have your agent do a "readiness review" to ensure it thinks you've specified everything well enough to code it, then have it plan implementation and execute the plan, and review the output to ensure it's all consistent with all that documentation, and iterate on the reviews until you're happy that the only "problems" it's finding are inconsequential.
Then hand it over to an independent human test team. Like you always should have been doing without LLMs anyway.
I've done it because work is ✨desparate✨ and required I try it to learn it for some reason. I'm at a senior level. Generally I instructed it on the exact architecture and patterns I wanted, along with the broad classes and algorithms required. That meant it was left to do the individual procedure implementation that I might have instructed a junior developer to do while I managed more macro level concerns. It did surprisingly well, but this was on a greenfield project, so It would probably become excessively slow and error prone on a sufficiently large project.
My experience is, they're not. Like the article says they are just focused on MOAR and not on the quality of the output. It may take years for the unmaintainable code to cause problems, and they may have already been laid off by the time that happens, anyway .
I don't write much code anymore, but when I did, there was a fair amount of embedded code, where fixing a bug is more costly than just pushing out a build to a production server. I actively sought out automation back then, but the purpose of the automation was to help cover edge cases and better test the embedded code for flaws that traced through multiple layers of code.
Whenever I start a new software project, it usually starts with a short period of experimentation when I try out several things. Then, I coalesce on an architecture in my head (and eventually document it), and once I do that I can add more structure to the code.
Given the state of the AI tools today, I can see myself using them to accelerate all the little fiddly parts of this (especially if I can give it a coding standard and have it stick to it). But I wouldn't trust it more than that. I would always keep the archictecture separate, because I don't trust the AI tools to change it on me for no good reason.
So did I, it was called C compilers so I didn't have to do hand coded assembly. They turned out O.K. after the first few buggy generations.
Hoooooh boy, that if is doing a lot of heavy lifting, in my experience. I'm constantly telling the stupid little stochastic fuck to follow basic coding standards I've given it.
I don't use a lot of AI tooling outside of debugging and a little bit into command discovery, but fuck if the little shit isn't constantly rewriting my code into a shit style that I hate and constantly correct.
One of my bosses has been a little Ai-pilled recently and he also contributes code.
I can tell which parts are his AI slop not from any git blame or anything but because of how it looks. You can see the stylistic differences in a block of code from one file to the next, and also it seems like AI likes to add comments to everything, and he just copy and pastes it all into the file. Those comments are often very different looking, too. So just stylistically everything is all over the place.
So, just like any team project.
Everyone has their own style, but Bob over here doesn't change his style every day. Before, my boss had their own style, and if I ended up working on their code I'd try to match that just to keep things consistent. But now it's all over the place.
AI slop just flops out whatever it feels like at any given time since it's just cribbing everything from the internet.