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:
| #!/usr/bin/env -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.12" | |
| # dependencies = [ | |
| # "torch>=2.8.0", | |
| # "diffusers@git+https://github.com/huggingface/diffusers.git", | |
| # "transformers==4.55.4", | |
| # "accelerate>=0.26.0", | |
| # "bitsandbytes==0.45.5", | |
| # "protobuf==5.29.4", |
| 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 |