Inspired by Maya Angelou's Still I Rise
You may walk through my GitHub history,
With it’s non idiomatic and fragal lines,
You may value me less than dirt,
But still, like dust, I’ll rise.
| Engine_MinimalMPE : CroneEngine { | |
| var synths; | |
| *new { arg context, doneCallback; | |
| ^super.new(context, doneCallback); | |
| } | |
| alloc { | |
| synths = Array.newClear(8); |
| #!/usr/bin/env python | |
| import argparse | |
| import pprint | |
| from jujuclient import Environment | |
| def setup(): | |
| parser = argparse.ArgumentParser() |
| __author__ = 'jpablo' | |
| ## | |
| import operator | |
| from peak.rules import when, abstract | |
| @abstract | |
| def bind(obj, func): | |
| 'do something with obj and func' |
| """MongoDB UserStore implementation""" | |
| try: | |
| import cPickle as pickle | |
| except ImportError: | |
| import pickle | |
| import pymongo | |
| from pymongo import Connection | |
| from pymongo.errors import ConnectionFailure |