sudo apt-get install wget curl git subversion python-setuptools \
python-dev libncurses5-dev ruby ruby-dev rake
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
""" | |
Backbone.js handler and mongodb based handler for Tornado. | |
`BackboneHandler` handles the sync protocol for Backbone.js. Inherit | |
from the class and implement the model methods: | |
* create_model | |
* update_model | |
* get_model | |
* delete_model | |
* get_collection |
Prerequisites:
- One or more clients running a UNIX-like OS. Examples are given for Ubuntu 12.04 LTS, although all software components are available for other platforms as well (e.g. OS X). YMMV
- A cheap Ubuntu 12.04 VPS with storage. I recommend Backupsy, they offer 250GB storage for $5/month. Ask Google for coupon codes.
Software components used:
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
<div class="row-fluid"> <div class="span12"> Fluid 12 <div class="row-fluid"> <div class="span6"> Fluid 6 <div class="row-fluid"> <div class="span6">Fluid 6</div> <div class="span6">Fluid 6</div> </div> </div> <div class="span6">Fluid 6</div> </div> </div></div> |
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
Coding: | |
http://jobs.readwriteweb.com/ | |
http://noodleyard.com/ | |
http://angel.co/jobs | |
http://startuply.com/ | |
http://jobs.37signals.com/ | |
http://www.dice.com/ | |
http://jobs.github.com/ | |
http://www.craigslist.org | |
http://news.ycombinator.com/jobs |
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
from fabric.api import * | |
from fabric.colors import * | |
import os, socket | |
env['prod'] = False | |
env['master'] = False | |
service = 'ndc13' | |
service_id = 9 | |
fabhome = '/home/svc/%s' % service | |
hostname = socket.gethostname() |
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
a:hover, a:active { | |
background-color: #C74350; | |
color: #fff; | |
text-decoration: none; | |
text-shadow: 1px 1px 1px #333; | |
} |
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
https://www.digitalocean.com/community/articles/how-to-install-and-use-postgresql-on-a-centos-vps | |
https://www.digitalocean.com/community/articles/how-to-install-and-configure-django-with-postgres-nginx-and-gunicorn | |
http://scratching.psybermonkey.net/2009/06/postgresql-how-to-reset-user-name.html | |
http://siguniang.wordpress.com/2013/10/18/install-postgresql9-3-and-psycopg2-on-centos6-4/ |
OlderNewer