Archive for November, 2009

A Better INotifyPropertyChanged Implementation

The INotifyPropertyChanged-interface and companions are a well know citizens of the .NET-framework. How do you implement this interfaces?. Does it look similar to this? public class Person : INotifyPropertyChanged { private string firstname = “”; /* Other fields for the properties */ public event PropertyChangedEventHandler PropertyChanged; public string Firstname { get { return firstname; } [...]

Read complete post

,

No Comments

Doctor Who 2005 Season 2 *Spoilers*

Season 2 starts with the new Doctor, portrait by David Tennant, ready for new adventures. For me  this was a bit of a shock that the main character has been ‘replaced’ after one season. For those who know Doctor Who longer this isn’t something new and is called ‘regeneration’. This December the last episode with David [...]

Read complete post

, , ,

2 Comments

Doctor Who (2005) Season 1 *Spoilers*

Doctor Who is awesome. That’s why I’ve decided to make a post for each season of the new Doctor Who 2005 series. To be honest, I haven’t watched a single episode of the classic series. That was way before my television-career. Why now? Well I haven’t had the time to discover and watch new series [...]

Read complete post

, , ,

2 Comments

db4o: Client-Server and Concurrency

So far we’ve always used a single object container. This it the simplest way to used db4o. Just open an embedded database an use it. In this post I’ll give a short introduction to the client-server-features of db4o. Handling concurrency is more challenging in a server-client scenario, therefore I also loose a few words about [...]

Read complete post

,

12 Comments

LINQ: cast-catch

In this post I’ll explain a little catch in LINQ, which may some beginners fall into: What’s the difference between those two queries? IEnumerable<Person> listOfEntities = LoadData(); // First version of the query var resultV1 = from p in listOfEntities where p.Name.Contains("a") select p; // Second version of the query var resultV2 = from Person [...]

Read complete post

, ,

2 Comments

Soap & Skin, My Pal Satan, Erlang and nullptr

My Pal Satan is a little comedy web-series about a Donna and her roommate, Satan. However there are only six episodes =( On infoq.com a talk from Joe Armstrong about fault-tolerant systems and Erlang is avaible. Maybe this doesn’t affect many developers today, but I think in the future more and more systems need some [...]

Read complete post

, , , ,

No Comments