Blog
A little... extension for C++
2010-08-23 18:13:44Loops are used on a daily base by almost every programmer. Especially for-loops occur quite often.
Now, have you ever felt it's quite cumbersome to code something like the following:
for (int i=0; i<10; ++i){
do_something_here();
}
while you just wanted to write
10 times {
do_something_here();
}
and wanted C++ to understand it?
Don't worry, here's the solution. Just include this little header file and everything will work fine.
read onMaking of a winamp plugin
2009-12-26 18:54:09This post shows the basics of writing a very simple plugin for my favourite music player.
read onRadix sort for float numbers
2009-08-18 14:31:59Radix sort is a linear sorting algorithm. However, it is commonly applied to integral values. This article shows, that - under certain circumstances - radix sort can be applied to floating point values as well.
read on