Comment on Using AI generated code will make you a bad programmer.
iopq@lemmy.world 3 weeks ago
I’d rather be a bad programmer that gets stuff done than a good programmer who’s just jerking off about proper design
t. good programmer
Comment on Using AI generated code will make you a bad programmer.
iopq@lemmy.world 3 weeks ago
I’d rather be a bad programmer that gets stuff done than a good programmer who’s just jerking off about proper design
t. good programmer
peopleproblems@lemmy.world 3 weeks ago
Proper design will save an epic shit ton of money when it inevitably needs to be changed or fixed.
iopq@lemmy.world 3 weeks ago
It depends, if you work in a statically typed language you can just use a tool to refactor. I bet a ton of advice is from JavaScript programmers where it’s simply not safe to do this.
My first job doing JavaScript I realized the IDE’s refactor tool wasn’t aware that two variables of the same name were in fact a different variable. Due to how scoping works, it’s hard to write a reliable tool to rename variables for JS. I accidentally introduced a bug renaming a variable.