Recent Posts

Tab completion in Python interpreter

less than 1 minute read

You can achieve auto completion inside Python interpreter by adding the following lines to your .pythonrc file (or the file you have set Python to read on st...

Compiling Windows binaries on Linux

less than 1 minute read

The idea is how to setup your Linux box to compile your code for the Windows platform using MinGW. Depending on your distribution, the installation of the ne...

Quick file sharing using Python

less than 1 minute read

First drop an alias - alias qshare='python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"' into your bash profile. Then whenever you want to share...