Actions

Tech Tips

From kemiko

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

Trouble Shooting:

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

Development:

    Naming
    • Avoid spaces.
    • Use camelCase.
    • Name common items with the common word starting each item.
    • Name same item, but numbered with enough padding to sort correctly. ex: if going to at least 10 use 01-10 instead of 1-10.
    • Name date by number not name and most general to specific. So they sort correctly. ex: 20161231 instead of Dec31-2016, etc.
    • Name using noun first then verb. ex: logCreate, logList, etc.
    Coding
    • Always add comments
    • Line block brackets up vertically