- Jacob Kaplan-Moss - How to give a lightning talk
- Van Lindberg - What Open Source lawyers do
- Greg Wilson - The Next Great Programing Book
- Moshe Zadke - Don't write big applications
- Ned Batchelder - What's new in coverage.py
- Mike MacCana - Docx - 100% native MSWord
- Trent Mick - Python Cookbook online
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
""" | |
Simple preforking echo server in Python. | |
Python port of http://tomayko.com/writings/unicorn-is-unix. | |
""" | |
import os | |
import sys | |
import socket |
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
""" | |
Simple forking echo server built with Python's SocketServer library. A more | |
Pythonic version of http://gist.github.com/203520, which itself was inspired | |
by http://tomayko.com/writings/unicorn-is-unix. | |
""" | |
import os | |
import SocketServer | |
class EchoHandler(SocketServer.StreamRequestHandler): |
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 simple preforking echo server in C. | |
* | |
* Building: | |
* | |
* $ gcc -Wall -o echo echo.c | |
* | |
* Usage: | |
* | |
* $ ./echo |
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
<? | |
/* | |
Simple preforking echo server in PHP. | |
Russell Beattie (russellbeattie.com) | |
PHP port of http://tomayko.com/writings/unicorn-is-unix | |
*/ | |
/* Allow the script to hang around waiting for connections. */ | |
set_time_limit(0); |
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
# Prevent pip from doing anything unless you're inside an activated virtualenv. | |
PIP=/usr/local/bin/pip | |
function pip { | |
if [ "x$VIRTUAL_ENV" = 'x' ]; then | |
echo "No virtualenv activated; bailing." | |
else | |
$PIP -E `basename $VIRTUAL_ENV` "$@" | |
fi | |
} |
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
/ | |
GET -> list of projects | |
/{project} | |
GET -> project info | |
PUT -> create new project (not req'd; created if needed) | |
DELETE -> delete project and all build info | |
/{project}/builds | |
GET -> list of recent builds; pagination for all builds |
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
cd /tmp | |
wget http://codespeak.net/lxml/lxml-2.2.2.tgz | |
tar -xzvf lxml-2.2.2.tgz | |
cd lxml-2.2.2 | |
cd libs/ | |
wget ftp://xmlsoft.org/libxml2/libxml2-2.7.3.tar.gz | |
wget ftp://xmlsoft.org/libxml2/libxslt-1.1.24.tar.gz | |
cd .. | |
python setup.py build --static-deps --libxml2-version=2.7.3 --libxslt-version=1.1.24 | |
sudo python setup.py install |
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 django import template | |
from django.utils.encoding import smart_str, force_unicode | |
from django.utils.safestring import mark_safe | |
import docutils.nodes | |
from docutils.core import publish_parts | |
from docutils.writers import html4css1 | |
register = template.Library() | |
def restructuredtext(value): |
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
def print_name(for_user): | |
print "name is %s" % for_user | |
print_name(for_user="Travis Swicegood") |