Saturday, August 13, 2005 6:29:50 AM UTC :: Filed Under Fitness

After riding a Selle Italia Flight Titanium saddle for a few years, I decided that it’s not likely the seat is going to “break-in” any more and the only way I’d get my butt to stop hurting after my rides was to try something else.   I tried the SaddleCo Flow because it seemed like the perfect saddle: light, airy, and had a ‘suspension’ system kind of like my Herman Miller Aeron office chair.  In theory it was nice, but it felt like I was riding a cookie-cutter so back to the store it went.  I recently purchased a Selle Italia SLK saddle, but it went back to the store after just two rides.  It looked cool, but was just too narrow and harder than my Flight.

I finally decided to bite-the-bullet and get a Fi´zi:k Aliante that I’ve heard so many good things about.  My local bike store had some and I was really impressed… except I wasn’t impressed with the $260 price for the carbon version!  So I bought a titanium version on eBay for $150… kind of a risky investment since that is a LOT of money for a saddle I’ve never tried and couldn’t return.

No need to return this puppy… I love it!   After only one ride, it felt great (or should I say that my butt felt great!)  I’ve never had a saddle that made me happy on the first ride before.  I can’t remember ever coming back from a ride and not feeling any pain in my butt… it was almost unusual to me to be able to focus on riding and not how much my rear hurt.

What I think makes this saddle so nice, aside from its ample padding, is the carbon and Kevlar shell.  My Flight saddle had a very hard plastic shell (and so did all the other saddles I’ve owned except the Flow) which doesn’t give at all.  The Aliante’s Kevlar shell is rigid but has a little give to it which I’d assume helps absorb some of the road shock, kind of like the SaddleCo Flow saddle, only better because there are no hard plastic edges.   

For anyone who’s looking for a ‘cool looking’ saddle that doesn’t weigh much and still offers great comfort, I’d suggest giving this one a try… if you don’t mind transferring the pain in your butt to a pain in your wallet!

Thursday, August 11, 2005 2:29:30 PM UTC :: Filed Under ASP.NET

I see Microsoft isn’t always devoted to creating serious business apps… some times they like to play: http://www.escapeyesterworld.com/

This site is for marketing Visual Studio 2005 and SQL Server 2005 and features old movie clips and the like… pretty funny!

Monday, August 08, 2005 2:33:09 PM UTC :: Filed Under Geek Tips

One of the most highly annoying *features* of Adobe’s Acrobat 7 product is that it installs itself in all of the Microsoft Office applications whether you want it to or not and there appears to be no easy way to stop it. If you use Adobe Acrobat, Outlook has a Send as PDF button on the toolbar. To remove the button, you need to disable the COM addin.

Go to:

HKEY LOCAL MACHINE
   \Software
      \Microsoft
         \Office
            \Outlook
               \Addins
                  \PDFMOutlook.PDFMOutlook

Change the LoadBehavior value from 3 to 2. Restart Outlook. The PDF functions will still be available in Word and the other Office programs. The same registry key appears to exist for Word, Excel, and Access as well. I haven't figured-out how to remove Acrobat from Visio though.

Friday, July 29, 2005 5:15:50 AM UTC :: Filed Under Fitness

I’ve often wondered what the difference is between a ‘game’ and a ‘sport.’ To me, golf and football are really games, where as running marathons is a sport. I found a better definition (if that’s what you want to call it) in Mike Celizic’s article, "7th Tour win gives Lance immortality." Mike writes:

“Sports are contests in which people compete physically, matching a skill or skill set against others. That’s my definition, at least. My cut-off line is anything you can do better while drinking beer. So billiards doesn’t make it. Nor does darts. Those are games.”

By his standard, I guess that would make golf a sport. Hmmm… I’ll have to think about this one a little longer.

Monday, July 25, 2005 5:58:42 PM UTC :: Filed Under SQL

Neither humans nor computes can divide by zero, so if your SQL script has a variable in the denominator of an equation, be sure to safe-guard against a potential divide-by-zero error:

CASE
    WHEN @AveWorkDays = 0 THEN 0
ELSE
    ISNULL(SUM(CAST(ItemInventory.QtyDistributed As decimal))/@AveWorkDays, 0)
END
Wednesday, June 22, 2005 6:12:47 PM UTC :: Filed Under ASP.NET | VB.NET

I’ve been told time and time again that Microsoft’s Visual Source Safe 6.0 is not a very good application to use for managing project files, but it’s all I have and it has been working pretty well… until today.   One of my project folders apparently got corrupt; I couldn’t open the folder, delete it, rename it… nuttin’.

After trying a gazillion stupid things just short of creating a whole new VSS database and starting over, I finally discovered the ANALYZE command line tool.  Sure enough, that’s all I needed to fix the corrupted database.  The analyze tool is located in the C:\Program Files\Microsoft Visual Studio\VSS\win32 folder.

Running the following command was all I had to do to fix the problematic folder:

C:\Program Files\Microsoft Visual Studio\VSS\win32>ANALYZE –F \\server\vss\dbname\data

Here is a list of a few other VSS Utilities. Since I now know how to repair a corrupt VSS database, I’m going to continue to ignore everyone’s advice and keep using VSS in the hopes that the 2005 version will be a cure-all (yah right!) J

Navigation
On this page....
Search
Archives
<August 2005>
SunMonTueWedThuFriSat
31123456
78910111213
14151617181920
21222324252627
28293031123
45678910
Categories
Contact me
Send mail to the author(s) Contact Todd M. Taylor