This formula for updating of activity is what am currently finding very difficult to understand. Is it the same thing as saying that for those that have more numbers post than activity every 2 weeks, they will receive some activity?
time = number of two-week periods in which you've posted since your registration
I registered today and I posted 5 posts for example, my time is 1 because I only posted in one activity period. Posting in the next activity will make my time equals to 2 and so on.
Now the calculation of activity:
activity = min(time * 14, posts)
activity = min(1 * 14, 5)
activity = min(14, 5)
activity = 5
I replaced the values with the example above to give help you understand. If my activity period is 1 (multiplied by 14 gives us 14) and posts count is 5, the function
min will take the minimum of these two values which means my activity will equal to 5.
In other words, your activity cannot be higher then your posts count.