I hereby claim:
- I am zackkitzmiller on github.
- I am zackkitzmiller (https://keybase.io/zackkitzmiller) on keybase.
- I have a public key whose fingerprint is 490C 3299 A6D6 5150 3203 1FF2 5F4A 2BC4 85B2 99F1
To claim this, I am signing this object:
 |
javascript:jQuery('#gregbox-overlay, #gregbox-wrap').hide(); |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
} | |
function proml { | |
local BLUE="\[\033[0;34m\]" | |
local RED="\[\033[0;31m\]" | |
local LIGHT_RED="\[\033[1;31m\]" | |
local GREEN="\[\033[0;32m\]" | |
local LIGHT_GREEN="\[\033[1;32m\]" |
<?php | |
print_r(new DateTime('01/01/2012')); | |
/* | |
DateTime Object | |
( | |
[date] => 2012-01-01 00:00:00 | |
[timezone_type] => 3 | |
[timezone] => America/Chicago | |
) |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*)$ index.php?_uri=$1 [L] |
<?php echo Form::open(array('url' => 'foo/bar', 'method' => 'post')); ?> | |
<form action="foo/bar" method="post"> |
<?php | |
$env = $app->detectEnvironment(function() { | |
return getenv('[APPNAME]_ENV') ?: 'development'; | |
}); | |
# paths | |
set fish_path $HOME/.oh-my-fish | |
set -x PATH /usr/local/bin /usr/local/share/npm/bin /usr/local/sbin ~/bin /usr/local/pear/bin $PATH | |
set -x DYLD_LIBRARY_PATH /usr/local/mysql/lib $DYLD_LIBRARY_PATH | |
set -x GHI_TOKEN "REDACTED" | |
set -x PYTHONPATH /usr/local/lib/python2.7/site-packages $PYTHONPATH | |
# Because of some bullshit in the listing feed | |
set -x STATSD_PORT 1 |
I hereby claim:
To claim this, I am signing this object:
from flask import Flask | |
from flask import render_template | |
from flask import request | |
import requests | |
from insta import insta | |
app = Flask(__name__) | |
app.config['SERVER_NAME'] = 'venuestagram.z19r.com' |