Skip to content

Instantly share code, notes, and snippets.

@porn
porn / gist:491725e91ac35f581bc0
Last active February 12, 2016 15:12
makefile for creating tags for python
####################################################
# ctags for vim
CTAGS_COMMON_EXCLUDES = \
--exclude=*.vim \
--exclude=public \
--exclude=install \
--exclude=doc \
--exclude=application/temp \
--exclude=application/logs \
--exclude=todo
@porn
porn / gist:d8e1beec85b41ce41030
Created February 3, 2016 14:59
find zombies using ansible
ansible -i inventories/production.ini webservers -m shell -a "ps aux | awk '\$8~/^Z|^STAT/{ print }'"