Thursday, May 30, 2013

Update Django in Nitrous.io

Nitrous.io Django boxes doesn't have the latest version of Django. To upgrade it use the following command:
pip install Django --upgrade

SQLite3 in PHP

As you may probably know even the last version of PHP doesn't support SQLite3 but only version 2.

Tuesday, May 28, 2013

Allow javascript to load files from disk

By default Google Chrome doesn't allow to load local files with Javsacript. To get rid of this, just run chrome with --allow-file-access-from-files option flag.
chrome.exe --allow-file-access-from-files

Saturday, May 25, 2013

Disable focus on tooltip with jQuery Ui

$(document).tooltip().off("focusin focusout");