Modify search engine shortcuts in Google Chrome
Google Chrome automatically detects and adds search engines to to the list of search engines that you can access from the Chrome address bar whenever you do searches on search engines like Google. It keeps a record of the site name, a keyword derived from the site url, and the search url. For example, if [...]
Firefox – Add a keyword to this search
I just realized that I haven’t shared this nifty Firefox feature to some of the people I know and it surprises me sometimes that they do not know this yet, so let me just talk about it briefly. Add a keyword to this search is one of the options that appear when you right click [...]
update.locale file doesn’t exist in either the XCurProcD or GreD directories
I have been getting this error from my Firebug’s console: [Exception... "update.locale file doesn't exist in either the XCurProcD or GreD directories" nsresult: "0x80520012 (NS_ERROR_FILE_NOT_FOUND)" location: "JS frame :: file:///usr/lib64/xulrunner-1.9.1/components/nsUpdateService.js :: getLocale :: line 608" data: no] file:///usr/lib64/xulrunner-1.9.1/components/nsUpdateService.js Line 608 At first I thought it was some mysterious bug from one of my projects, but [...]
UnacceptableVersionError: django 1.1 was requested, but 1.2.1.final.0 is already in use
The Django version I have in my machine is 1.2.1, while one of my apps running on Google App Engine utilizes use_library to use Django 1.1. Apparently, Django versions later than 1.1 is not included in the Google App Engine SDK. So everytime I try to access my app on my dev machine, I get [...]
How to find Django version
There are cases when you would want to know the version of Django that is being used in your Python installation. To do that, go to your Python console and execute the following commands: >>> import django >>> django.VERSION In my machine, it showed the following: (1, 2, 1, ‘final’, 0)
