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

Tuesday, May 31, 2005 9:25:50 PM UTC :: Filed Under Fitness

One of my favorite summer activities is kayaking.  Not only is it great exercise and a neat way to see nature, my wife and I seem to get a similar work-out because she is quite a bit lighter than I am, thus she uses less effort to go just as fast as I do. 

Unfortunately, I typically find that within a half-hour of kayaking, my lower back really aches.  It aches to the point that the finishing my kayak trip sometimes becomes more of a chore than a pleasure.   I found what I think could very-well be the reason for all this pain from a user named Jed on KayakForums.com:

This may not apply in your case but some people experience back pain that is caused by hyper-extension of the lower back. Tight hamstring muscles can prevent the pelvis from rotating forward far enough to allow the lower back to maintain it's natural curve. Constant extension of the lower back then leads to sometimes significant discomfort.

An easy test for this is to sit in your boat with your normal posture and try to rotate your pelvis forward as far as you can by trying to push your belly button out towards your knees. This will contract the muscles of the lower back, rotate the pelvis forward and move the whole torso forward somewhat. If the natural curve of the lower back returns when you do this, then tight hamstrings / bad posture may be the culprit.

This type of aggressive posture does more than just relieve some types of lower back pain, it also pulls the back away from the seat back / back band and allows the paddler to balance naturally with the torso slightly forward of vertical. By returning the pelvis and the lower back to a more natural posture, torso rotation is greatly enhanced which then leads to more power from your stroke.

Lastly this posture greatly enhances the paddlers ability to work the extreme ends of the boat especially the forward quadrants and nearly eliminates reliance on any type of back support. I suspect the latter is something the back band manufacturers and sellers would prefer we did not know.

As a bicyclist who has the naughty habit of not stretching before each ride, my hamstrings are typically very tight.  Reaching my toes is nearly impossible!  I’ve always told myself that I should really integrate stretching into my fitness regimen, so perhaps now is the time to start.

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