Wednesday, April 29, 2009

Hurricans are the bane to NJ Devils

For the fourth time this decade, the Carolina Hurricanes have made the playoffs. Every single time they've been there, they've played the New Jersey Devils.

Back in 2001, the Hurricanes lost to the Devils in the first round 4-2, including two shutouts by the Devils, but Carolina won the only game going to overtime.

Since then, it's been all Hurricanes:
2002: the Hurricanes won 4-2, where all four games won by Carolina were won by one goal, including both overtime games in the series.

2006: After the league took a break for a year and the Hurricanes took a break from the playoffs for a while, they once again encounter New Jersey, this time in the second round, and this time only needed 5 games to beat New Jersey, again winning the only game in overtime.

2009: Again, New Jersey in the first round, and this time New Jersey won an overtime game for the first time against Carolina in the playoffs this decade, game 3. But Carolina won in seven, winning one game in overtime and two games with a goal in the last minute. Game 4's goal came with 0.2 seconds left to win 4-3. Game 7's goal came less than a minute after the tying goal, with ~30 seconds left. Which is more dramatic? Gotta go with Game 7.

Thursday, April 16, 2009

Beating Windows Update's IE Quicklaunch


Whenever I update my computer, it seems, Windows insists on adding Internet Explorer to the QuickLaunch area. Hmmm, let's see, if I deleted it, I probably don't want it there. So why does MS add it when there's a security update? No idea, except it probably has to do with pushing the use of their browser.

There are a few problems with this. 1) I didn't give it permission to add something to the QuickLaunch area. 2) I have no way of opting out of this. 3) Except, I could skip updates, which would be a bad idea. 4) I can no longer see the icons I have there, because now now all icons can be shown, and the little double arrow is needed to click twice to the icon I want and IE.

I've found the solution, though. It's simple and I'll never have to remove it again. I added a batch file (yes, those still exist) to my startup that removes IE from the QuickLaunch area. It's simple.

1) Go the the start menu and find the "Startup" folder. Right-click on it and select "open" (not "open all users"). This will take you to some place like:
C:\Users\(yourUserName)\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup on Vista and something similar on Windows XP.

2) Add a new text file to that folder by right-clicking and selecting "New Text File." Rename the file "RemoveIEQuickLaunch.bat" and say OK to the warning about changing the file extension.

3) Open the file with notepad and insert the following:
del "C:\Users\(yourUserName)\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\Launch Internet Explorer Browser.lnk"
If MS creates it with a different name, you could be more aggressive with:
del "C:\Users\(yourUserName)\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\*Internet Explorer*.lnk"
4) Save the file and close it.

For Windows XP, you'd need to know the path of the QuickLaunch area, which is similar, just right click on the QuickLaunch area (not an icon), select "open folder", and it will open a window to QuickLaunch, which will tell you the path.

Now whenever I log in, the internet explorer icon is removed if it ever got added!

Labels: