▲ | fnordpiglet 3 days ago | |||||||
This is the sign of seniority IMO. First you learn to write code. Then you learn to write code that can be read. Then you learn to modify code. Then you learn to read other people’s code. Then you learn to modify other people’s code. Then you learn to own code regardless of who reads or writes it. At this point in my career 35 years in I find reading and writing code whether I wrote it or other did irrelevant. Bad or good code, it’s all the same. By far the most effective work I do involves reading a lot of complex code written by many people over many years and seeing the exact one line to change or improve. I find LLM assisted coding very similar frankly. I’ve finished maybe 20 projects or more on the last seven months on my own time that I never would have been able to do in my lifetime for want of free time to learn minutia in stuff I am not familiar with. The parts it get hung up on I’m able with quick inspection to recognize and unwedge it, just like any junior engineer. The junior engineers also are often much better versed in XYZ library than I am. | ||||||||
▲ | theshrike79 3 days ago | parent | next [-] | |||||||
This is the thing. LLM assisted coding ("vibe coding") is just project management. You ask it to do things, then you check the work to a sufficient degree. The better the specifications and documentation you give it, the better the result will be. Keeping tasks short and verifiable also helps a lot. I've written SO many small tools for myself during the last year it's not even funny. Upgraded some shitty late night Python scripts to proper Go applications with unit tests and all, while catching up on my TV shows. Converted my whole rat's nest of Docker compose files to a single Opentofu declarative setup. None of this would've gotten done without an LLM assistant. | ||||||||
| ||||||||
▲ | ontouchstart 3 days ago | parent | prev [-] | |||||||
I’m at the same point as well. Doing more reading than writing. Just want to add one more point: code is not fiction or even nonfiction, “good or bad” style can be subjective, but correct or not correct is not, regardless of the reviewer’s mental model. The difficulty of reading code is to understand its logic and logical consequences. The more complex the codebase (not just the line we are reading), the more risky to modify it. That is why I use LLM to write a lot of tests and let it review the logs to help me understand the logic. Even the tests can be disposable. |