Dive into the archives.
- Install Chrome/Chromium in Ubuntu – quick & easy
How to install Chromium daily builds on Ubuntu: UPDATE: Chrome on Linux is not officialy supported. sudo echo “deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu jaunty main” >>/etc/apt/sources.list sudo echo “deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu jaunty main” >>/etc/apt/sources.list sudo apt-key adv –recv-keys –keyserver keyserver.ubuntu.com 4E5E17B5 sudo apt-get update sudo apt-get install chromium-browser
- Reusable django.wsgi and settings.py with Apache
Reusable solution for deploying Django in Apache Django plays with Apache very well. Using mod_wsgi is recommended to host Django apps in Apache and by my (short) experience it works fine. There are few things I did not like on all the deployment docs/manuals and it was the way how they handle the paths to [...]
- Secrets of log4net – TelnetAppender
I just love log4net. It’s good example of how simple, well-designed tools can be powerful and extensible. I was browsing the source code for some reason and found something interesting that immediately forced me to ask myself: Does it really works how it looks like ?!? And the answer was: It does ! Imagine you [...]
- Digg Style Pagination In Django Revisited Once Again
Once is never enough ! I was looking for easy, reusable solution for pagination in Django. I used ‘digg-style’ pagination in past on non-django projects and was quite happy with it. Well, I found the django implementation on Django Aware blog and it looked like exactly what I was trying to accomplish. Even the implementation [...]
- SEO friendly URLs using Slugify in Java
Everybody loves nice URLs, right ? Compare this: www.bestkittenstuff.com/product/?productId=1 To this: www.bestkittenstuff.com/product/luxury-cheeseburger Now, the problem is how to transform string with product name: ‘Luxury Cheesburger’ to this: ‘luxury-cheesburger’ It may looks very simple, but think of special characters, diacritic and it starts to be fun. If you use Java for your super-duper application, check out [...]

