sleep 1; open "spotify:track:7f0jXNMu2xjQUtmKMuWhGA#01:20"
useful information regarding to running your own gem server
Redis wont startup, after some investigation we found some misconfiguration of the eviction policies.
old setting volatile-lru will only works if TTL is set from the client side
In our case client is the docker registry, therefore a better eviction policy is required for our redis
allkeys-lru would be a better candidate in this case.
Useful top interactive command
zxc1
Arithmetic in Makfile
RESULT := $(shell echo 60*60*24*3 | bc)
result:
@echo $(RESULT)
if puppet agent is disabled, there will be a agent_disabled.lock file in the following location
/var/lib/puppet/state/agent_disabled.lock
Error saying fork: Cannot allocate memory
ps --sort -rss -eo rss,pid,command | head
when using babun, after importing .vimrc there was a lot of errors with ^M. Needs to convert file from unix to dos
find ~/.vim -type f | xargs dos2unix
Block cursor for vim in cygwin/babun
Put this in .vimrc
let &t_ti.="\e[1 q"
let &t_SI.="\e[5 q"
let &t_EI.="\e[1 q"
let &t_te.="\e[0 q"
Getting copy and paste working for vim in babun
Add this to your .vimrc so you can paste using right click on the mouse
set mouse-=a