depth first search

“We can only see a short distance ahead, but we can see plenty there that needs to be done."

My Bailout Plan

I came up with my own bailout plan. It’s the same as Senator Dodd’s plan, except that the first 10 billion dollars must come from private individuals who have profited from the private financial sector over the last ten years, and furthermore, Paulson himself must put up over 80% of his personal fortune. These people [...]

Python Segfaults

Python is an interpreted language, and the interpreter is solid enough that you wouldn’t expect to encounter the following: stober[~]{landmine}$ python test.py Segmentation fault Pretty scary stuff. So what was I running? #!/lusr/bin/python from opencv import highgui from opencv import cv   writer = highgui.cvCreateVideoWriter("test.mpg", highgui.CV_FOURCC(’m',’p',’g',’1′), 30.0, cv.cvSize(100,100), True) 99.9% of the time the Python [...]