~/

Entries from 2014-01-01 to 1 year

reduce by jq

[ { "date": "2013-10-28", "count": 8 }, { "date": "2013-10-27", "count": 22 } ] ☁ cat foo.json | jq 'reduce .[].count as $item (0; . + $item)' 30 ☁ seq 10 | jq -s 'reduce .[] as $item (0; . + $item)' 55 http://stedolan.github.io/jq/manual/…

dokku memo

Where dokku is installed? Suppose when user is root, /root/dokku is the place. Docker has lots of regression due to active development, how can I downgrade using with dokku? Change /root/dokku/Makefile. diff --git a/Makefile b/Makefile - a…