The problems I’ve noticed with Stack Overflow are a few and hard for me to narrow down but basically: - google used to return really relevant results for SO, and it stopped doing so at some point a while ago - moderation on SO has gotten progressively more horrible. can’t tell you how many times I found the exact, bizarre question I was asking only to see one comment trying to answer it and then a mod aggressively sh…
The Fall of Stack Overflow
141–150 of 808 posts
Re: The Fall of Stack Overflow
#142Earlier quoted context omitted.
What’s interesting is that Google was known for how hard it was to figure out the Google algorithm. Remember, when people were hired because they knew the secret sauce on how to get the best Google ranking. Google experts? Well, it turns out that the person at Google that was responsible for keeping the algorithm fresh and the search results fresh retired and everything went to shit when they left. Actually, I’m bett…
My bet is revenue went up for google with the second guy, so who is smarter is a matter of perspective.
Re: The Fall of Stack Overflow
#143The problems I’ve noticed with Stack Overflow are a few and hard for me to narrow down but basically: - google used to return really relevant results for SO, and it stopped doing so at some point a while ago - moderation on SO has gotten progressively more horrible. can’t tell you how many times I found the exact, bizarre question I was asking only to see one comment trying to answer it and then a mod aggressively sh…
Maybe they should expire comments or remove them alltogether.
Re: The Fall of Stack Overflow
#144I think the problem is google losing the fight with spammers. It's being a while for me that I have to put "stackoverflow" in the search query to avoid sites with scraped content
That's my guess too; I'm sure Google drives the overwhelming majority of SO traffic. A few years ago, my programming-related queries would hit Stack Overflow as the first or second result. Now it's very frequently spammy garbage in the top 2-3 slots.
Re: The Fall of Stack Overflow
#145Even though StackOverflow in the common use case has been taken over by ChatGPT, I sincerely hope it keeps operating, stays strict (even if it causes collateral) and keeps ban on LLM-generated content. The wheels of this kind of stuff turn slowly, but obviously ChatGPT was trained partly with data only gainable from a healthy StackOverflow-kind of site with users actively asking unique questions and enough people ans…
> Even though StackOverflow in the common use case has been taken over by ChatGPT Claim asserted without evidence.
Re: The Fall of Stack Overflow
#146The problems I’ve noticed with Stack Overflow are a few and hard for me to narrow down but basically: - google used to return really relevant results for SO, and it stopped doing so at some point a while ago - moderation on SO has gotten progressively more horrible. can’t tell you how many times I found the exact, bizarre question I was asking only to see one comment trying to answer it and then a mod aggressively sh…
Re: The Fall of Stack Overflow
#147The most help I ever got from SO for questions not already there, was because of their (perceived) strictness. The process of writing a high-quality question, with a minimally viable example, clearly lined out thought-processes, and other things tried, solved the question for me in most cases without me ever having to post it.
Re: The Fall of Stack Overflow
#148Earlier quoted context omitted.
This is just another anecdote. But here goes. My experience was that there was a long period where your complaint was quite true. I believe that they have heard this complaint enough and have lightened up a little. There are still more and stricter rules than most sites, but the obsession with pruning duplicates seems to have cooled.
And my opinion as someone with high reputation is that letting in silly questions has ruined the site and made me stop using it. SO is not a support forum, it's not your teacher, it's a place for interesting knowledge sharing and if the knowledge is drowned in noise, well it's just noise then.
Stupid people don't realize they are stupid. When they can't understand a question they conclude there's something wrong with the question, not with them. And since they believe the question is silly, they happily close-vote the question.
This way they close questions which require specialized knowledge, experience, or deep understanding of the subject. Precisely the kind of questions I consider interesting to answer.
Sometimes I managed to undelete such questions, but SO made it easy to delete and hard to undelete.
Examples of the questions where I succeeded: https://stackoverflow.com/posts/57064879/revisions https://stackoverflow.com/posts/57323981/revisions https://stackoverflow.com/posts/65025858/revisions
In many more cases I haven't bothered. Sometimes, moderators killed questions so fast that I discovered that while trying to post my answer.
Re: The Fall of Stack Overflow
#149Earlier quoted context omitted.
I have 110% replaced it with ChatGPT. Perhaps SO would still have a chance back in its glory days but there's no comparison to having a direct, specific, instant answer vs having to fight against SEO or moderators for hours.
I always read here ChatGPT is amazing. Can you give a link on how to use it? Every time I tried to google it returns lots of different results and when I tried it it:s not even usable for basic things I want. Is the ChatGPT you:re talking about on their website? Do I have to pay for it?
I currently pay for it but I'm not sure if it makes any difference.
Re: The Fall of Stack Overflow
#150Earlier quoted context omitted.
I have seen similar. I wonder if a new set of people are old enough to use SO now, and their style is different than the original community.
Copilot and ChatGPT have taken a lot away from StackOverflow.
I wanted good ways to deal with pointers to 2D arrays in C, which aren’t hard but you need to remember that [] has precedence over *, so (*pointer)[x][y] is needed to deference. It’s not the hard to mess it up. Ultimately GPT had an OK answer but… it had that immediately without searching and the didn’t have to craft some well written example, it picked up my dirty explanation no problem.
I have the 2D array typedef’ed now, but it’s still confusing to read and hard to work with. I’ll search tomorrow on it.