Archive for April, 2011
Vim regular expressions
29Apr11
very good reference of the usage of regular expressions in VIM: http://www.softpanorama.org/Editors/Vimorama/vim_regular_expressions.shtml
Filed under: linux | Leave a Comment
set python logging level
13Apr11
often using logging.basicConfig is useless because if the logging module is already configured upfront by one of the imported libraries this is ignored. The solution is to set the level directly in the root logger: logging.root.level = logging.DEBUG
Filed under: python | Leave a Comment