Tool recommendation: Doing support remote

Today i had to guide a customer through testing an application on his machine, as the application is supposed to run as a service no UI was made, so he had to interact with the application for testing copying some files around and specifying some parameters on the commandline. However this was a n... [More]

Misunderstood common concepts in your programming language

As we all know we have a range of access modifiers in C#: public, protected, internal and private. These can be used as a single word or in a single case be combined: that is internal protected (and the other way around protected internal). During a conversation with a friend yesterday regar... [More]

Fun with static constructors

A couple of days ago, a colleague of mine worked on logging in an application, he made a solution where the logging solution had minimal readability impact on the parts of the codebase utilizing the logging framework. However a single setting had to be changed depending on which context we were do... [More]