Welcome to phimuemue

Phimuemue ist viewed best in Firefox.

Enabled Javascript and a sufficient resolution is beneficial.


Recent blog entries:

A little... extension for C++

2010-08-23 18:13:44

Loops 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 on
[ , c++, fun ]

Fibonacci numbers - the other way

2010-07-07 11:27:55

Every programmer comes to the point where he or she must/should/wants to implement a programm for calculating fibonacci numbers. But I think my way is quite a new one.

read on

Just a little thought on sums of a specific form

2010-03-22 14:04:51

I just had a nice thought about simple sums of the form $ \phi(n,p)=\sum_{i=0}^ni^p$.

read on