Closed. Yes, this is an interesting question, but there is now over 1200 answers (41 pages). In terms of data (since this is tagged as "research"), there is nothing to gain from having this question remain open (there should be more than any interesting metrics to be retrieved from this many answers). Also, it is becoming a bit of a nuisance being constantly on the StackOverflow home page - as said by Simucal in this questions comments,
"This question was initially interesting but it is such an easy "question/poll" and applicable to ~everyone~ that it is never going to leave the front page. There will always be an onslaught of new users posting data to it. It was a worthwhile experiment but should it be on the front page forever?"
I would appreciate it if you didn't just reopen/rollback this message, at least not without some discussion regarding the above points!
To reiterate - this is an interesting question, but it has run its course! Remember, closing a question doesn't mean it is deleted!
In stackoverflow's 31st podcast, Joel asked Jeff if he knew a 53 year old programmer, or someone that has been programming for more than 25 years.
Well, here is the perfect place to ask such a survey-like question.
I suggest placing a line with two numbers, like that:
your-age-now, age-you-started-coding
so it would be easy to create a .csv file, extract histograms and have a clearer picture on ages and years of experience within the programming community.
edit by Mark Harrison... here's a quick and dirty bash script that will fetch all the data that has been posted in the suggested format. Figure out some interesting stats and post them!
for x in `curl -s http://stackoverflow.com/questions/327973|
egrep span.class..page-numbers|
sed -e 's/.*<span class="page-numbers">//' -e 's/<.*//'|
head -1`;do
curl -s "http://stackoverflow.com/questions/327973?page=$x"
done|
egrep class=.post.text|
sed -e 's/.*<p>//' -e 's/<.*//' -e 's/ //g'|egrep '^[0-9,]+$'|
sort


