How LLMs change my codebase
jmduke.com·5d
🕸️WASM
Preview
Report Post

2025/12/23

Fewer dependencies.

I’ve always been suspicious of pulling in a library to accomplish what a few hundred lines of code could also accomplish. Now, that sentiment is doubled. It’s faster to write and maintain this sort of glue code, and in my experience, an LLM has much higher aptitude at scanning a local file than its third-party equivalent—especially if that third-party equivalent has changed its APIs over the years.

’m not saying to get rid of React or stop using major load-bearing dependencies, but rather the things that aren’t quite utilities but not much more substantial either. Think: a third-party package that just wraps requests to the Mailchimp API. Not only can an LLM very cheaply and easily build this for me, but it can maintain it, and we can force it to …

Similar Posts

Loading similar posts...