Archive of articles classified as' "Uncategorized"

Back home

I’m on the devlink 2011 front page!

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.

I'm on the devlink 2011 home page

No Comments

StructureMap: Dynamically load Registry’s in a specific order

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 »

No Comments

Using Concentrate for Pomodoro

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 »

No Comments