Skip to main content
Corrected typo
Source Link

Just in case anyone wants to know how things are going for SO, here are 2is a very informative graphsgraph.

Just in case anyone wants to know how things are going for SO, here are 2 very informative graphs.

Just in case anyone wants to know how things are going for SO, here is a very informative graph.

Removed the info that was interpreted as cherry picked data
Source Link

And this is posts per day, with data starting from January 2022 (the date ChatGPT was introduced):

enter image description here

This was done with Data Explorer. This was the query I used to generate this:

And this is posts per day, with data starting from January 2022 (the date ChatGPT was introduced):

enter image description here

This was done with Data Explorer. This was the query I used to generate this:

This was done with Data Explorer. This was the query I used to generate this:

Complemented answer
Source Link

Edit on 15/03/2025

Just in case anyone wants to know how things are going for SO, here are 2 very informative graphs.

This is an all time posts per day count:

enter image description here

And this is posts per day, with data starting from January 2022 (the date ChatGPT was introduced):

enter image description here

This was done with Data Explorer. This was the query I used to generate this:

SELECT Cast(CONVERT(Date, CreationDate) as date) PostDate , COUNT(*) AS NumQuestions
FROM Posts
-- questions only and removing weekends
WHERE PostTypeId = 1 AND DATEPART(dw,CreationDate) not in (1, 7) 
GROUP BY CONVERT(Date, CreationDate) 
ORDER BY PostDate Desc;

Edit on 15/03/2025

Just in case anyone wants to know how things are going for SO, here are 2 very informative graphs.

This is an all time posts per day count:

enter image description here

And this is posts per day, with data starting from January 2022 (the date ChatGPT was introduced):

enter image description here

This was done with Data Explorer. This was the query I used to generate this:

SELECT Cast(CONVERT(Date, CreationDate) as date) PostDate , COUNT(*) AS NumQuestions
FROM Posts
-- questions only and removing weekends
WHERE PostTypeId = 1 AND DATEPART(dw,CreationDate) not in (1, 7) 
GROUP BY CONVERT(Date, CreationDate) 
ORDER BY PostDate Desc;
Rollback to Revision 3 - roll back rudeness
Source Link
philipxy
  • 15.2k
  • 4
  • 20
  • 22
Loading
Complemented answer
Source Link
Loading
Improved answer.
Source Link
Loading
Active reading [<en.wiktionary.org/wiki/physical#Adjective> <en.wiktionary.org/wiki/worry#Verb> <en.wiktionary.org/wiki/technology#Noun> <en.wikipedia.org/wiki/Sentence_clause_structure#Run-on_sentences> etc., etc., etc., etc., etc., etc., etc.]. [(its = possessive, it's = "it is" or "it has".]
Source Link
Peter Mortensen
  • 31.4k
  • 4
  • 23
  • 14
Loading
Post Undeleted by Nelson Teixeira
corrected typo
Source Link
Loading
Post Deleted by Nelson Teixeira
Source Link
Loading