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
| ######### | |
| # Aliases | |
| ######### | |
| # General aliases | |
| alias ll="ls -lah" | |
| alias www="cd /Applications/MAMP/htdocs/" | |
| alias sshfc="ssh [email protected]" | |
| alias sshrack="ssh [email protected]" | |
| alias web="cd /Applications/MAMP/htdocs/webpower-ce" | |
| alias klg="cd /Applications/MAMP/htdocs/klg-frontend" |
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
| # Tim Pearson's Brewfile | |
| # includes casks (gui installs) | |
| brew 'wget' | |
| brew 'httpie' | |
| # Install Cask | |
| brew 'caskroom/cask/brew-cask' | |
| # Install Casks |
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
| ########## | |
| ## Aliases | |
| ########## | |
| # General aliases | |
| alias ll="ls -lah" | |
| alias www="cd /Applications/MAMP/htdocs/" | |
| alias sshfc="ssh [email protected]" | |
| alias sshrack="ssh [email protected]" | |
| alias web="cd /Applications/MAMP/htdocs/webpower-ce" |
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
Show hidden characters
| { | |
| "disallowEmptyBlocks" : true, | |
| "disallowMixedSpacesAndTabs" : true, | |
| "disallowMultipleLineStrings" : true, | |
| "disallowMultipleSpaces" : true, | |
| "disallowMultipleVarDecl" : true, | |
| "disallowNewlineBeforeBlockStatements" : true, | |
| "disallowOperatorBeforeLineBreak" : ["+", "."], | |
| "disallowSpaceAfterPrefixUnaryOperators" : ["++", "--", "+", "-", "~", "!"], | |
| "disallowSpaceBeforePostfixUnaryOperators" : ["++", "--"], |
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
| { | |
| // enforcing options | |
| "nonew" : true, | |
| "curly" : true, | |
| "noarg" : true, | |
| "forin" : true, | |
| "eqeqeq" : true, | |
| "strict" : true, | |
| "undef" : true, | |
| "bitwise" : true, |
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
| # This is my version (Tim's) of the script. It is safe to run. Cheers. | |
| # OSX for Hackers (Mavericks/Yosemite) | |
| # | |
| # Source: https://gist.github.com/brandonb927/3195465 | |
| #!/bin/sh | |
| # Some things taken from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx |