Archive for February, 2006

PHP Pagerank

I have a script for you to determine the page rank of a website.
Use this: http://www.ninethsense.com/misc/pagerank.php?url=www.ninethsense.com
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Check whether a Yahoo ID online or not.

Do you want to check whether a Yahoo Messenger user online or not?
This is a program set I’ve developed for my website:
http://www.ninethsense.com/im.php?user=<username>
Here is my status
VN:F [1.1.6_502]Rating: 3.0/5 (2 votes cast)

Leave a Comment

Ninethsense.com Subdomains reactivated

huh!… again subdomains of ninethsense.com re-activated.
Available sub-domains are:
* pastebin.ninethsense.com - PasteBin v1.2
* praveen.ninethsense.com - My resume page
* www.blog.ninethsense.com - My Blog
Unfortunately blog.ninethsense.com not working (but www.blog.ninethsense.com works). I will correct that too soon.
/pre>
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Find the Quarter which a month belongs

I saw so many of my friends writing long long functions for finding the Quarter a month belongs. like if (month > 1 && month < = 3) && (month > … etc.
Here is a simple function for that.
private int getQuarter(int m)
{
return ((m - 1) / 3) + 1 ;
}
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment