Archive

Archive for February, 2006

PHP Pagerank

February 20th, 2006 No comments

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.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: PHP

Check whether a Yahoo ID online or not.

February 8th, 2006 No comments

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 http://www.ninethsense.com/im.php?user=ninethsense

VN:F [1.9.18_1163]
Rating: 3.0/5 (2 votes cast)
Categories: Web Design

Ninethsense.com Subdomains reactivated

February 8th, 2006 No comments

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.9.18_1163]
    Rating: 0.0/5 (0 votes cast)
    Categories: General

    Find the Quarter which a month belongs

    February 1st, 2006 No comments

    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.9.18_1163]
    Rating: 5.0/5 (10 votes cast)
    Categories: C#