Skip to content

Instantly share code, notes, and snippets.

View willjasen's full-sized avatar
💭
taking the tasks here and putting them over there

willjasen

💭
taking the tasks here and putting them over there
View GitHub Profile
#!/usr/bin/ruby
# Calculate the entropy of a file
# Install prereqs
sudo apt-get update
sudo add-apt-repository -y ppa:chris-lea/node.js
sudo apt-get install -y git curl build-essential python-software-properties python g++ make
# Install node
sudo apt-get install -y nodejs npm
# Install Meteor.JS
curl https://install.meteor.com | sh
@willjasen
willjasen / ubuntu-ruby-env
Last active May 28, 2016 21:02
Ubuntu Ruby Environment
#!/bin/bash
echo -n "Enter Git username: "
read git_username
echo -n "Enter Git user email: "
read git_user_email
# Update available packages and install Ruby dependencies
sudo apt-get -y update
sudo apt-get -y install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev