brew install python
brew install cairo
brew install py2cairo
| # http://thume.ca/howto/2012/11/19/using-slate/ | |
| config defaultToCurrentScreen true | |
| config windowHintsShowIcons true | |
| config windowHintsIgnoreHiddenWindows false | |
| config windowHintsSpread true | |
| # Window Hints: cmd-e | |
| bind e:cmd hint ASDFGHJKLQWERTYUIOPCVBN |
curl -kL http://xrl.us/pythonbrewinstall | bash
echo '[[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc' >> ~/.bashrc
[[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc
pythonbrew install 2.7.2
pythonbrew use 2.7.2
pythonbrew venv create graphite
| + def setup | |
| + puts Zendesk::Provisioning::Engine.routes.routes.routes.map(&:path).map(&:inspect) | |
| + end |
| test |
| module ZuoraClient | |
| class ZObject | |
| def initialize(type) | |
| @type = type | |
| end | |
| def add_field(name, default_value) | |
| @fields ||= {} | |
| @fields[name.to_s] = default_value |
| for i in `find app lib -name *.rb` | |
| do | |
| echo `git log --oneline $i | grep -i -e fix -e bug -e zd: | wc -l` $i | |
| done |
| set nocompatible | |
| syntax enable | |
| set encoding=utf-8 | |
| set showcmd | |
| filetype on | |
| filetype indent on | |
| filetype plugin on | |
| set nowrap |
| Actors & Threads @mperham | |
| Concurrency | |
| Two primatives: processes, threads | |
| Problem: communication and coordination | |
| Shared data, copied | |
| IPC | |
| pipes, sockets, shared mem, files |