Skip to content

Instantly share code, notes, and snippets.

@jamesgecko
jamesgecko / comet_clock.py
Created December 5, 2011 19:48
Twisted long polling
from twisted.internet import reactor, task
from twisted.web.server import Site
from twisted.web import server
from twisted.web.resource import Resource
import time
class ClockPage(Resource):
isLeaf = True
def __init__(self):
self.presence=[]
@jwheare
jwheare / clicolor.sh
Last active September 25, 2015 01:27
Useful shortcuts/colorisation for git
# Not really git related, this is for ls colors, put in e.g. ~/.bash_login
export CLICOLOR="true"
export LSCOLORS="DxfxexdxCxegedabagacad"