Skip to content

Instantly share code, notes, and snippets.

@henriqueboaventura
Created August 31, 2011 16:53
Show Gist options
  • Save henriqueboaventura/1184046 to your computer and use it in GitHub Desktop.
Save henriqueboaventura/1184046 to your computer and use it in GitHub Desktop.
Hacker News Algorhythm
<?php
function calculate_score($votes, $item_hour_age, $gravity=1.8) {
return ($votes - 1) / pow(($item_hour_age+2), $gravity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment