Showing posts with label Yahoo. Show all posts
Showing posts with label Yahoo. 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!

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