Monthly Archives: 09:30 PM

Coding craftsman seeks new job

A pythonista seeks new job and I think of gift economies on 12seconds.tv Via planet python I read of a pythonista and craftsman feed-up with software establishment, and turning away from professional software development; he wants Art and energy back in his code. A brave guy, not afraid of the GIL-Dragons. I know many people [...]

Posted in Blog, Conversation | Tagged , , , , , , | Leave a comment

Css lint in git

A short git hook (pre-commit) to check for css sanity before I commit changes to the git repo. Css validation done with the cssparse tool from css-utils (python). The idiom to get a list of staged git files and filter it is handy on other pre-commit scripts. for css in $(git diff-index –name-only –cached HEAD — | [...]

Posted in Notes | Tagged , , , , , , | Leave a comment