27/06/2011
So one thing I love doing at devlink and codestock conferences is going to the open spaces technology conference. It’s kind of a conference within a conference. When the 2011 devlink conference page went up, the first thing I noticed was that I (along with a few friends) were on the front page. Seeing as its getting close to the conference, I decided to snag a screenshot of the page for fun.

16/03/2011
Structuremap makes it easy to dynamically load and configure Registry objects at runtime.
Here is an example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| public class Bootstrapper
{
public static void Bootstrap()
{
ObjectFactory.Initialize(init =>
{
init.Scan(scan =>
{
scan.AssembliesFromPath(path);
scan.LookForRegistries();
});
});
}
} |
However, I ran into a problem where I have multiple registries in multiple Assemblies that need to be registered in a specific order.
Read the rest of this article »
26/02/2011
Using the Pomodoro technique has always been one of those things that I try to do with good intentions but fail miserably at. I am easily distracted and need to police myself from getting side tracked.
Get Concentrating
Today I setup Concentrate for use as a pomodoro timer, distraction blocker and “nagging boss”. Read the rest of this article »