Skip to content

Instantly share code, notes, and snippets.

View oxocode's full-sized avatar
:octocat:
stuff.

Courtney Ivey oxocode

:octocat:
stuff.
View GitHub Profile
@oxocode
oxocode / keybase.md
Created September 5, 2019 21:41
keybase.md

Keybase proof

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:

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
@oxocode
oxocode / jquery.iframetracker.js
Last active September 14, 2015 20:05 — forked from simondahla/jquery.iframetracker.js
Add Conversion Tracking to an iframe with VWO and iframetracker.js
/**
* 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
@oxocode
oxocode / git-merged
Created May 10, 2015 09:33
git-merged
#!/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
@oxocode
oxocode / .jscsrc
Created April 22, 2015 23:16
A JSCS WordPress Project Template
{
"disallowKeywordsOnNewLine": ["else"],
"disallowMixedSpacesAndTabs": "smart",
"disallowNewlineBeforeBlockStatements": true,
"disallowSpaceAfterObjectKeys": true,
"disallowSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"disallowTrailingWhitespace": true,
"requireBlocksOnNewline": true,
@oxocode
oxocode / .eslintrc
Created April 22, 2015 23:15
EsLint Project Template
{
"ecmaFeatures": {
},
"env": {
"amd": true
},
"rules": {
"quotes": "single",
"curly": "multi",
"camelcase": false,
@oxocode
oxocode / local.domain.com.conf
Last active November 2, 2016 02:44
VVV Nginx Configuration
# 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
@oxocode
oxocode / xdebug-settings-google-chrome.txt
Created November 7, 2014 17:03
Xdebug-Settings-for-Google-Chrome-Output
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
@oxocode
oxocode / wp-cli-create.sh
Last active April 8, 2019 14:54
wp-cli-create
#!/bin/bash
# Setup Variables
DBNAME=dbname
DBUSER=dbuser
DBPASS=dbpass
DBHOST=localhost
DBPREFIX=oxo_
URL=http://
@oxocode
oxocode / post-receive.sh
Last active August 29, 2015 14:04 — forked from ryansechrest/post-receive.sh
Git Deployments with post-receive.sh.
#!/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"