Skip to content

Instantly share code, notes, and snippets.

View MrChrisRodriguez's full-sized avatar

Christian Rodriguez MrChrisRodriguez

View GitHub Profile
@MrChrisRodriguez
MrChrisRodriguez / setup-mac.sh
Last active February 1, 2017 20:23 — forked from igilham/setup-mac.sh
Automate setting up software from a fresh install on Mac OS X
#!/bin/sh
# mac setup automation script based on
# http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac
# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
@MrChrisRodriguez
MrChrisRodriguez / 0_reuse_code.js
Created April 2, 2014 15:48
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console