Skip to content

Instantly share code, notes, and snippets.

View perobertson's full-sized avatar

Paul Robertson perobertson

  • Toronto, Ontario, Canada
View GitHub Profile

Keybase proof

I hereby claim:

  • I am perobertson on github.
  • I am perobertson (https://keybase.io/perobertson) on keybase.
  • I have a public key ASC86YTthoAeO6flO46uuH4u6Tvhj94lGbsP7GYFXn7hdgo

To claim this, I am signing this object:

#!/usr/bin/env bash
set -euo pipefail
shopt -s dotglob
shopt -s nullglob
# default location for code
REMOTE_CODE="${CODE_PATH:-$HOME/workspace}"
LOCAL_CODE="${REMOTE_CODE}"
usage() {
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Keybase proof

I hereby claim:

  • I am perobertson on github.
  • I am perobertson (https://keybase.io/perobertson) on keybase.
  • I have a public key ASD1YabDLU5k-SQkcinZWDfvHLwz-kpE2GfDRTc0-w2zLAo

To claim this, I am signing this object:

@perobertson
perobertson / setup_ubuntu.sh
Last active March 7, 2016 19:47
Setup Ubuntu
#!/usr/bin/env bash
# Clear any previous sudo permission
sudo -k
# Check for root
[[ $(id -u) -eq 0 ]] && echo 'script must be run as a normal user' && exit 1
# Set up app directories
mkdir -p "$HOME/Applications"