Update: I decided to rerun the script since we now have about twice as many users. The distribution trend is much more pronounced in this version. Though the following text is from the original version of this post, the data and graph are new.
Since I was curious about the average age of the users here, I decided to write a script to answer the question in the vein of Grant's profile scraper. The script downloaded the profile page of every user and cataloged the age for each person that chose to provide it. The script then printed out the aggregate data.
#!/usr/bin/perl
use strict;
use warnings;
use LWP::Simple;
my $MAX_USER_ID = 15_000;
my %Ages;
$| = 1; # print immediately
print "Fetching...";
for my $uid (1..$MAX_USER_ID)
{
my $page = get "http://stackoverflow.com/users/$uid";
next unless $page;
$Ages{$1}++ if $page =~ m/Age\s*<\/td>\s*<td>\s*(\d+)\s*<\/td>/;
print "$uid..." if $uid % 10 == 0;
}
print "\nDone.\n";
for my $age (sort keys %Ages)
{
print "$age: $Ages{$age}\n";
}
The output is as follows:
8: 13
9: 3
11: 3
12: 1
15: 2
16: 14
17: 8
18: 21
19: 49
20: 58
21: 91
22: 118
23: 173
24: 221
25: 255
26: 284
27: 276
28: 289
29: 225
30: 224
31: 212
32: 167
33: 164
34: 142
35: 112
36: 123
37: 111
38: 121
39: 78
40: 65
41: 60
42: 36
43: 30
44: 23
45: 30
46: 20
47: 12
48: 9
49: 12
50: 8
51: 10
52: 3
53: 2
54: 4
55: 3
56: 1
58: 4
60: 1
61: 3
63: 1
66: 1
68: 1
88: 12
The average age of a StackOverflow user is 30.1, assuming everyone is honest in their profile (though we do have more 8-year-olds than I would have expected). Finally, here is a graph showing the distribution more clearly. That outlier to the right are our eight 88-year-olds still going strong. If we remove the 8 and 88-year-olds from the average, it drops us down by 0.1 years to 30.0. (Actually, it's a drop of 0.104)

