vote up 18 vote down star
3

What is the single most important factor for writing maintainable code (language independent)?

flag

35 Answers

prev 1 2
vote up 0 vote down

I prefer it when people prune and shape the code as it grows. Too often you find an original spine of decent architecture with a huge cludgy mess hanging off it.

link|flag
vote up 0 vote down

Finding a good mentor. This person doesn't necessarily have to be a better coder than you, however they should be able to suggest other strategies for writing code properly. A good mentor will be to suggest many of the answers previously given to this topic. They can be a second set of eyes that let you know where your short comings are, while maintaining an encouraging, optimistic tone. They will also be flexible and constantly honing their skills as should you. That way when the next big paradigm comes up you'll be better able to separate the chaff from the wheat. This will be invaluable when Object Oriented Programming and Source Control are replaced by the next big thing (hard to imagine I know.)

link|flag
vote up 0 vote down

Programming is performance; you should never forget who your audience is. "Code as if the person who ends up maintaining your code is a violent psychopath who knows where you live."

link|flag
vote up 0 vote down

Strong, sensible conventions which are consistently applied. Things like conventions on where to start indexing, what end state to leave things in.

This makes it much easier to understand code, as all your code will behave in a way that is simpler.

This is at least one of my top tips.

link|flag
vote up -1 vote down

Documentation.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.