Comments? sacha@sachachua.com
- Emacs learning curve?
- Mix of Emacs geeks skewed towards people who’ve been using this for a while (after all, takes a certain commitment to come all the way to an Emacs conference!)
| #!/usr/bin/perl | |
| # ansi2unicode.pl | |
| # 4/18/2007 | |
| # | |
| # convert an ANSI file to unicode, suitable for display in irssi/mirc or html | |
| # usage: ansi2unicode.pl inputfile [-tc] [-o outputmode] [outputfile] | |
| # -t = terminal output, no color | |
| # -o = output mode, currently only html and irc supported, default is irc | |
| # outputfile = filename to output to if html specified |
Comments? sacha@sachachua.com
| #!/usr/bin/python2.7 | |
| import virtualenv | |
| import os | |
| extra_text = """ | |
| def after_install(options, home_dir): | |
| # Install dependencies | |
| subprocess.call([join(home_dir, 'bin', 'pip'), | |
| 'install', 'mock']) |