Changes between Version 8 and Version 9 of HowtoGoodProgrammingTechniques


Ignore:
Timestamp:
Aug 24, 2012, 9:06:21 AM (12 years ago)
Author:
Thanatermesis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowtoGoodProgrammingTechniques

    v8 v9  
    6262When the application becomes big and start having a lot of names for variables, it is good to know what's exactly that variable, to know if we are dealing with a file, with a directory, or with a value, I personally use for that a suffix (ending in) in the variables like '''_v''' for values, '''_d''' for identifying directories, '''_f''' for identifying a file.
    6363
     64
     65== Procedure ==
     661. Write the feature and make it to work
     671. Minimize the code (less lines, simple and short functions, less-complex algorithms, etc)
     681. Structure it correctly (spaces/readability, comments, begin-end parts, local variables, etc)
     691. Convention names, take some seconds to decide the optimal names for your variables and calls
     70
    6471== Extra ==
    6572