Post
Topic
Board Meta
Re: Don't understand where my post went?
by
DannyElfman
on 07/08/2014, 00:48:07 UTC
It was probably deleted because of Spam protection. Try making some more posts in other threads, then you don't get caught by spam detection Wink

I only came here to give something to the community, totally free haha.

I'll try post it again.

Yeah this can happen. But that needs to be in place to avoid flood of spam by bots!
I've tried posting it on several different forums, with different variations.

keep getting error:
Code:
An Error Has Occurred!
The last posting from your IP was less than 360 seconds ago. Please try again later.

I totally give in.

It was an address verification system API I coded myself.


Newbies with less than 15 activity need to wait 360 between posts. Search for explanation in the stickies in this section and in the beginners and help section, or take a closer look at the rest of meta forum, because every page there is at least one topic about the 360s time limit

All details can be found here:

https://bitcointalk.org/index.php?topic=177133.msg5106206#msg5106206

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