Tell HN: How to find karma thresholds in the HN source code
https://news.ycombinator.com/item?id=853964Sure, you could ask pg to tell you what the karma thresholds are, but the fact of the matter is he's already told you -- it's just embedded in a sparsely commented, 2600-line file that is only distributed as part of the ARC language package.
Behold! The three-line recipe that will enlighten you in several ways:
wget http://ycombinator.com/arc/arc3.1.tar
tar xf arc3.1.tar
grep -n -E "\(= [^-]+-threshold" arc3.1/news.arc
As of 2009/09/30:1) topcolor threshold is 250
2) downvote threshold is 200
3) flag threshold is 30
As an exercise for the reader, figure out what the comment and poll thresholds are.
Bonus points: what is the mysterious leader threshold?