First Notice, IT ticket Complete

image

 

Nothing like greeting a loyal customer with a nasty error message.

Comments [0]

The Power of Opera

So It took Opera filling an antitrust law suit in the European Union, To drive IE8 into passing the ACID2 test

And it took Microsoft less then a week.

Comments [0]

Are Tech books dead?

I was at Barns & Noble today.  I wanted to buy Windows Presentation Foundation Unleashed.  But I couldn't, I couldn't justify buying a 50 dollar book that is already out of date.  I suppose I am some what spoiled with my whole library access to Safari Tech Books Online.  But there is so much more power in this format, its highly portable, simple to copy a code snippet.  It just like a book except its stuck on the screen.  Which means for ever in the office or listening to the hum of my laptop.  But still a much better cost proposition then buying a printed book.  Its more like a lease and in the Tech book market with the rapid pace of change, a lease is so much more compelling.  So while prose may not be dead printed Tech books will soon become a thing of the past a  relic of college life.  In our future books will be defined as

published work: a published work of literature, science, or reference, or a work intended for publication(encarta.com)

No more paper.

Comments [0]

EOL Conversions edit your files.

In Source Gear Vault if you see a file constantly marked as edited even after getting the latest version.  Right click the file properties in Source Gear Vault set EOL Conversion to None apply and close the File Properties window.  Problem solved.  Why would you adjust EOL on a binary file?

Comments [0]

A new way to debug a windows service

Normally when you want to debug a service at startup you set your debug break point and set the thread asleep just long enoug for you to attach your debugger to the service process but, came across a more eloquent way

Setup:

Ø Follow the instructions in ‘Configure a service to start with the WinDbg debugger attached’ section of the KB article – KB 824344. Note that you can safely ignore Step 2 in this section as you would no longer need the service to interact with desktop.

Ø Add the following command line parameters to the path of the debugger: (let’s assume debugger is installed in ‘C:\Debuggers’ instead of ‘C:\Program Files\Debugging Tools for Windows’ for convenience)

C:\Debuggers\WinDBG.exe -G -c ".server tcp:port=1234"

Ø Start your service from Service Control Manager.

Ø By now the debugger is already connected to the service as a ‘server’. You would have reached the ‘Initial Breakpoint’ waiting for a g (Go) command from the debugger.

Ø Launch another instance of WinDBG and connect to the ‘server’. There are many ways to do this; the simplest would be to go to File->Connect to Remote Session->Browse->Enter machine name->Refresh. Hit OK on your ‘server’ that is listed to connect.

Read the rest of the post A look at service startup issues.

Comments [0]

Solutions Can Have Folders

I knew Projects in Visual studio could have sub folders which are great for organizing code files.  But I have come to find out that solution files can as well http://dotnettipoftheday.org/tips/visual-studio-solution-folders.aspx  pretty cool.  Welcome to a new era of organization!

Comments [0]