9 Apr
2009

Elegant Code Welcomes Brian Lagunas and Corey Schuman

ElegantCode just got a whole lot smarter in the UX department with the addition of Corey and Brian. Both bring a wealth of UX knowledge from RIA Silverlight, WPF, XAML, Game Development, Animation &  Design. Brian wasted no time dropping several posts here on us at ElegantCode, and I?d bet a few bucks there’s a […]

Read More
9 Apr
2009

Conditional Using

Today I found myself writing the following code: private void DoSomething(String userName) { using(var userEntry = GetUserEntryFor(userName)) if(CouldBeFound(userEntry)) { // Do something with userEntry } } private DirectoryEntry GetUserEntryFor(String userName) { // … } private static Boolean CouldBeFound(DirectoryEntry entry) { return null != entry; } Notice the combination of the if statement with the using […]

Read More
7 Apr
2009

AltDotNet Podcast with Jeremy Miller

I don’t often point people directly to a podcast, but I think this one is important. The AltDotNet Podcast interviewed Jeremy Miller about Alt.Net http://altnetpodcast.com/episodes/18-talking-with-jeremy-miller-about-alt-net This podcast is largely a rebuttal to the podcast that Mike Moore did with Scott Bellware.  If you want the cliff-notes version: Scott Bellware is not Alt.Net (nor is Jeremy […]

Read More
5 Apr
2009

Why Developers Hate WF and Why They Should Get Over It

Microsoft does an amazingly good job of making technology accessible. What I mean by that is that for people who are not necessarily “technologists”, custom applications are still often within reach. We’ve all seen this in the wild. It might be that  Access database that won’t die, created by that guy in marketing in 1998. […]

Read More