Hack of the day: Hello World in Paint
April 16, 2011
What is your favorite IDE/Editor for coding C++? Well, it seems like some programmers prefer Paint over Visual Studio: » more
What is your favorite IDE/Editor for coding C++? Well, it seems like some programmers prefer Paint over Visual Studio: » more
I just stumbled over a small very weird, but funny tetris variant written in Flash. It’s called First Person Tetris. » more
Sprite sheets are very important in game development (and they can also be very useful in web development). With the right tool creating them is a no-brainer. » more
One of the best adventure games of all time is without a doubt Lucas Arts’ Indiana Jones and the Fate of Atlantis. » more
The Bresenham line algorithm avoids trigonometry and uses integer math to calculate the points of a line, circle or ellipse. » more
Sometimes it is useful if you are able to access fields of a struct or class as an array. » more
If you have functions with lots of parameters you should consider using a struct or class and pass the parameters by reference. » more