by budu on 12/13/10, 7:22 PM with 5 comments
by DanHulton on 12/13/10, 8:20 PM
You let one slide, then another, then another still. Eventually, you start getting little mistakes like this everywhere, because all of your code is ugly and difficult to read, and you have built up just mountains of technical debt.
by ihumanable on 12/13/10, 9:32 PM
Thousand line files with what appears to be random indentation are a nightmare to work with. Meaningless variable names make it a game of mental gymnastics to figure out what $total = $poster * $gmd / $p->lasty is supposed to be doing.
This is based off my actual real world usage, taking the hour to reformat a multi-thousand line script which has a habit of exposing interesting edge-case bugs ever couple of weeks has probably saved me far more time than it cost.
by mansr on 12/13/10, 8:14 PM
by muyyatin on 12/13/10, 7:28 PM