Skip to content

Instantly share code, notes, and snippets.

@SamLeach
Created September 28, 2014 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SamLeach/381c03b4703133d0b28e to your computer and use it in GitHub Desktop.
Save SamLeach/381c03b4703133d0b28e to your computer and use it in GitHub Desktop.
StackOverflow Electorate Badge award
private bool AwardElectorateBadge(User user)
{
const int MinimumRequiredQuestionVotes = 600;
return user.Votes.Questions >= MinimumRequiredQuestionVotes &&
user.Votes.Total <= user.Votes.Questions * 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment