From the monthly archives:

May 2007

Rules of H

by garth on May 11, 2007

G’day! Welcome to my blog. I only post intermittently. If you’d like to keep track of what I’m doing, please consider subscribing to my RSS feed. You can also follow me on Twitter (1-20 short posts a day) and Tumblr (a few found objects per month).

Put all the cards on the book brochure, lining them [...]

{ 1 comment }

Fix: Python Script Arguments Not Passed

by garth on May 4, 2007

On Windows, you can run a Python script on the PATH simply with its name. These should be equivalent: 
c:>congeal blood
c:>congeal.py blood
c:>python congeal.py blood

If it's not working that way, fixing PATHEXT and correcting the file type associations with ASSOC and FTYPE will usually do the trick: 
c:>set PATHEXT=%PATHEXT%:.PY
c:>ftype Python.File="C:Python25python25.exe" "%1" %*
c:>assoc .py=Python.File

If that still isn't [...]

{ 2 comments }