What is the single most important factor for writing maintainable code (language independent)?
|
3
|
|
|
|
|
|
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. |
|||
|
|
|
|
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.) |
|||
|
|
|
|
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." |
|||
|
|
|
|
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. |
|||
|
|
|
|
Documentation. |
|||
|
|
