I hereby claim:
- I am tonicebrian on github.
- I am tonicebrian (https://keybase.io/tonicebrian) on keybase.
- I have a public key ASCRxHtGVkzN4Jafqr5R2uv0u5SniW01xVznq_VF-kidkgo
To claim this, I am signing this object:
| #!/bin/bash | |
| for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci\t%cr\t%cN" $branch | head -n 1` \\t$branch; done | sort -r |
| for var in MY_ENV_VAR_1 MY_ENV_VAR_2; do | |
| if [[ -z "${!var:-}" ]]; | |
| then | |
| echo "You need to provide a value for env variable $var" | |
| exit 1 | |
| fi | |
| done |
I hereby claim:
To claim this, I am signing this object:
| # Create a SSH connection | |
| import paramiko | |
| import os | |
| ssh = paramiko.SSHClient() | |
| ssh._policy = paramiko.WarningPolicy() | |
| ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) | |
| ssh_config = paramiko.SSHConfig() | |
| user_config_file = os.path.expanduser("~/.ssh/config") |