Latest entries
Challenging board games - a none-complete list
Today I'd like to post some of my favorite board games. The order is alphabetically. All games have in common that they require a strategy to win instead of relying on luck.
Abalone
Is a real nice board game composed of two sets of marbles. I got this game long time ago from my parents as a birthday present and now after at least 10 years I still play it. It's fascinating and like the other games mentioned here, it can be found in Android and iPhone App stores. It's one of those games that don't disappear.
Mastermind
To win this game, you have to guess a code your opponent composed out of several differently colored pins. Your game partner grades your guesses and you can reason which pin is at the right position and which color is in the target code.
Go
This ancient board game has its roots in China. What I really like is that it doesn't require a long introduction into the gameplay because of its simple rules. Nevertheless, it's extremely challenging and up to now I don't know any program that can compete with a professional go player.
to be continued...
Last Updated (Sunday, 11 December 2011 23:47)
Backing up your GMail accountAs a computer scientist I never keep backups of my emails because Google takes care of them :) Recently, I read news about mass-email losses at gmail so I thought it would be a good idea to spend some gigabytes of my backup drives for my valuable emails. The tool of my choice was getmail and luckily I found a lot of postings where users reported that they had successfully retrieved all their mails. Like always when you try something yourself, it doesn't work out. I got an error that the selected mailbox wasn't found on the server. After installing Thunderbird and accessing the GMail account (via IMAP) I found out, that in my case the mailbox name is [Gmail]/Alle Nachrichten instead of [Gmail]/All Mail. I tend do switch languages on webpages with logins so I was surprised because I had spanish as selected language. Maybe these directories are created only once? I'll never know but if you run into the same problem, try to access the GMail account via IMAP and note the directory name for "All Mail / Alle Nachrichten". Code snippet that fails on my account: This is my actual config file (located in ~/.getmail/) Add new comment
Last Updated (Thursday, 17 March 2011 23:25) Never delete temporary files during working with OpenOffice... or else you won't be able to save your file. Even if you chose a different filename! A possible workaround is to create a new file and copy & paste your content. Last Updated (Tuesday, 20 July 2010 08:44) How to avoid memory leaks in OpenCVToday I fixed a memory bug in one of my programs. Albeit I always release memory cvReleaseImage after allocating it with cvCreateImage, memory consumption was enormous. Commenting out some of the source code quickly showed the responsible code fragments. Using cvCreateImage and afterwards cvCloneImage made it impossible to release the initially allocated memory. Therefore after some iterations (depending on your main memory) this program will crash. To fix this issue simply replace the cvCloneImage with cvCopy. Bad code: Good code: Last Updated (Thursday, 08 July 2010 21:54) Howtos and tutorials about building a classifier based on Haar-like featuresI want to share my collection of links of how to build a classifier based on haar-like feature using OpenCV. If you know another (open source) implementation please leave me a message! An example where a bowl is detected A wiki describing how to build a haar classifier for robotic vision How to fix cvboost.cpp if you encounter a "bad flag" error during haar training Another example of how to detect a bowl
Last Updated (Thursday, 08 April 2010 14:42) |


