I hereby claim:
- I am seesleestak on github.
- I am calvincieslak (https://keybase.io/calvincieslak) on keybase.
- I have a public key ASDrHDLSGJdfsJq7VhvL8svDdEYZz8HszwDkWv9Roy9cVQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# !/bin/bash | |
CURR_BRANCH=$(git symbolic-ref HEAD --short) | |
BLACKLIST=("master" "develop") | |
if [[ -n $CURR_BRANCH ]]; then | |
if [[ $(echo "${BLACKLIST[@]}" | grep --word-regexp "$CURR_BRANCH") ]]; then | |
git commit -m $1 "${@:2}" | |
else | |
git commit -m "$CURR_BRANCH: $1" "${@:2}" | |
fi |
#!/bin/bash | |
USER="username" | |
PASS="password" | |
TEAM_NAME="teamName" | |
# Getting 10 pages of Bitbucket API response | |
for i in {1..10}; do | |
curl --user $USER:$PASS "https://api.bitbucket.org/2.0/repositories/$TEAM_NAME?page=$i" >> /tmp/repos | |
done |
# !/bin/sh | |
# Install a whole bunch of programs | |
sudo pacman -S \ | |
chromium \ | |
dunst \ | |
feh \ | |
git \ | |
gvim \ | |
i3 \ | |
imagemagick \ |
#!/bin/sh | |
echo Install Homebrew, Postgres, wget and cask | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew install exa | |
brew install wget | |
brew install orientdb | |
brew install mongo | |
brew install go |