I’ve just pushed the first version of markdown.py to GitHub. It doesn’t do anything except echo the contents of any file you give it. The reason why it’s useful at all are documented in Stub for markdown.py. However, it occurred to me that as it stands now, it might be the lamest, most useless project [...]
Clearcase checkout from vim on windows with cygwin
One of the projects I’m working on uses ClearCase. I am developing on Windows 7, with cygwin. I edit in Vim. To get integration between Vim and ClearCase, I’m using the ccase.vim plugin. However, I need to make a couple of changes to the default to get it to work. In my _vimrc file, add [...]
Stop Sucking
Not sure how I missed this before. But it’s pretty awesome. how to stop sucking and be awesome instead
Functional Testing, Python, and Markdown. Oh My!
It sure has been quest around here. Actually, I’ve been busy thinking about and writing about: + python programming + python testing + functional testing + and Markdown But it’s all happening over at PythonTesting.net. So head on over there, and check it out.
true && false
or is it True and False, …? Boolean logic is just part of the job as a programmer. However, language writers have made our life complicated. We don’t just have 0 and 1 for true and false. We have types such as bool, Bool, boolean, Boolean. We have true, True, TRUE, false, False, FALSE, 0, [...]