Bitcoin Forum
May 04, 2024, 02:49:43 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Recent Post Timer Reduced?  (Read 510 times)
CoinHopper (OP)
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


Two heads are better than one.


View Profile
November 02, 2015, 12:18:22 PM
 #1

Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?
1714790983
Hero Member
*
Offline Offline

Posts: 1714790983

View Profile Personal Message (Offline)

Ignore
1714790983
Reply with quote  #2

1714790983
Report to moderator
Transactions must be included in a block to be properly completed. When you send a transaction, it is broadcast to miners. Miners can then optionally include it in their next blocks. Miners will be more inclined to include your transaction if it has a higher transaction fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
smith coins
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500



View Profile
November 02, 2015, 12:25:39 PM
 #2

Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
Yerm
Full Member
***
Offline Offline

Activity: 126
Merit: 100



View Profile
November 02, 2015, 12:33:22 PM
 #3

Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
that seems like a pretty big jump doesnt it? from 360 to 62 in 2 activity periods. what happens if your activity goes over 90?
mexxer-2
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1003


4 Mana 7/7


View Profile
November 02, 2015, 12:36:31 PM
 #4

Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
that seems like a pretty big jump doesnt it? from 360 to 62 in 2 activity periods. what happens if your activity goes over 90?
What are the time limits on posting and the levels??
I know 360 seconds are for new people like me, but was wondering if there was break down somewhere on this.

Code:
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);
smith coins
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500



View Profile
November 02, 2015, 12:40:22 PM
 #5

Hey guys, I've recently been wondering about something. Just last week, I could post, but not post again from the same IP for 6 minutes. Now, it's only 62 seconds, even though i'm still a newbie!

Was there a recent change I havent been notified of?

Well if your activity is less than 15 activity points,
Then you should wait 360 seconds or 6 minutes
But if your activity is larger than 15 (in your case 28) then you should wait (90 - activity) seconds.
that seems like a pretty big jump doesnt it? from 360 to 62 in 2 activity periods. what happens if your activity goes over 90?

From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1499


No I dont escrow anymore.


View Profile WWW
November 02, 2015, 01:22:22 PM
 #6

-snip-
From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley

You will always have a limit of 4 seconds.

Im not really here, its just your imagination.
smith coins
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500



View Profile
November 02, 2015, 01:26:06 PM
 #7

-snip-
From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley

You will always have a limit of 4 seconds.

Correct, the maximum of 0 and 4 is 4.
Forgot to check the last part of formula while i calculated it.
First i was checking how long do legendary members needs to wait but seems that all of them have to wait 4 seconds.
lihuajkl
Legendary
*
Offline Offline

Activity: 1596
Merit: 1000


View Profile
November 02, 2015, 02:20:49 PM
 #8

-snip-
From an calculation that i just made when you have 700 activity points you wait 0 seconds.
This comes from this formula: if(activity >= 100) waittime = max((int)(14-(activity/50)), 4);
I think now you should not worry about the wait time Smiley

You will always have a limit of 4 seconds.

Correct, the maximum of 0 and 4 is 4.
Forgot to check the last part of formula while i calculated it.
First i was checking how long do legendary members needs to wait but seems that all of them have to wait 4 seconds.
4 second limits probably are to avoid the posting bot. But for real case, the time we need to read a thread and its comments will take more than 4 seconds even a few minutes. It could be ignored.
smith coins
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500



View Profile
November 02, 2015, 03:10:23 PM
 #9

4 second limits probably are to avoid the posting bot. But for real case, the time we need to read a thread and its comments will take more than 4 seconds even a few minutes. It could be ignored.

I doubt anyone who is hero or probably Legendary member,
would risk his account to make bot posting lots of spam,
4 seconds are enough normally, but if someone wants to spam this isn't enough.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!