Visual Studio 2008 Color Schemes

It’s a shame that VS does not have a true “theme engine”, but importing/exporting settings works well enough. Here is a good link that indexes some of the better “schemes” out there:
http://www.hanselman.com/blog/VisualStudioProgrammerThemesGallery.aspx

cusor:hand and Firefox

Just one of those little things: Firefox doesn’t support the CSS “cursor: hand”. Instead, use “cursor: pointer”. This will work in all browsers.

Hillarious code bounty…

This is just great: http://www.getacoder.com/projects/operating_system_42879.html
All that and a budget of $1,000-$3,000. I really like the people who made (what appears to be) serious bids for it.

UI patterns

For anyone who does a lot of UI work, this is a fantastic site:
UI Patterns
The site is definitely web page centric, but there are some good fundamentals there that apply to all interface design.

LINQ Framework Design Guidelines

From DotNetKicks, Krzysztof Cwalina’s team has published their LINQ Framework Design Guidelines.
Another great resource to go along with Cwalina and Abrams ‘Framework Design Guidelines.

The Command Window

The Command Window, like the Immediate Window, can be one of those tools that a developer can find to be an invaluable aid and time saver. As the name implies, the Command Window is essentially a shell into Visual Studio and provides a mechanism other than point-and-click to activate and use Visual Studio’s features.
To [...]

XElement and friends

System.Linq.Xml - The XML object model for Linq
XElement is the basic building block (or element) of an XML document in the System.Linq.Xml world. It is, after all, just an XML element. Using XElement, the most basic XML document can be formed with this:
PLAIN TEXT

XElement doc = new XElement("DocumentRoot");

This will give you a document that [...]

Visual Studio Keyboard shortcuts poster

A friend pointed me to this: Microsoft has a nice poster you can print off with all of the default keyboard shortcuts/keybindings for Visual Studio.

For Visual Studio 2005, here.

For Visual Studio 2008, here.

Those old C bit tricks

After spending a lot of years writing C code it is sometimes hard to get some of those "tricks" out of your mind. The thing I always felt about C was it seemed to encourage you figure out or use cool tricks. Couple that with graphics coding you can get some strange stuff like the [...]

Extending DebuggerVisualizer — visualizing data as a graph in the debugger

Without a doubt, the debugging in Visual Studio is pretty easy to use and powerful. One aspect of it that makes it especially powerful is the ability to extend and customize it to your needs and data. Enter Debugger Visualizers...
Debugger Visualizers are the little pop-up windows that show when you click on the little magnifying [...]