Simple tips for the junior programmer for better code readability

The article here suggests a number of things you can do to improve your code readability.

Points to higlight include:

  • Keeping the number of lines per class to a reasonable length
  • Using functions as abbreviations, not only for re-use
  • Scope-based naming convntions (the wider the scope, the longer the variable name and visa versa)