Bitcoin Forum

Other => Meta => Topic started by: jonanon on December 21, 2013, 05:05:04 AM



Title: Explanation of membership status?
Post by: jonanon on December 21, 2013, 05:05:04 AM
I'm not daft but what on earth does this mean:

The activity number is determined in this way:
time = number of two-week periods in which you've posted since your registration
'activity = min(time * 14, posts)'

Time - Well that's obvious.
But activity? Can someone explain exactly what that means, what's 'min' and what does the comma stipulate?

Sorry if it's blatantly obvious!


Title: Re: Explanation of membership status?
Post by: whiskers75 on December 21, 2013, 07:46:59 AM
I'm not daft but what on earth does this mean:

The activity number is determined in this way:
time = number of two-week periods in which you've posted since your registration
'activity = min(time * 14, posts)'

Time - Well that's obvious.
But activity? Can someone explain exactly what that means, what's 'min' and what does the comma stipulate?

Sorry if it's blatantly obvious!

min: http://php.net/min
So your activity is the lower of:
1) time * 14
2) total post count. (if this is ever higher, lol)