Skip to content

Instantly share code, notes, and snippets.

View akagomez's full-sized avatar

Chris Gomez akagomez

View GitHub Profile
var Example = Map.extend({ }, {
define: {
name: {
value: 'Nailed it'
}
}
});
var NestedMap = Map.extend({ }, {
define: {
@akagomez
akagomez / gist:1025933
Created June 14, 2011 21:26 — forked from hunterloftis/gist:1025903
Install Git, Node, NPM, Nginx, PHP (Fast CGI), CouchDB, and MySQL on Ubuntu 10.04 LTS
# This should be run on a new Linode Ubuntu 32-bit 10.04 image as root to prepare it for Nginx, PHP, MySQL, Node, CouchDB environment
# To start, something like this works:
# scp prepare_server.sh [email protected]:/root
# First, install basic linux utilities (compilers, git, libssl)
cd /root
mkdir /src
cd src