← Back to context

Comment by rcxdude

4 hours ago

LLM coding assistants have a bias towards writing standalone implementations instead of pulling in libraries to do a job, which does tend to sidestep probably the most common cause of bloated software: pulling in too many layers of abstraction. Most software can be pretty damn fast (at least as far as users are going to notice) without needing too much of a focus on optimization, but just by not accidentally screwing it up.

Just writing your own bloat is not the way to go though, especially when it makes the codebase quickly balloon...