Skip to content

Instantly share code, notes, and snippets.

View ellmetha's full-sized avatar

Morgan Aubert ellmetha

View GitHub Profile

======================== DEP XXX: Simplified routing syntax

  • DEP: XXX
  • Author: Tom Christie
  • Implementation Team: Tom Christie
  • Shepherd: Tim Graham
  • Status: Draft
  • Type: Enhancement

Git Cheat Sheet

Commands

Getting Started

git init

or

@ellmetha
ellmetha / install_python27_virtualenv.sh
Last active October 11, 2015 20:47
Python 2.7 & virtualenv installation on Alwaysdata
#!/bin/bash
# Python 2.7 installation
mkdir -p $HOME/.python/src
cd $HOME/.python/src
wget https://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz --no-check-certificate
tar xvfz Python-2.7.6.tgz
cd Python-2.7.6
mkdir $HOME/.python/python2.7
./configure --prefix=$HOME/.python/python2.7