Yes, it does matter. I read a question recently about the importance of software maintainability: “Does writing maintainable code really matter, when the company rarely adds new features, and they tend to scrap each version for an entirely new one …
Read moreShould I obscure my source code to make it more secure?
In a word, no. Obscuring your source code has no benefit in the real world. When you write code, you are not only expressing your intent to the compiler, but you’re also expressing your intent the the human reader — …
Read moreThink before you type – variable names and other entities
Names of variables, functions, arrays, and other data structures are incredibly important in making your code more readable and more maintainable. Engage Brain The most important piece of advice to start with is this: Think before you type anything. It …
Read more