Extension methods, what you shouldn’t do

I’ll admit it, I love extension methods, especially the ones from the LinQ-to-objects framework.

However I often see them abused, partly by making everything extension methods, and partly by breaking readability with methods which normally shouldn’t work.

Also I’d like to share a few of my extension methods with you – intrigued ? Read on 🙂

Read More »

Webpage blinks in Internet Explorer

I’ve encountered this peculiar bug a couple of times in Internet Explorer.
Sometimes parts of the webpage either blinks constantly, or disappears when e.g. hovering links only to reappear upon scrolling or hovering another link.

Read More »

Getting a “pure” date in MS SQL (without the time)

You probably know the situation: You want to get all records grouped by day, but you stored their creation date using getdate(), so now they all contain time as well as the date.

The solution until MS SQL 2008 was not pretty, however with MS SQL 2008 we finally have a “pure” date datatype.

Read More »