var get = function(property, object) {
return object[property];
}
get('name');
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-moz-box-sizing | |
-moz-break-after | |
-moz-break-before | |
-moz-column-count | |
-moz-column-fill | |
-moz-column-gap | |
-moz-column-rule-color | |
-moz-column-rule-style | |
-moz-column-rule-width | |
-moz-column-span |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
align-content | |
align-items | |
align-self | |
animation-delay [ TIME ] | |
animation-direction | |
animation-duration [ TIME ] | |
animation-fill-mode | |
animation-iteration-count | |
animation-play-state | |
animation-timing-function |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
align-content %% | |
flex-start, | |
flex-end, | |
center, | |
space-between, | |
space-around, | |
stretch, | |
inherit, | |
%% | |
align-items %% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" File: hybrid.vim | |
" Maintainer: Andrew Wong (w0ng) | |
" URL: https://github.com/w0ng/vim-hybrid | |
" Modified: 27 Jan 2013 07:33 AM AEST | |
" License: MIT | |
" Description:"{{{ | |
" ---------------------------------------------------------------------------- | |
" The RGB colour palette is taken from Tomorrow-Night.vim: | |
" https://github.com/chriskempson/vim-tomorrow-theme |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Items = [ | |
{ name: 'Nasir Jones', gender : 'm' }, | |
{ name: 'Mike Jones', gender : 'm' }, | |
{ name: 'Lil Kim', gender : 'f' } | |
]; | |
// No more for loops, Add as many args to CHANGEME | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew cask install alfred dropbox transmit seil spotify sublime-text3 sketch slack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grep -R 'search-term' . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set cursorline | |
set expandtab | |
set modelines=0 | |
set shiftwidth=2 | |
set clipboard=unnamed | |
set synmaxcol=128 |