How to use Dropbox as a git repository
Hack of the day: Access private members in unit tests
February 17, 2011
Sometimes it could be very useful to be able to test private members or methods in your unit tests. But how could this be achieved? » more
Classic of the week: Kick Off 2
February 15, 2011
If you are a gamer since the good old Amiga-times and if you’re also a soccer-fan you will know Kick Off 2 for sure. » more
Hack of the day: Interfaces in C++
February 4, 2011
I lately talked with a friend about which language is the best and he told me that C++ doesn’t have Interfaces like Java. » more
Hack of the day: Safe delete
February 3, 2011
If you free up memory in C++, you should also set the pointer to NULL. If you double delete memory, your application will crash! » more
Hack of the day: Random sort
February 2, 2011
@dennisosimon and myself are currently prototyping various things using haxe.
Today we wanted to shuffle the elements of an array around. As haxe doesn’t support a shuffle-method for arrays out of the box, we came up with a very simple workaround: » more
The most boring game ever
February 1, 2011
I just discovered the most boring game ever: It’s called Desert Bus. » more
Hack of the day: C++ compile time assertions
January 28, 2011
A very common problem in programming is to calculate prime numbers fast.
There are a lot of interesting ways to solve this problem. I want to show you some solutions without the need for a complex algorithm. This type of solutions can also be applied to a lot of problems that may occur during your daily work. » more
Why Prototyping is so important in game development
January 22, 2011
I usually create a prototype before I start to work on a new game. I also prototype complex features quick and dirty at first. Why is this important? » more