Feb 192012
 

In this post, I demonstrate a solution to the popular FizzBuzz problem using TDD. Given the relative straightforward nature of the problem and corresponding solution, there is no narration. Instead, there’s a cool techno track. Enjoy, and as always, comments are welcome!

Feb 172012
 
3 Inches To Being A Better .NET Dev

I’ve worked with a lot of developers in my time, and I’ve come to realize that just like Al Pacino says, “life is a game of inches.” Or in this case, .NET development is a game of inches. Here are three of those inches that will help any .NET developer become better. 1. Line Numbers [...]

Jan 312012
 

Continuing in the series, we build upon our prior work on the OCR kata and proceed to actually compute the checksum of an account number. In order to keep this under fifteen minutes, we only get so far as computing the checksums of empty and invalid account numbers. Enjoy!

Jan 292012
 
Crutch-Less CodeRush

This post is as much a reminder for myself as it is for public consumption. I don’t like being too dependent on a tool, especially for mundane things such as auto-closing of brackets and parentheses. My thinking here is that if I do become too dependent on a given tool, when I move to another [...]

Jan 272012
 

This post is a continuation of our prior work on the OCR coding kata. I’ve started narrating, and am keeping the parts down to fifteen minutes or less. This one is about nine minutes, and starts in on the checksum calculation, specifically concentrating on making the digits in the account number aware of their position [...]

Jan 192012
 
Finding Your Web Cam with C# & DirectShow.NET

This post is a quick little ditty about how to enumerate over all video capture devices on your machine using the DirectShow.NET library. The DirectShow.NET library is a C# library that sits atop Microsoft’s DirectShow API. This library helps you avoid some of the headaches associated with accessing unmanaged libraries from managed code. For our [...]