Monthly Archives: March 2014


Enhanced “Registers” window in Qt Creator

Update 2015-07-19: Gitorious is dead. The repo has been forked in GitHub. Links were updated.   As I said in previous posts, I consider Qt Creator a very good candidate for replacing Visual Studio. I believe it has potential to become the IDE closest to perfection. However, the debugger irritates […]


Reducing code bloat: Unnecessary overloads example

Understanding how your algorithm works and its use cases is very important. It allows you strip code you will never use (or better yet, never code for it). Or may be this could be seen as a case of overengineering. Such is the example of Ogre’s LodStrategy. There are multiple […]