UtamaBeritaTutorialBlogTool


Category: Firefox

How to Get Yahoo! Messenger Status using PHP

Posted By: zainal on June, 20 2011

Yahoo Messenger is a popular chat application that has been used by million people around the world. Here I provide simple PHP class you can to put on your website to indicate if you or your friend are online or offline on Yahoo! Messenger.

function ym($id){
$url = ‘http://opi.yahoo.com/online?u=’;
$data = file_get_contents($url . $id);
if (trim(strtolower(strip_tags($data))) != ‘user not specified.’) {
return (strlen($data) == 140) ? ‘online’ : ‘offline’;
} else {
return trim(strip_tags($data));
}
}

To use the class, just echo your yahoo id by using this code:

echo ym("yahoo_id"); //change your yahoo id here


No Comment | Category: Firefox, PHP

Firefox 4.0 - Enable The Status Bar

Posted By: zainal on December, 12 2010

Those Firefox users who are using Firefox 4 beta 7 might have noticed that there is no more status bar as early version. Yes, status bar is now completely eliminated in Firefox 4. Instead, an add-on bar will replace it.

To get status bar back in Firefox 4.0 you can use Status-4-Evar or Link Target Display extension. These extensions will displays link targets in a tooltip at the bottom of the Firefox window.

By the way, R.I.P. status bar. It would be nice to get it back.

Download
Status-4-Evar
Link Target Display


No Comment | Category: Firefox

Save files to folders based on extension (Firefox)

Posted By: zainal on May, 31 2007

Download Sort

Does your desktop getting cluttered everytime you save files within Firefox from the Internet? This extension / add-on is a great way to keep your Desktop or Downloads folder tidy. You can have all your downloaded JPEG’s sorted in a folder, and all your MP3’s sorted in another folder to make it easy to find later. No longer need to choose ??ave file as??to save it to a spesific folder, Download Sort will handle all that for you.

Technorati Tags: , ,


No Comment | Category: Firefox