Friday, September 30, 2011

Web applications in Python without Javascript, CSS, HTML

Download: rctk_zk.tar.gz If would like to know how to write rich web applications in pure Python without any knowledge of Javascript, CSS, HTML or Ajax then continue reading this post. Take a look at the screen-shot. It is the demo application of a framework called RCTK – which makes the development of complex web applications as easy...

Friday, September 02, 2011

A case for replacing polymorphism with switch-statements

Download: switch_benchmark.tar.gz In this post I benchmark and compare virtual function calls to functionally equivalent if-else and switch statements. In object oriented design switch statements are substituted by polymorphism. The reason is to make the code more compact, readable and maintainable. However, the benchmark indicates that there...