Take the Magic: The Gathering 'What Color Are You?' Quiz.
warning : Don't take such things seriously ;)
Take the Magic: The Gathering 'What Color Are You?' Quiz.
"At one time Windows was the easiest to use. Now it is a lesson in frustration."
"its still the easiest for me, coz i never had a chance to try the rest hehe! but lots of problems i agree"
"for me its always frustration, most things r non-intuitive & when things dont work, its difficult to figure out why, no logs :|"I think this quite goes to show that most of the users are not worried about the technical aspects of the software we use on a day to day basis. They are quite ok working with familiar software and yeah, some issues are there, but they take it in their stride.

From: Vibhu Rishi <rishi.vibhu@gmail.com>Date: Thu, Jun 4, 2009 at 8:06 PMSubject: BN is shutting down.Yes guys, you read it right, we are shutting down. Will keep you all posted on future updates.
Update : 1st may 2011 : Updated the installation for Ubuntu 11.04 and Bugzilla 4.0
$ perl -vIf not installed :
$ sudo apt-get install perl2. MySQL
$ mysql --versionIf not installed :
$ sudo apt-get install mysql-client mysql-server mysql-adminCreate “bugzilla” user with a strong password:
$ sudo useradd -d /home/bugzilla -m bugzilla
$ sudo passwd bugzilla
3. Apache2$ mysql -u root -p
mysql> create database bugzilla;mysql> show databases;mysql> grant all privileges on bugzilla.* to bugzilla@localhost;
+--------------------+
| Database |
+--------------------+
| information_schema |
| bugzilla |
+--------------------+
2 rows in set (0.00 sec)
$ apache2 -vYou can also view in a web browser the default welcome page at http://localhost
$ sudo apt-get install apache24. Bugzilla 3.2.2
$sudo tar -xvf bugzilla-3.2.2.tarMove bugzilla dirrectory to /usr/local/
$ sudo mv /download/bugzilla-3.2.2 /usr/local/Make a symbolic link from /usr/local/bugzilla3.x to /var/www/bugzilla
$ sudo ln -s /usr/local/bugzilla3.x /var/www/bugzilla5. Perl Modules
$:/usr/local/bugzilla-3.2.2$ sudo ./checksetup.pl --check-modulesIf not installed:
$:/usr/local/bugzilla-3.2.2$ sudo perl -MCPAN -e installEdit the ‘localconfig’ file
$:/usr/local/bugzilla-3.2.2$ sudo gedit localconfig
# The name of the database
$db_name = 'bugzilla';
# Who we connect to the database as.
$db_user = 'bugzilla';
# Enter your database password here.
$db_pass = 'bugzilla@123';
$:/usr/local/bugzilla-3.2.2$ sudo ./checksetup.pl6. Configure Apache2 for Bugzilla
$sudo gedit /etc/apache2/apache2.conf
*Note : Since the brackets give problem with blogger, added pic for the relevant code changes. All the non commented lines are what you have to type in.
$ sudo useradd -d /home/apache2 -m apache2Edit /etc/apache2/envvars to add. This is how my config looks
$ sudo passwd apache2
export APACHE_RUN_USER=apache2Note : The default user and group is www-data. I don't really know how to setup the export to use both the www-data and the apache2 user simultaneously. If anyone can help with the syntax, it will be great !
export APACHE_RUN_GROUP=apache2
$webservergroup = ‘apache2′;Rerun checksetup.pl
$:/usr/local/bugzilla-3.2.2$ sudo ./checksetup.plThis will ask you to setup your administrator for bugzilla. Go ahead and enter the password and email ids.
$ sudo /etc/init.d/apache2 restart

import twitter
api = twitter.Api(username='username', password ='password')
statuses = api.GetFriendsTimeline()
for s in statuses:
print "%s \t: %s" % (s.user.name , s.text)
