Reality-Loop

  • January 04, 2008

    How do you want to spend your time in 2008?

    Last summer Scott Hanselman blogged about joining Microsoft. There he painted an interesting diagram: The diagram kept popping around in my head, especially in respect to my recent job-search. But I think the diagram can be looked at in a bro...

    Read more ...
  • January 03, 2008

    C# on the journey to functional programming

    From old-school imperative... var list = new List<int>(){1, 2, 3}; int sum = 0; foreach (int n in list) { sum += n; } Assert.AreEqual(6, sum); ...over clumsy delegate... var list = new List<int>(){1, 2, 3}; int sum = 0; list.ForE...

    Read more ...
  • December 30, 2007

    Solution Wide Error Analysis - Someone is reading my blog

    I blogged about ReSharpers 'Solution Wide Error Analysis' before. Unfortunately the feature was not released in the 3.0 release of ReSharper. But now it's here in the 3.1 release: JetBrains announces the feature on their .NET-Blog. And here ...

    Read more ...
  • December 20, 2007

    Yet another Addiction

    Long ago, I realized that I am an addict. But recently I had a look at my browser and discovered yet another addiction! How many times is Google present? I make daily usage of iGoogle, Gmail, Google Calendar, Google Reader, Picasa, Blogger ... at...

    Read more ...
  • December 18, 2007

    Information Theory: Nonsense Bandwith

    Do you think you know how much nonsense can be transmitted with a given amount of words?Well, have a look at this. But be prepared to revise the theories you learned...

    Read more ...