I hereby claim:
- I am jason-kane on github.
- I am jkane (https://keybase.io/jkane) on keybase.
- I have a public key ASBnouHuqyQILFl__YV0N7CiQGzoa46uesjFLesmoNQhSgo
To claim this, I am signing this object:
2019 We Die Young | |
2018 The Bouncer | |
2018 Black Water | |
2018 Kickboxer: Retaliation | |
2017 Kill 'Em All | |
2016 Kickboxer: Vengeance | |
2016 Kung Fu Panda3 | |
2015 Jian Bing Man | |
2015 Pound of Flesh | |
2014 Soldiers |
#!/bin/bash | |
# | |
# DESCRIPTION: | |
# | |
# Set the bash prompt according to: | |
# * the active virtualenv | |
# * the branch of the current git/mercurial repository | |
# * the return value of the previous command | |
# | |
# USAGE: |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
""" | |
tnemyolped <deployment name> | |
""" | |
import docopt | |
import sh | |
import sys | |
import yaml |
#!/usr/bin/env python3 | |
import yaml | |
import docopt | |
import sh | |
import json | |
BLACKLIST = [24, 25, 26] | |
SKIP = ["host", "none"] |
#!/usr/bin/python3 | |
import sh | |
import re | |
HUMANS = ['jkane', 'djames', 'mkirk'] | |
def clean_passwd(h, humans): | |
clean = [] |
#!/usr/bin/python3 | |
import sys | |
# blacklist of humans to be removed from /etc/passwd, /etc/group and /etc/shadow | |
HUMANS = ['jkane', 'djames'] | |
def clean_passwd(h, humans): | |
clean = [] | |
for row in h: |
accentor | |
adjutant | |
albatross | |
alethe | |
anhinga | |
ani | |
antbird | |
antpitta | |
antshrike | |
antthrush |
#!/bin/sh | |
if [ "$1" = "" ]; then | |
echo "Usage: kshell <pod>" | |
exit 1 | |
fi | |
COLUMNS=`tput cols` | |
LINES=`tput lines` | |
TERM=xterm | |
kubectl exec -i -t $@ env COLUMNS=$COLUMNS LINES=$LINES TERM=$TERM bash |
def doPoll(self, timeout): | |
""" | |
Poll the poller for new events. | |
""" | |
if timeout is None: | |
timeout = -1 # Wait indefinitely. | |
try: | |
# Limit the number of events to the number of io objects we're | |
# currently tracking (because that's maybe a good heuristic) and |