Skip to content

Instantly share code, notes, and snippets.

@bradjenn
bradjenn / git-process.md
Last active August 29, 2015 14:13
My Git Process

GIT PROCESS

Fetching

git fetch

this will update all your local versions of the remote branches

git checkout [branch-name]

@bradjenn
bradjenn / js-styleguide.md
Last active August 29, 2015 14:16
Alliants JS Styleguide copy

JS Styleguide

These are my personal preferences to coding javascript, feel free to use this as a template to create your own style guide.

General

  1. Code SHOULD be indented with spaces only (not tabs).
  2. Each level of indentation SHOULD consist of 2 spaces.
  3. Lines SHOULD be 80 characters max (where possible).
  4. Semicolons are NOT optional.
@bradjenn
bradjenn / country-options.json
Created March 11, 2015 10:36
country options
[
{
"code": "US",
"name": "U.S.A.",
"dial_code": "+1"
},
{
"code": "CA",
"name": "Canada",
"dial_code": "+1"