Bitcoin Forum

Other => Meta => Topic started by: brendanjhwu on August 15, 2014, 02:33:56 AM



Title: What is the most activity you can get every 2 weeks?
Post by: brendanjhwu on August 15, 2014, 02:33:56 AM
I want to be junior or member status, and have recently heard that the cap is 14... is this true?


Title: Re: What is the most activity you can get every 2 weeks?
Post by: jjc326 on August 15, 2014, 03:15:22 AM
Look for the answer in the meta section. 14 is usually the max amount but there are some exceptions. Briefly you can get more than 14 activity for two weeks only when you've been around longer and only made a couple posts for a given two week period. Then you can "make up" for those two week periods when you didn't make at least 14 posts. You have to make the 24 posts in 2 weeks to get the full 14 activity points.


Title: Re: What is the most activity you can get every 2 weeks?
Post by: SomethingElse on August 15, 2014, 03:15:43 AM
https://bitcointalk.org/index.php?topic=177133.0


Title: Re: What is the most activity you can get every 2 weeks?
Post by: jaberwock on August 15, 2014, 04:00:19 AM
Illimited., it deppends on how many active times you have, and how few posts do you have.
But your MAXIMUM activity level increases by 14 every two weeks more or less, because 14 days is what do you need to get another activity time.

The formula for activity is:

Quote
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)

Activity is updated every 30 minutes.


See here for a definitive explanation:

https://bitcointalk.org/index.php?topic=495948.0

EDIT: correct formula. Sorry, was tired when made the post


Title: Re: What is the most activity you can get every 2 weeks?
Post by: TheNewAnon135246 on August 15, 2014, 06:01:26 AM
Illimited., it deppends on how many active times you have, and how few posts do you have.
But your MAXIMUM activity level increases by 14 every two weeks more or less, because 14 days is what do you need to get another activity time.

The formula for activity is:
Quote
waittime = 360;
if(activity >= 15)
        waittime = (int)(90 - activity);
if(activity >= 60)
        waittime=(int)(34.7586 - (0.0793103 * activity));
if(activity >= 100)
        waittime = max((int)(14-(activity/50)), 4);



See here for a definitive explanation:

https://bitcointalk.org/index.php?topic=495948.0

Correct me if I'm wrong but I believe that the formula you posted is used to calculate the waiting time between posting messages.


Title: Re: What is the most activity you can get every 2 weeks?
Post by: hilariousandco on August 15, 2014, 06:44:48 AM
You're not wrong, though the thread he linked to has all the info on activity.


Title: Re: What is the most activity you can get every 2 weeks?
Post by: Coef on August 15, 2014, 11:51:12 AM
Illimited., it deppends on how many active times you have, and how few posts do you have.
But your MAXIMUM activity level increases by 14 every two weeks more or less, because 14 days is what do you need to get another activity time.

The formula for activity is:

Quote
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)

Activity is updated every 30 minutes.

Exactly.

The "time" in the formula can at most be increased by 1 every 2 week, but your activity depends on it and your post count.
If you have both your "time" and "posts" at 10 (made a total 10 posts, one in each period), you can make 130 posts right away to get 130 more activity.

The saying that you can at most get 14 activity is true only if your activity is capped by "time" but not "posts".