Remix.run Logo
beej71 6 hours ago

> They care that the product works

This reminds me of Anthropic's post where they say they ship 8x as much code as they used to.

And I stopped to consider how many times I've used an app and thought, "You know what this needs? More code!"

dns_snek 4 hours ago | parent | next [-]

Unsurprising, agents' solution to everything is writing more code. They'll happily reinvent the universe (a really crappy one).

Bug? More code. Unexpected behavior - read the docs? Couldn't find anything. Let's try another 1000 lines of workarounds. Still doesn't work? Write another 1000 lines to monkey-patch behavior. It sort of works now.

The actual solution is removing those 2000 lines and passing the correct argument on line 25 which is clearly documented. Most humans would never do that because we're too lazy but it's so easy to generate slop at an exponential rate and blow up the LOC metrics.

ozim 39 minutes ago | parent [-]

I think that in my career I have absolutely seen multiple times people making absolutely horrible architectural approaches where passing a parameter would suffice. Inventing and building basically whole universe instead of doing a bit of research.

With LLM coding I already have seen agent pointing out easier solutions because agent is not scared of or tired by reading existing code. Whereas most of developers want to write „their code” not read someone’s else’s code.

SanjayMehta 5 hours ago | parent | prev [-]

I joined a team where the previous boss measured productivity by LOC on a weekly basis in public.

This team eschewed libraries and shared code. Copy/paste everywhere.

Every defect had to fixed in 100+ mini-applications. It was a telecom MMI product.