I really do not understand how activity is calclualted. Can someone explain it more?
activity = min(time * 14, posts)
I assume
activity = min? (no idea what what min stands for) (time (which I assume is in days?) * # (which is the number of posts?)
"min(x,y)" is developer language for "the minimum of x and y (whatever has the lowest value)".
So then activity is calculated by multiplying 14 by either my post count or number of days registered (which ever is lowest?)