My Retro Gamepad Collection

All my gamepads in buying order from left to right. I really like the wired NES controller at the left but wireless is more comfortable. The 4 button 8BitDo NES controller next to the left one ist very nice but Bluetooth has more latency then 2.4GHz controllers. I use this one with my Android devices when traveling. The two SNES 2.4GHz controllers in the middle are in my livingroom connected to a RaspberryPi running Emulationstation for playing on my TV. The two 2.4GHz controllers at the right are in my office connected to my PC. My favorite is the SNES controller with the purple buttons. Best quality are the 8BitDo controllers but they are more expensive. All of these controllers are very nice to play with. I prefer 2.4GHz controllers because they are easy to configure with RetroPie and Emulationstation. Bluetooth on a RaspberryPi sucks in many ways. More latency, more power consumption and also harder to configure.

NES Gamepad USB Wired - NoName. This is 100% the same as the original NES Gamepad from the early 90s. Price: EUR 5.00

NES Gamepad Bluetooth - 8BitDo. The 8BitDo NES Gamepad using Bluetooth with some extra buttons. 4 buttons on the front and two shoulder buttons at the top. Price: EUR 40.00

SNES Gamepad 2.4GHz USB Wireless - NoName. The SNES gamepad exactly like the original except that it is connected wireless using a 2.4GHz USB dongle. Very nice to play with on a RaspberryPi because of the easy configuration. Price: EUR 20.00

SNES Gamepad 2.4GHz USB Wireless - NoName. A very nice 2.4 GHz USB dongle based gamepad exactly like the original SNES gamepad. This is my favorite for playing retro games. Price: EUR 20.00

SEGA Gamepad 2.4GHz USB Wireless - 8BitDo. Very hight quality 2.4GHz USB dongle based SEGA gamepad from 8BitDo. Would be my favorite but for Nintendo games I prefer a pad with less buttons. But this pad is really awesome. So for playing "Sonic the Hedgehog" this is my first choice. Price: EUR 26.00
New Git Mirror Howto added
I finished my Howto on mirroring a self-hosted Git repository to GitHub using a post-receive hook. This makes it easy to use Travis CI or Docker Hub to rebuild code or containers on a Git push even when not using GitHub as primary Git hosting service.
Hope this is useful to you... ;)
My first C++ Experience
This weekend I started to evaluate C++. I tried C++ about 18 years ago and I was confused a lot at that time, not only because of C++ but also because Object-oriented programming was new to me at that time. I never had a need for C++ in the past and now I wanted to try some Qt stuff which needs some knowledge of C++.
I believe I will not develop software in C++ in the near future but I must say it has really a lot of nice features. Why I am writing this Blog post not because I am in love with C++ now but because I want to make you aware of a very nice C++ tutorial found at cplusplus.com. The tutorial is written very clear and has examples for everything. It took me just some few hours to understand how C++ works.
As IDE I used Qt Creator since I tried Qt stuff. I don't like the interface but for going on fast without configuration it was very useful to me. If I would start some C++ project I would prefer Anjuta, Code::Blocks or KDevelop.
Many thanks to the authors of that nice tutorial! Well done... ;)