Steamed Design

Nov 21

I want to be less fat!, so I am going to complete the Zombies Run 5k Training. This is not that first time I have wanted to be less fat in fact I have tried several things:

I tried C25K - and got bored
I tried to train for around the bays - and got scared and didn’t race
I tried Zombies Run! and actually did pretty well until I did too much too soon and hurt myself.
Also according to my wife “I ate all the hot chips”
So they say 5th time is the charm so It training starts today, again.

I want to be less fat!, so I am going to complete the Zombies Run 5k Training. This is not that first time I have wanted to be less fat in fact I have tried several things:

So they say 5th time is the charm so It training starts today, again.

Jan 31

Look what ReSharper just taught me

You can rewrite:

var result =  object.Where(m => m.Id == id).FirstOrDefault()

as

var result = object.FirstOrDefault(m => m.Id == id);

Thank you ReSharper

Jan 20

Jan 16

Anonymous asked: if i ask a question, where does it go and how do i see the answer? is this powered by a magic 8 ball?

Reply hazy, try again

Dec 20

Why using test coverage as a metric is stupid

Adding a useless test to increase test coverage check.

[TestMethod]
[ExpectedException(typeof(NotImplementedException))]
public void AddUsersToRolesTest()
{
    Roles.AddUsersToRoles(new string[] { }, new string[] { });
}