Friday, September 30, 2016

Process memory usage

ps aux | awk '{print $2, $4, $11}' | sort -k2r | head -n 20 | grep $PID

Tuesday, September 13, 2016

Sunday, August 21, 2016

ConEdison prices

One example is ConEdison in New York. It charges 7¢ per kilowatt-hours for "peak hours" in the morning and afternoon. Night time is only 1¢. Source

Friday, June 10, 2016

How to flush REDIS

redis-cli
127.0.0.1:6379> flushdb
OK
127.0.0.1:6379> flushall
OK
127.0.0.1:6379>