Remix.run Logo
slopinthebag 2 hours ago

Shouldn't you want to ship less code that does more? Since when was LoC the relevant benchmark for engineering?

simonw 35 minutes ago | parent [-]

Less code isn't as important as it used to be, because the cost of maintaining (simple) code has gone down as well.

With coding agent projects I find that investing in DRY doesn't really help very much. Needing to apply the same fix in two places is a waste of time as a human. An agent will spot both places with grep and update them almost as fast as if there was just one.

It's another case where my existing programming instincts appear to not hold as well as I would expect them to.

slopinthebag 31 minutes ago | parent [-]

When you talk about maintaining code, do you mean having the LLM do it and you maintain a write-only codebase? Because if you're reading the code yourself and you have a bloated tangled codebase it would make things much harder right?

Is the goal basically a codebase where your interactions are mediated through an LLM?