Actions

Difference between revisions of "Tech Tips"

From kemiko

(Created page with "'''Trouble Shooting''': * start with the basics...like power, network, etc. '''Development''': * Naming of file and variables * Avoid spaces * This is more a conventional...")
 
Line 4: Line 4:
 
'''Development''':
 
'''Development''':
 
* Naming of file and variables
 
* Naming of file and variables
 +
 
  * Avoid spaces
 
  * Avoid spaces
 +
 
   * This is more a conventional necessity, but still a good one
 
   * This is more a conventional necessity, but still a good one
 +
 
  * Camelcase
 
  * Camelcase
 +
 
   * Run words together capitalizing the first letter of each word connected to the first...logCreate, logList, etc.
 
   * 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.
 
  * Start by naming common item with the word first.

Revision as of 22:05, 19 November 2016

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