• How many users are there on Stackoverflow?
  • How long has this site been around?
  • What computer programming language is stackoverflow made with?
link|improve this question
You will get a proper answer on meta.stackoverflow.com – user130949 Aug 21 '09 at 5:37
2  
Built with a dupe: meta.stackoverflow.com/questions/10369/… – random Aug 21 '09 at 5:41
feedback

migrated from stackoverflow.com Aug 21 '09 at 5:37

This question came from our site for professional and enthusiast programmers.

8 Answers

It's been around for more than a year. It has ~86000 users.

SO has been implemented in ASP.NET MVC 1.0, among other things.

link|improve this answer
2  
And remember ~86,000 is just the number of registered users — you can even ask questions on SO without registering. – Jonik Aug 24 '09 at 4:28
I wouldn't be so sure about that. By typing in the search box, you can find unregistered users, I just verified that. But I couldn't find any unregistered accounts by browsing through the pages. (And that 86,000 was obtained from the number of pages.) – Jonik Aug 24 '09 at 15:28
Jonik: Oh, you mean search listing is different from the normal one? If that's the case, then you're right. – Mehrdad Aug 24 '09 at 15:44
Jonik: Just checked. You're right. I didn't notice the listing didn't show unregistered users. – Mehrdad Aug 24 '09 at 15:47
feedback

In addition to Mehrdad's answer, the technology behind SO is found here (And I think the exact user count is 85726 users).

link|improve this answer
4  
If you limit it to users with 100 rep or more, it's just under 21000 – Joel Coehoorn Aug 21 '09 at 13:17
Wow, MoochOverflow... – Jonathan Sampson Aug 21 '09 at 18:34
1  
I thought Jonathan was referring to Joel's observation that 75% of users have <100 rep, and are thus "mooching". I don't really agree (and 90% of traffic is anonymous from google anyway, right?). – John Fouhy Aug 22 '09 at 3:50
feedback

Obviously, the number of users can somewhat be calculated: click on the users tab, go to the last page, calculate (#pages * 35) - free places on the last page. But there are people - I remember a question here where somebody admitted to have 8 unique accounts, just to have a clean record with no downvotes - that make multiple accounts. see here and here too. And one does not need an account.

So no way of telling.

If you means views or distinct views in a certain period of time, see here at quantcast.

link|improve this answer
1  
Just FYI, it's 35 (5x7) users per page, not 28. – cletus Aug 21 '09 at 6:19
feedback

If you are interested in the number of people who have actively used Stack Overflow, the badges provide a good metric.

These users have participated in Stack Overflow in some substantive way.

  • Student - 38699 (Asked a question)
  • Teacher - 39191 (Answered a question)
  • Supporter - 32633 (First up vote)

You can see that the three badges track pretty closely. It seems like a good measure of how many people have actively participated in Stack Overflow in some way.

This doesn't really cover the use case where someone was looking for an answer on Google and found it on Stack Overflow. User counts (85726) would be more inclusive of all people who have come to Stack Overflow.

link|improve this answer
Good points, but I disagree with last sentence. While there are 85,000+ registered users, the site gets millions of unique visitors per month. (See e.g readwriteweb.com/archives/stack_overflow_hits_3m_uniques.php) – Jonik Aug 24 '09 at 4:24
feedback

According to this

alt text

there are:

4,026,489 developers are waiting for you *

link|improve this answer
feedback

There are 58830 users with reputation greater than 10 on StackOverflow. These users have been upvoted at least once, and are considered contributors the the site.

select count(id) from users where reputation > 10

You can run this query yourself here to try it with different numbers.

Many people anonymously browse this site every day though.

link|improve this answer
Up to 58830 now – 0A0D Dec 10 '09 at 0:25
feedback

Update:

There are now 114,119 users, with 63,216 users having 10 or more reputation.

There is exactly one user with exactly 10 reputation.

It is notable that about 1/2 of the SO population is under 10 reputation both now and when this question was first posted. Keep in mind that SO continuously removes inactive accounts from the system, so even those under 10 rep people are not simply old accounts started over a year ago.

link|improve this answer
How did you get 63k? I used this query on the sandbox and got 58,330: select count(id) from users where reputation > 10 – 0A0D Dec 10 '09 at 0:29
That one is old by several days. You can readily get the count by going to the user page where the transition occurs. It changed from earlier today, but right now it's at stackoverflow.com/users?page=1807 - That's 1806 pages of 35 users each plus the 10 and above on that page itself = 63233 right now. – Adam Davis Dec 10 '09 at 3:07
Relatively easy to find any transition (10k, 3k, 2k, etc) using a manual binary search on the users page - right now with under 4k pages it takes 12 steps or less. – Adam Davis Dec 10 '09 at 3:09
feedback

42

link|improve this answer
jejeje nice answer... but – OscarRyz Aug 22 '09 at 3:30
feedback

You must log in to answer this question.