I hereby claim:
- I am oxocode on github.
- I am oxocode (https://keybase.io/oxocode) on keybase.
- I have a public key ASBoFBcZ_WykaqYFWa-HgDjk3r-1qdbLH4Y3weT_NatKMAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| code --install-extension Andreabbondanza.ignoregit | |
| code --install-extension HookyQR.beautify | |
| code --install-extension MehediDracula.php-namespace-resolver | |
| code --install-extension aaron-bond.better-comments | |
| code --install-extension ashpowell.monokai-one-dark-vivid | |
| code --install-extension azemoh.one-monokai | |
| code --install-extension bogdan-sinitsa.theme-dark-monokai | |
| code --install-extension calvinhong.stylelint-fix | |
| code --install-extension christian-kohler.path-intellisense | |
| code --install-extension cxfksword.goto-documentation |
| /** | |
| * jQuery iframe click tracking plugin demo | |
| * Version 1.0 (2013-03-30) | |
| * Copyright © 2013 Vincent Paré | |
| * https://github.com/finalclap/iframeTracker-jquery | |
| */ | |
| (function($){ | |
| // Registering new tracking handler | |
| $.fn.iframeTracker = function(handler){ | |
| // Storing the new handler into handler list |
| #!/bin/bash | |
| # git-merged | |
| # | |
| # Show which branches are merged into upstream or the given commit | |
| me=`basename $0` | |
| usage () { | |
| # Call as: usage [EXITCODE] [USAGE MESSAGE] | |
| exit_code=1 |
| { | |
| "disallowKeywordsOnNewLine": ["else"], | |
| "disallowMixedSpacesAndTabs": "smart", | |
| "disallowNewlineBeforeBlockStatements": true, | |
| "disallowSpaceAfterObjectKeys": true, | |
| "disallowSpacesInAnonymousFunctionExpression": { | |
| "beforeOpeningRoundBrace": true | |
| }, | |
| "disallowTrailingWhitespace": true, | |
| "requireBlocksOnNewline": true, |
| { | |
| "ecmaFeatures": { | |
| }, | |
| "env": { | |
| "amd": true | |
| }, | |
| "rules": { | |
| "quotes": "single", | |
| "curly": "multi", | |
| "camelcase": false, |
| # VVV Nginx Configuration | |
| # oxocode | |
| # - Uses proper domain.com extension for verifying | |
| # third party APIs are loading / ads are being served. | |
| # - Allows access to localhost via mobile | |
| # - Uses xip.io for testing RWD via mobile | |
| # | |
| # Assumptions: These rules assume that your | |
| # development site was created in 'local.domain.com' | |
| # within your vagrant public root |
| xdebug.collect_params=4 | |
| xdebug.collect_vars=1 | |
| xdebug.dump_globals=1 | |
| xdebug.dump.undefined=1 | |
| xdebug.show_local_vars=1 | |
| xdebug.cli_color=1 | |
| xdebug.collect_includes=1 | |
| xdebug.show_exception_trace=1 | |
| xdebug.show_local_vars=1 |
| #!/bin/bash | |
| # Setup Variables | |
| DBNAME=dbname | |
| DBUSER=dbuser | |
| DBPASS=dbpass | |
| DBHOST=localhost | |
| DBPREFIX=oxo_ | |
| URL=http:// |
| #!/bin/bash | |
| # Created on 7/17/13 by Ryan Sechrest | |
| # Deploys pushed branch from the origin repository to the web directory | |
| if [[ (-n $1) && (-n $2) && (-n $3) ]]; then | |
| # Set path to project directory | |
| project_path="/var/www/domains/$2/$3" |