Skip to content

Instantly share code, notes, and snippets.

View jessereitz's full-sized avatar

Jesse Reitz jessereitz

View GitHub Profile
@jessereitz
jessereitz / Brewfile
Last active April 23, 2020 23:30
My Brew bundle -> The software I use most often
tap "homebrew/bundle"
tap "homebrew/core"
brew "hub"
brew "jq"
brew "shellcheck"
@jessereitz
jessereitz / install_docker_ubuntu.sh
Last active January 22, 2020 03:08
Docker install on Ubuntu
#!/usr/bin/env bash
#########################################################################
# Install Docker on Ubuntu 18.04
#
# This is a shameless copy/condensation of the official instructions
# from docker's website. I just wanted a quick script to run to install
# it though.
#
# Se https://docs.docker.com/install/linux/docker-ce/ubuntu/