Programming

Some musings on Sharepoint

First let me say, if you're looking for some tutorials or samples related to Sharepoint, this post isn't for you 😉 but feel free to read on. At my new employer's, I have to do a fair amount of Sharepoint development. Well that phrase right there is just ridiculously large in scope. Allow me to […]

Programming

Project References with Visual Studio

So, you're writing an application, and you break down the functional parts to more base layer services and utility assemblies, and now you want to create a new application and re-use some of your code. My “go to” answer has always been separate assemblies copied to a global project bin and then adding references to […]

Programming

A few weeks into a TDD style project

So, as you may have read in my previous rant regarding Test Driven Development, I am one of two developers participating in a test of TDD. The project is relatively small in scope and is mostly in a stand-alone “engine” so really, I think it's a pretty ideal test subject. If you were paying attention, your […]

Programming

Test Driven Development

Well folks, I'm here today to gripe about Test Driven Development (TDD if you can't live without an acronym). For those unfamiliar with it, the concept is (and feel free to correct me folks), one starts coding the unit tests firsts and implements the various classes/structures one needs to make the unit tests function. By […]