Source Code for Me (s-c.me)

Allows you to paste souce code to blogs! Adapted for Twitter! Here is Search Form in case you missed your code.
Code:
Selected Language:
Show Linenumbers:
Short link for Twitter:
HTML:

HTML view:

Copy Source | Copy HTML
function calc_account_rate($followers_count, $friends_count, $statuses_count, $listed_count)
{
 
    if ($friends_count<500)
        $result = round($statuses_count* 0.001 + $followers_count/40 + $listed_count);
    else
        $result = round($statuses_count* 0.001 - $friends_count/150 + $listed_count/1.5);
 
    return $result< 0? 0:$result;
}

Based on Manoli.Net's CodeFormatter. Made by Topbot (c) 2008-2010
Some API could be found at http://s-c.me/WS/HighLight.asmx