This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# Calculate the entropy of a file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
NewerOlder