Help for this page

Select Code to Download


  1. or download this
        sub weight {
           my $age = shift;
           return $age / $FACTOR;
        }
    
  2. or download this
         $score = $item->totalVotes() * weight($item->age());
    
  3. or download this
        $score = 0;
        foreach $vote ($item->votes()) {
           $score += $vote->value() 
                     * weight($item->age() - $vote->age());
        }