Comment by prescriptivist
1 day ago
Guess what: This has all changed with LLMs. The impact of the average developer is proportional to the amount of code they ship in a world of copilots (key word is "ship", not write) and that's why some of the staff engineers I work with have 3 concurrent Cursor projects for the same codebase in flight at the same time. These are some of the best engineers I've ever worked with and they have drank the cool-aid of volume over quality.
I'm keen to this because I maintain our CI systems and have become acutely aware of the overhead of hallucinations breaking our CI tooling in pathological ways that draw me in to diagnose. A year ago I would have to log into our CI Kubernetes cluster to diagnose a busted build that doesn't self-report failure maybe... once a month. These days it's a couple times a week. LLM based dev is both amazing in the legit force multiplier it adds to writing code as well as the way it introduces some of the most incoherent and silly ways it breaks existing conventions.
I guess the headline is correct in that we are not hired to write code anymore, instead we are hired to shepherd code now, and a lot of it. And a lot of this code we shepherd is good enough but some amount of it is bad enough to break existing processes, but that is secondary to the volume and velocity we perceive from LLM code gen.
What you're describing is the erosion of engineering and computer science in software development.
We've turned what can be an engineering discipline into code slinging. I'll say my opinion is more focused on web development ad that's been my focus for the last 8 or so years, but I don't think that's unique to web either.
I don't use LLMs to help with coding, for many reasons that likely aren't important to go into here. I ship more code than most of my colleagues and I end up chasing down fewer bugs and production regressions along the way.
I don't have any problem with devs using LLMs if it makes them more productive, though that depends entirely on how one defines productive. As you said today it generally means shipping more code and has almost nothing to do with quality, which I'm just not willing to waste my time chasing. I'll ship quality code that I understand, and its either valued by my employer or it isn't.
Seeing as your focus has been on web development, why should it be more like engineering?
All bureaucracies evolve towards this state, be they governmental or otherwise. The stuff that can be automated has been. (In past times, it was automated in the sense of having clerks performing basic repetitive tasks by hand). But no complex system can be fully automated without breaking down frequently. The bureaucrats are no longer hired to carry out the basic tasks, but to fix the system when it breaks down. (In the past, they helped the clerks, or signed off on a manual override of a process).
Because the automation is invisible, all that the naive observer sees is the stuff breaking down and being fixed by hand, which looks like utter chaos. And they're always drawn to wonder if the system would work better if the people were replaced by automation. No, because new people will need to be hired to keep the new system working.
Like the average observer who says the current conditions are really just the old conditions born anew, you are conveniently ignoring rate of change and its destabilizing effects.
Can you explain why they have 3 concurrent cursor projects for the same code base?
Presumably to crank out multiple features at the same time. After spending some time writing project rules for Cursor I've gotten it to reliably implement end-to-end CRUD operations from a simple description of the fields and functionality. It's pretty neat and surprisingly accurate but it does take time to generate on the order of ~1k LOC so I understand the desire for parallelization. If you have a well-factored codebase with loose coupling, good abstractions, etc. this should be pretty doable without them stepping on each other.
I assume they're trying to work on three features at the same time
Exactly, if you are doing copilot driven dev, then you are in a feedback loop with the agent and it's easier to have multiplexed ongoing "conversations" with the agent across discrete checkouts of the same codebase than it is to ask an agent to make a change, commit, checkout another branch, wait for the context to update/become aware, ask for a change, agree to it, commit, then switch back to another context.
It's the kind of thing git worktrees was made for.