Skip to content

Instantly share code, notes, and snippets.

@jrivero
Last active February 21, 2024 11:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrivero/621157 to your computer and use it in GitHub Desktop.
Save jrivero/621157 to your computer and use it in GitHub Desktop.
Hacker News ranking algorithm
# From http://amix.dk/blog/post/19574
def 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