I hereby claim:
- I am svanzoest on github.
- I am svanzoest (https://keybase.io/svanzoest) on keybase.
- I have a public key whose fingerprint is 34C7 43B7 1434 A265 FD6F B766 250C 5B20 35F9 9741
To claim this, I am signing this object:
#!/bin/bash | |
IMAGE_NAME="org/project" | |
IMAGE_TAG="latest" | |
AWS_REGION="us-west-2" | |
AWSCLI=aws | |
JQCLI=jq | |
DOCKERCLI=docker |
#!/bin/bash | |
if [ "$(id -u)" != "0" ]; then | |
echo "Sorry, you are not root." | |
exit 1 | |
fi | |
sysadminctl \ | |
-addUser ${USERNAME} \ | |
-fullName "${FULLNAME}" \ |
I hereby claim:
To claim this, I am signing this object:
# https://github.com/ConradIrwin/jist | |
# gem install jist | |
alias gist=jist | |
# http://defunkt.io/hub/ | |
# curl http://defunkt.io/hub/standalone -sLo ~/bin/hub | |
# chmod +x ~/bin/hub | |
alias git=hub | |
# OS X pbcopy(1) equiv on X11 | |
alias pbcopy='xsel --clipboard --input' | |
# OS X pbpaste(1) equiv on X11 |
#!/bin/sh | |
# | |
# Shell script that configures gnome-terminal to use solarized theme | |
# colors. Written for Ubuntu 11.10, untested on anything else. | |
# | |
# Solarized theme: http://ethanschoonover.com/solarized | |
# | |
# Adapted from these sources: | |
# https://gist.github.com/1280177 | |
# http://xorcode.com/guides/solarized-vim-eclipse-ubuntu/ |