Archives for 2007

Business entity and C# extension methods

Nov 1, 2007

In place of writing something like:

protected string GetUrl(Information info)
{
    if (info is News)
        return ResolveUrl(string.Format("~/news.aspx/{0}", info.NormalizedTitle));
    else if (info is Publication)
        return ResolveUrl(string.Format("~/publications.aspx/{0}", info.NormalizedTitle));
    else
        return string.Empty;
}

Continue reading

Camtasia 5 is released

Oct 18, 2007

I had a little issue to install Camtasia 5 on Vista and the solution is there

Camtasia.msi /passive

Continue reading

Coding Horror: Remember, This Stuff Is Supposed To Be Fun

Oct 17, 2007

I set out to change that. Companies would no longer be able to select me from a generic lineup of candidates. Instead, I would select companies. Companies that I respected, companies that shared my passion for software. Armed with thirty years of hindsight, I would no longer let random, chance opportunities determine my career path. I will choose where I want to work.

If you love software as much as I do, you deserve to work at a company where people come to work not to punch a clock, but because they love software, too. You deserve to work at a company where software engineering is respected. You deserve to work at a company where peers meet to enjoy building software together.

Continue reading

Alpha vertical slice of Silverlight Streaming on Tech Head Brothers

Tonight I reached a new milestone on my current development for my portal Tech Head Brothers.

You might know, or guessed, from one of my last post; "Tech Head Brothers Silverlight Streaming framework" that I am working on adding Silverlight Streaming to Tech Head Brothers. I first released a little framework to ease the development against the REST API of Silverlight Streaming. Now I went further on with a first vertical slice of the whole solution.

Continue reading

Page 8 of 25