twokick wrote:
but as we are all apparently reluctant in that area id recommend a localised google play app distributed via weblink containing the forum but what would i know
I would say that any forum which is open to anyone to join will have a huge shift between the amount of active members and lurkers.Nuggs wrote:^Hm, interesting.
I wonder if other open forums (like UER) have similar stats per capita?
Code: Select all
//Slightly pseudocode to make it easier to understand and mostly C (probably).
function deleteAccount (int postCount, int daysSinceLogon) {
int minPost = 10;
int minDays = 7; //Minimum inactive days before deleting if on < 2 posts.
int daysLeft;
bool result;
if (postCount >= minPost) result = false;
else {
if (postCount < 1) postCount = 1;
//So lurkers won't be deleted and we don't divide by zero.
daysLeft = minDays - ((daysSinceLogon + (postCount - 1))/ postCount);
if (daysLeft < 0) result = true;
}
return result;
}
That's something I'd have zero knowledge in.aydun wrote:It's mySQL code that you'd want here
LOL!Aydun wrote: #lurkersaresupportersofisis