Fixing the position of the toolbar in IE 7

I don’t know about you, but I prefer the look of IE 6 over IE 7. The IE 7 toolbar icons look more toyish to me, but what really annoys me is the new toolbar position, above the menu bar. Maybe I’m being anal (I’d say purist), but I like my menu bars on top of my toolbars.

Surprisingly, you can’t drag the toolbar around and there’s no obvious setting in the UI to change the behavior.

But I did stumble upon a registry setting that puts the toolbar in a more agreeable position.

Download this sucker and double-click it to merge it with your registry and then restart IE:

IE7BarPosition.reg

Making Cygwin and Windows cooperate

Cygwin uses a different path scheme than Windows. If you use a Cygwin shell with Cygwin programs, then everything works well. But if you use a Cygwin shell as your default shell (which I do, because face it, cmd.exe sucks) and you’re running non-Cygwin programs, you can run into trouble because the shell may send Cygwin-style paths for filenames to Windows programs that don’t understand them.

For instance today I was using a Cygwin bash shell with a non-Cygwin Perforce client (i.e.: “p4”).

$ p4 open foo.cpp 
Path '/cygdrive/c/dev/project/...\foo.cpp' is not under 
client's root 'C:\dev\project'.

p4 is a regular (non-Cygwin) program and thus it doesn’t understand the Cygwin path that gets sent to it.

One way to fix this would be to find a version of p4 that was compiled against Cygwin.

Another way is to use the cygpath command to convert the Cygwin path to a Windows path.

$ p4 open $(cygpath -aw foo.cpp) 
//depot/project/foo.cpp#2 - currently opened for edit

The -a option tells it to generate an absolute path and the -w option tells it to convert from a Cygwin path to a Windows path.

1 GB of RAM in our Windows laptop

My wife’s Windows XP laptop has been pretty slow lately and I haven’t gotten around to doing the old Windows ritual of backing up the data and reinstalling Windows from scratch, so I bought 1 GB of RAM from a coworker and installed it Tuesday night.

It might’ve helped a bit, but I think I still need to do the fresh Windows install.

What do you think are the chances that this routine won’t be necessary with Vista?

Released Export2Excel 1.0.1 for Yahoo! Music Jukebox

I released a new version of my Export2Excel plugin for the Yahoo! Music Jukebox.

Here are the changes:

Screenshots

YMEExcelPlugin_UI  

YMEExcelPlugin_Worksheet

Release notes

1.0.1

Getting FLAC

After a coworker mentioned it, I decided to rip all of our CDs to FLAC so that we’ll have perfect copies and can always transcode to the latest file formats.

Last night I ripped a few CDs with dBpowerAMP Music Converter (dMC). Worked fine though it slowed the computer down a lot. My coworker told me today that he tried dBpowerAMP last night and found it to be much slower than the commercial ripper that he bought. Also, the compression level setting had very little effect for him. So I will probably look into the program that he has.

Incidentally, can anyone recommend a good FLAC ripper for OS X?