Skip to content

Instantly share code, notes, and snippets.

@jacobh
Created March 5, 2012 01:50
Show Gist options
  • Save jacobh/1975938 to your computer and use it in GitHub Desktop.
Save jacobh/1975938 to your computer and use it in GitHub Desktop.
karma cost
def karma_cost(self):
n = self.karma_transactions.filter(
created_ts>=datetime.utcnow() - timedelta(days=3)
).count()
return pow((n * 5), 1.5) + 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment