Month: June 2014


  • Python lacks good tag cloud generators which is simple to use. I needed it in a feature that I was working on. So I wrote a small tag cloud generator based on PIL. The quality of image generated is not very good but it does the job. It is inspired from jQCloud. Most of the logic has…

  • Sometimes when you compile some libraries like opencv, they install the compiled shared libraries in non standard path /usr/local/opencv/lib instead of /usr/lib or /usr/local/lib.  So when you try to compile your code against these libraries, gcc will not be able to locate them or when you are using python bindings, python wont be able to locate them.…