Skip to content

Instantly share code, notes, and snippets.

View tlindsay's full-sized avatar

Patrick Lindsay tlindsay

View GitHub Profile

Keybase proof

I hereby claim:

  • I am tlindsay on github.
  • I am thatdarnpat (https://keybase.io/thatdarnpat) on keybase.
  • I have a public key ASCi2y_1tqE5sn4oEkO_lVWJBckF_qE1JWnZ6shLZGEEsAo

To claim this, I am signing this object:

Mac OS X 10.10 Yosemite

Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your own needs.

Install Software

@tlindsay
tlindsay / ARM Install Node
Last active August 29, 2015 14:12
Quick snippet for installing Node on ARM devices.
# Credit to Pieter Beulque
# http://weworkweplay.com/play/raspberry-pi-nodejs/
####################################################
wget http://node-arm.herokuapp.com/node_latest_armhf.deb;
sudo dpkg -i node_latest_armhf.deb;
node --version