Showing posts with label google. Show all posts
Showing posts with label google. Show all posts

Friday, February 19, 2010

Ubuntu's New Yahoo Search Engine - Is It Up To The Task?

Anybody who is interested should know by now that Ubuntu is switching from Google to Yahoo as its default search engine. Of course this change can be reverted very easily for those who prefer Google. However, it is the n00bs that will be most affected by the change as they will most probably just continue using the default search engine in blissful ignorance.



From my experience in forums, the biggest problem I see with new users is that they do not know how/what to search for when faced with a problem. And this is where the search engine used becomes vital to quickly finding a possible answer. What is the point in scolding new users for not searching before asking if the default search engine does not bring the most relevant information to them. More so when the user searches for vague or inaccurate terms.



So, I decided to put the two search engines to the test. I did a few searches on both engines using terms that I think new users would use and for problems new users would likely face. The 10 links below will run the same search in both engines. You be the judge of how good the results are and how fast they were provided. Here we go!





What is your conclusion? Which engine provided the better results? Does the search engine really make a difference? What other searches would a new user run? Leave a comment below!

Tuesday, December 22, 2009

Merry Christmas!




Hope everyone out there has a blessed Christmas!


Music: Mishal Moore - Merry, Merry, Merry Christmas

Text from here.

Images found using Google.

Video compiled using only free and open source software (Kdenlive, The GIMP, KDE 4 and of course Linux!)

Poor art and video directing by yours truly :)

No copyright infringement intended.


Here's another Google Wave invite!

Friday, October 02, 2009

Tidbit: Using Yahoo as your default email client

I just wrote a post on using GMail as your default email client and I thought there should be an easy way to do this for Yahoo Mail as well. And of course there is! Create a bash script with the following code and use it just as you would the gmailer script from the other post.



#!/bin/bash

getopen () {

if [ -x /usr/bin/xdg-open ]
then
export opener="/usr/bin/xdg-open"
elif [ -x /usr/bin/kde-open ]
then
export opener="/usr/bin/kde-open"
elif [ -x /usr/bin/gnome-open ]
then
export opener="/usr/bin/gnome-open"
else
echo "Requires xdg-open, kde-open or gnome-open"
exit 1
fi
}

getemail () {

export address=`echo $1 | sed 's/mailto://'`
export targeturl="http://compose.mail.yahoo.com/?To=$address"
}

getopen
getemail $1
exec $opener $targeturl
exit 0

Tidbit: Using GMail as your default email client

I mostly use GMail for email purposes and so it makes sense to make it my default email client. There are many ways to do this on the web. However, most are desktop environment or browser specific. It is nice to have things behave similarly across desktop environments or even installations. So I threw together a quick bash script that would use the default browser that is configured for your system. Here it is.



#!/bin/bash

getopen () {

if [ -x /usr/bin/xdg-open ]
then
export opener="/usr/bin/xdg-open"
elif [ -x /usr/bin/kde-open ]
then
export opener="/usr/bin/kde-open"
elif [ -x /usr/bin/gnome-open ]
then
export opener="/usr/bin/gnome-open"
else
echo "Requires xdg-open, kde-open or gnome-open"
exit 1
fi
}

getemail () {

export address=`echo $1 | sed 's/mailto://'`
export targeturl="https://mail.google.com/mail/?view=cm&fs=1&tf=1&source=mailto&to=$address"
}

getopen
getemail $1
exec $opener $targeturl
exit 0


Save this in a file. I called mine gmailer and saved it to ~/bin. Make sure it is executable and that your system is configured to search ~/bin for executable commands. Now configure your system to open mailto: links with gmailer. That would be gmailer %s in Gnome/XFCE and gmailer %t in KDE4. Cool thing is that gmailer emailaddress@isp.com run from command line or the Ctr+F2 launcher works just as well!


There is a limitation to it. If you are not already logged into GMail or your browser does not automatically log you in, it will not work. It surely can be better but it works just fine for me right now. Obviously, suggestions are most welcome! Enjoy!



[EDIT] Want to do this with Yahoo Mail instead? Click here.

Sunday, June 08, 2008

The Power of Nightmares

I found this very interesting documentary by Adam Curtis, first aired on BBC in 2004. It analyzes and follows the two sides that seem to dictate the mood of politics of late, internationally and sometimes locally. They are the neo-conservatives and the radical Islamists. You will have to set aside some time to watch these 3 one-hour episodes, but it is well worth it.



Baby Its Cold Outside





The Phantom Victory





The Shadows in the Cave





Wednesday, August 09, 2006

Who's a failure?

Hi everybody!

I haven't posted in quite a while. I've been meaning to but haven't had much spare time. I came across something that is hilarious! Follow these instructions for a good laugh. ;-)

  1. Go to www.google.com
  2. In the search field type 'failure'
  3. Click on the 'I'm feeling lucky' button...
And voila!

Till next time... take care!