Skip to content

Instantly share code, notes, and snippets.

These instructions focus on performing Automation commands for our Node.js applications. Additional work is required to run the applications, and further work to run our Rails applications.

Prepare Laptop

Install Xcode and Command-Line Build Tools

Download and install the Xcode Command Line tools: https://docs.google.com/a/tstmedia.com/file/d/0B8_iK4kgomHFWFpQdm5PQ1lQZ0U

// ==UserScript==
// @match https://cloud.engineyard.com/*
// @version 2
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js");
script.addEventListener('load', function() {