logoalt Hacker News

ddxvtoday at 4:45 AM0 repliesview on HN

Most of the time using LLM generated code the feeling is "Oh Awesome!"

My "Uh Oh" feelings are weeks later when I realize there is a subtle bug in what the model presented as test passing "awesome" that I didn't read closely.

The biggest uh-oh is when I get lazy and let it modify multiple files and make many changes at once, and YOLO because I didn't fully understand what it did. I can usually get away with that for frontend, but for data manipulation tasks if I don't understand it, it's likely not what I wanted and I'll be back again in weeks or more trying to figure out what changed.

That's more or less what life was before LLMs and copy pasting from StackOverflow. Most of the time if I didn't fully understand something, I knew I had to eventually get back to it to grok what changed before committing.

Now with LLMs the 'copy pasting' is much faster and handles boilerplate super well letting me focus on edge cases.