Category Archive for 'snippets'

MySQLdb as non-compressed egg

 Bash |  copy code |? 1$ unzip MySQL_python-1.2.2-py2.5-linux-i686.egg
http://stackoverflow.com/questions/268025/install-mysqldb-for-python-as-non-compressed-egg

Read Full Post »

service unavailable

django.wsgi

import os, sys
def application(environ, start_response):
status = ‘503 Service Unavailable’
output = ‘Down for maintainance. We will be back soon !’

response_headers = [('Content-type', 'text/plain'),
[...]

Read Full Post »

mod_wsgi

Ubuntu Hardy – mod_wsgi Installation

Ubuntu Hardy – Using mod_wsgi to Serve Your Application

Read Full Post »

syntax highlighter evolved

list of languages supported by worpdress plugin syntax highlighter.
Usage:
pre class=”brush:[code-alias]"

Read Full Post »

adding user to compiler group

adding user to compiler group
$ sudo /usr/sbin/usermod -a -G compiler vinod

Read Full Post »