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.
Archive for March, 2008
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.
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, 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 [...]
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 [...]
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.
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 [...]
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 [...]


