Ben Dowling
Ben Dowling
I get an error when passing in multiple --cache arguments: ``` $ ./elastic-mapreduce --create --cache --cache ... Error: Repeating --cache CACHE_FILE is not allowed, previous value was "" ``` EMR...
CLI currently lets you paste in an existing API token. It'd be awesome if it supported signing up for a new token and creating an account from the CLI. Would...
Would it be possible to return the 5 winning cards, when more than 5 cards are provided?
I noticed that the User models were never getting cached, so try to override the default manager by monkey patching it ``` User.objects = CacheBotManager() ``` This results in an...
Model.objects.all() results are never invalidated. Can be worked around by doing something like Model.objects.filter(pk__gte=0)
This is an awesome module for creating IP ranges from a given netmask, but it'd be even better if it worked in reverse, eg: coffee> n = new netmask.Netmask('10.0.0.0/24') {...
Here's my server process: ``` zmq = require 'zmq' sub = zmq.socket 'sub' sub.bindSync('tcp://0.0.0.0:3333') sub.subscribe('msg') sub.on('message', (msg) -> console.log msg ) ``` And here's the client: ``` zmq = require...