- street {Array/List}
- city {String}
- region {String OH|PA|CA}
- zip {String}
- country {String CA|US}
- name {Object}
- first {String}
.DS_Store | |
.svn | |
*~ | |
*.swp | |
*.rbc | |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] |
# EditorConfig helps developers define and maintain consistent | |
# coding styles between different editors and IDEs | |
# editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# Vagrant aliases | |
# add to your .<shell>rc or .dotfiles | |
alias vst='vagrant status' | |
alias vu='vagrant up' | |
alias vd='vagrant destroy' | |
alias vd!='vagrant destroy -f' | |
alias vh='vagrant halt' | |
alias vh!='vagrant halt -f' | |
alias vp='vagrant provision' |
By locking the perspective on the body element and transforming elements in 3D on top of that, you can easily create parallax scrolling effects that don’t require JavaScript and can be much more performant as a result. Mixins can be found here: http://codepen.io/scottkellum/pen/Jwudg
A Pen by Scott Kellum on CodePen.