Skip to content

Instantly share code, notes, and snippets.

View angelman's full-sized avatar
😇

Angel Irizarry angelman

😇
  • Apartment List
  • San Mateo, CA
View GitHub Profile
@angelman
angelman / machine-setup.sh
Created July 23, 2018 16:30 — forked from alran/machine-setup.sh
Script for setting up a new machine
#!/usr/bin/env bash
#
# Script for setting up new machine
echo "Setting up your machine..."
# Check for Homebrew, install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"