Archive for the ‘Computers’ Category
How to get Vista to show the “Command Prompt Here” on a Folder List
Sunday, May 18th, 2008
I was happy to find the same feature already baked into Windows Vista: hold down the shift key, right-mouse click on any folder in the view pane, then select “Open Command Window Here” from the context menu:

But try the same trick on a folder in the Folder Tree, sorry, the command’s not there:

For some reason, in their wisdom the Microsoft UI engineers chose to omit the command from this particular menu.
Quite by chance, I discovered that the choice is available on the File menu in Vista, but it’s not invoked in the same way: instead, select a folder in folder list, hold down the shift key then left-click (i.e. normal click) the File menu:

Vista then displays “Open Command Window Here” at the top of the menu. Okay, happy to have it back, even if it’s in a place I didn’t expect…
What did I just edit?
Thursday, May 1st, 2008I checked out some code files from Razor (don’t ask, we use an old CM system), created a couple of new ones, now I want to quickly double-check which of the thousands of files in our source tree are the ones I checked out or created (don’t ask, we use an old CM system), so I can check the changes back in and introduce the new files (if I forget, guess who gets the wooden spoon for breaking the build):
So fire up a DOS prompt and type in:
C:\path to my code\>dir *.cpp *.h *.vcproj
/b /s /a:-r > \usafipd\updated_files.txt
This says “list all of the code files and Visual Studio project files from here on down that are writeable (i.e. not locked by Razor), then dump the results to a file in case there are hundreds of filenames to review.
This gives me a file, updated_files.txt, containing a nice list of all the .cpp, .h and .vcproj (Visual Studio project) files I checked out (i.e. made writeable).
Pylons stuff
Sunday, April 13th, 2008John Brennan brings us a short Pylons intro Zero to 60 with Pylons… in just minutes (Part 1). Can hardly wait for Part 2!
Also noticed The Definitive Guide to Pylons from Pylons lead developer James Gardner is slated to arrive in July 2008.
Another evaluation of Google AppEngine
Friday, April 11th, 2008Todd Hoff explains how distributed web apps can leverage the much-maligned CGI interface in Google AppEngine - A First Look