A Pen by Kyle Thomson on CodePen.
A Pen by Kyle Thomson on CodePen.
This file contains 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
'use strict' | |
let cash = 1000 | |
let tax = 0.01 | |
let basket1 = { | |
'Phone': 130, | |
'Accessory': 30, | |
} |
This file contains 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
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
# Brew | |
export PATH=/usr/local/bin:$PATH | |
# Prompt | |
# Download from https://raw.githubusercontent.com/git/git/8976500cbbb13270398d3b3e07a17b8cc7bff43f/contrib/completion/git-prompt.sh | |
source ~/.git-prompt.sh |
This file contains 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
cp -r src/*.js dist/; | |
for f in dist/*; do mv $f ./dist/`basename $f `.flow; done; |
This file contains 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
" Plugins will be downloaded under the specified directory. | |
call plug#begin('~/.vim/plugged') | |
" General | |
Plug 'vim-airline/vim-airline' | |
Plug 'airblade/vim-gitgutter' | |
Plug '[email protected]:dracula/vim.git', { 'as': 'dracula' } | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'mileszs/ack.vim' |