Using Django with Komodo IDE

I recently started to work on a new Django project and tried use my default IDE: Komodo IDE. Unfortunately it didn’t work out the way i wanted. Code cpmpletion didn’t work just as the import of my app. Here’s how i solved it:

… » Read more

Installing iPython under MacOS X

If you don’t know iPython by now:  check it out

It’s a pretty nice tool if you work with python from the terminal. Especially the easy way to get information about modules and functions. The easiest way to install (especially in a Mac environment) is to use the “alldeps” tarball.

… » Read more

Useful BASH setting: Ignore duplicate commands

There are many settings that make BASH even more usable. As many people doesn’t seem to know this particular parameter i post it here:

HISTCONTROL="ignoredups"

This setting in bashrc or profile makes BASH ignore duplicate commands when searching the history. It’s pretty useful if you had entered the same command several times.