Skip to content

Instantly share code, notes, and snippets.

View nacengineer's full-sized avatar

David Southard nacengineer

  • UW Madison, General Library System
  • Madison, WI
  • 13:25 (UTC -05:00)
View GitHub Profile
@nacengineer
nacengineer / Gemfile
Last active December 14, 2015 01:19 — forked from anonymous/Gemfile
MiniTest Baseline Config
group :development, :test do
gem 'sqlite3'
gem 'trinidad', :platform => :jruby
gem 'unicorn', :platform => :ruby
gem 'better_errors'
gem 'binding_of_caller'
gem 'awesome_print'
gem 'rake'
gem 'pry', :require => false
gem 'chef'
@nacengineer
nacengineer / setup-statsd.sh
Created August 2, 2012 23:25 — forked from collegeman/setup-statsd.sh
Turn an Ubuntu 10.04 linode into a StatsD/Graphite server
# install git
sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core
# download the Node source, compile and install it
git clone https://github.com/joyent/node.git
cd node
./configure
make
sudo make install
# install the Node package manager for later use