Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:After 42 yrs programming I say... (Score 5, Insightful) 430

Can't agree with "not very much at all".

I don't really care what coding standard you use, pick one any one. But here's the rub, pick one and stick with it.

I get really exhausted and tired having to jump between 4 or 5 completely different coding styles in the same project. And I'm not just talking about indentation and formatting. I'm talking about how problems are solved.

For example: If you're coding in Java and the "style" is to Using Apache StringUtils for what it does, then use that. Don't go create your own monster mess that does the same thing, then force me to take 15 minutes to figure out you re-wrote StringUtils for no damn good reason.

I've watched developers struggle with this and waste hours upon hours tracking down bugs because of stuff like this. And, you know what? They never want to admit it's because the code is a typographical mess that puts your eyes into unending calisthenics.

Slashdot Top Deals

"Everything should be made as simple as possible, but not simpler." -- Albert Einstein

Working...