As configured in my dotfiles.
start new:
tmux
start new with session name:
#!/usr/bin/env python | |
import os | |
import urllib2 | |
import json | |
import subprocess | |
user=None | |
repo=None |
As configured in my dotfiles.
start new:
tmux
start new with session name:
#!/usr/bin/env python | |
import gzip | |
import urllib2 | |
from cStringIO import StringIO | |
from lxml import etree, html | |
from lxml.cssselect import CSSSelector | |
opener = urllib2.build_opener() | |
opener.addheaders = [('User-agent', 'Mozilla/5.0')] |
Don't worry about what anybody else is going to do. The best way to | |
predict the future is to invent it. | |
-- Alan Kay | |
Premature optimization is the root of all evil (or at least most of it) | |
in programming. | |
-- Donald Knuth | |
Lisp has jokingly been called "the most intelligent way to misuse a | |
computer". I think that description is a great compliment because it |