|
|
|
|
|
by gowld
178 days ago
|
|
I don't understand this thinking. How many hours per week did you spend coding on your most recent project? If you could do something else during that time, and the code still got written, what would you do? Or are you saying that you believe you can't get that code written without spending an equivalent amount of time describing your judgments? |
|
So reducing the part where I go from abstract system to concrete implementation only saves me time spent typing, while at the same time decoupling me from understanding whether the code actually implements the system I have in mind. To recover that coupling, I need to read the code and understand what it does, which is often slower than just typing it myself.
And to even express the system to the code generator in the first place still requires me to mentally bridge the gap between the goal and the system that will achieve that goal, so it doesn't save me any time there.
The exceptions are things where I literally don't care whether the outputs are actually correct, or they're things that I can rely on external tools to verify (e.g. generating conformance tests), or they're tiny boilerplate autocomplete snippets that aren't trying to do anything subtle or interesting.