|
|
|
|
|
by simonkagedal
36 days ago
|
|
There are lots of good use cases for vibe coding (”never reading the code”), prototypes, various explorations and one-offs. I’ve done various kinds of migrations where I didn’t bother to review the code much, just the output. Possibly also some user-facing tools with a limited task and runtime environment. Incidentally, these are all use cases where performance isn’t critical, typically, so you might as well write them in Python or Typescript or whatever makes most sense for the task. Real production code? Yeah, you still need to be able to read it and understand it. |
|