Wednesday, May 5, 2010
Saturday, May 1, 2010
Produce and Consume Linked Data with Drupal!
What is RDFa?
Thursday, January 7, 2010
Saturday, December 26, 2009
A Look at Motorola Droid
Motorola Droid seems to get a buzz around on its arrival into the mobile market...
What is it that makes us think it’s a great gizmo and will it overtake the I phone.
Let’s see some quick fact sheet on the Droid.
- Android™ 2.0
- CDMA CDMA 1X 800/1900, EVDO rev. A
- SLIDER
- Wifi
- GPS
- 5 MP camera
- Email sync
- MSOffice and PDF viewers.
- Close integration with Google apps.
I certainly appreciate that Motorola made it available as unlocked though exclusive offers are given by Verizon.
I like it hoping the price would come down much further to get my own Driod…
This site has an good comparison have a look http://www.infoworld.com/d/mobilize/mobile-deathmatch-motorola-droid-vs-iphone-side-side-875¤t=2&last=1#
Wednesday, June 10, 2009
Advantage PostgreSQL XML power
Monday, August 4, 2008
Get Reviewboard running using apache.
ServerName yourservername
DocumentRoot /var/www/html/reviewboard
ErrorDocument 500 /errordocs/500.html
# Serve django pages
PythonPath "['/var/www/html/'] + ['/var/www/html/reviewboard'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
SetHandler mod_python
PythonHandler django.core.handlers.modpython
PythonAutoReload Off
PythonDebug Off
# Serve static media without running it through mod_python (overrides the above)
SetHandler None
# Alias static media requests to filesystem
Alias /media /usr/lib/python2.4/site-packages/django/contrib/admin/media
Alias /css /var/www/html/reviewboard/htdocs/css
Alias /images /var/www/html/reviewboard/htdocs/images
Alias /scripts /var/www/html/reviewboard/htdocs/scripts
Alias /errordocs/ /var/www/html/reviewboard/htdocs/errordocs
The /var/www/html/reviewboard is the path of the my review board installation and
/usr/lib/python2.4/site-packages/django/contrib/admin/media is the path of the django installation.