BitShares Forum

Main => General Discussion => Topic started by: testz on July 01, 2015, 03:37:51 pm

Title: Congratulation, our forum reach 10 000 users :)
Post by: testz on July 01, 2015, 03:37:51 pm
https://bitsharestalk.org/index.php?action=mlist
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: Ben Mason on July 01, 2015, 04:11:20 pm
Sweeeet!  8)

Great work on the forum moderation everyone.... +5%
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: luckybit on July 01, 2015, 04:40:27 pm
https://bitsharestalk.org/index.php?action=mlist

How many unique users? probably more like 2-3000. A lot of people make multiple accounts.

Also there could be some spambots.

If we rank the users by activity then we could know how many active unique users we have which is an important metric.

Who wants to write a Python app to parse the information to sort users by activity? This way we can get the precise number of active users.
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: Thom on July 01, 2015, 05:02:19 pm
https://bitsharestalk.org/index.php?action=mlist

How many unique users? probably more like 2-3000. A lot of people make multiple accounts.

Also there could be some spambots.

If we rank the users by activity then we could know how many active unique users we have which is an important metric.

Who wants to write a Python app to parse the information to sort users by activity? This way we can get the precise number of active users.

If you sort by posts descending it paints a pretty good picture. I see 30 names per page, mine appears on page 3 and agent86 brings up the rear of that page with 464 posts. So right there you have 90 names, however they aren't all (necessarily) currently active. It would be easy enough tho to run a sql query on the members table to get a ranking or a count of members active within some period. This does it for a listing ranked by posts and last login descending. To get a count you have to add a group by clause and define a time period to qualify last_login in the where clause.

Code: [Select]
SELECT `member_name` , `posts` , `last_login`
FROM smf_members
ORDER BY posts DESC , last_login DESC
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: testz on July 01, 2015, 05:04:33 pm
https://bitsharestalk.org/index.php?action=mlist

How many unique users? probably more like 2-3000. A lot of people make multiple accounts.

Also there could be some spambots.

If we rank the users by activity then we could know how many active unique users we have which is an important metric.

Who wants to write a Python app to parse the information to sort users by activity? This way we can get the precise number of active users.

All stat we have here: https://bitsharestalk.org/index.php?action=stats
I don't want to count anything, just let's forum users know what we pass 10 000 registered users.  :)
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: Ander on July 01, 2015, 05:20:05 pm
Looks like around 4600 of them have at least 1 post, and 1300 have at least 10 posts.
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: Thom on July 01, 2015, 05:26:39 pm
The stats page is actually quite comprehensive.
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: Riverhead on July 01, 2015, 05:58:38 pm

Some serious pruning too :). End of 2014 we had over 24,000 "new" members.
Title: Re: Congratulation, our forum reach 10 000 users :)
Post by: emigalotti on July 14, 2015, 02:54:45 am
Congrats! But you should try to calculate the number of unique users to have a better idea.