Actions

Tech Tips

From kemiko

Revision as of 22:05, 19 November 2016 by Kemiko (talk | contribs)

Trouble Shooting:

  • start with the basics...like power, network, etc.

Development:

  • Naming of file and variables
* Avoid spaces
 * This is more a conventional necessity, but still a good one
* Camelcase
 * Run words together capitalizing the first letter of each word connected to the first...logCreate, logList, etc.
* Start by naming common item with the word first.
 * web servers webXX, database servers dbXX, etc.
* Always start naming with numbers that will always sort correctly 1-10 won't sort correctly when reaching 10...use 01-10, etc.
* Start with noun first then verb
 * sanityCheck vs checkSanity