Skip to content

Instantly share code, notes, and snippets.

@Enet4
Last active December 7, 2021 16:28
Show Gist options
  • Save Enet4/611c696d7fa5d4589482ad86703387dc to your computer and use it in GitHub Desktop.
Save Enet4/611c696d7fa5d4589482ad86703387dc to your computer and use it in GitHub Desktop.
Transcription to YouTube video "The Tyrannical Mods of Stack Overflow"

00:00 - It starts by showing this question and reading it out loud

0:00 - "I have this string. I want to split it on the pipe, but I don't know how. I don't want to split it at the white-space, only at the pipe. Is this possible?"

0:10 - The comments below the question are presented and read out loud:

Did you try Googling anything about the split() method?

Welcome to Stack Overflow! You seem to be asking for someone to write some code for you. Stack Overflow is a question and answer site, not a code-writing service. Please see here to learn how to write effective questions.

0:23 - "Whatever happened to Stack Overflow? How did we end up in a place where we not only get rude and snarky comments but we also get robotic-like responses from real people from valid questions?"

0:36 - "This is not a rare scenario. This has become the norm on Stack Overflow. And I just have one question. How did we end up here?"

0:46 - "My name is Gabe. And today we're going to look at some of the key factors that resulted in the cesspool that is Stack Overflow Q&A today. I'll also explore some approaches that may solve the problems we face, so that developers can just share information without fear of reproach."

(In big letters, "The Egotistical Mods of Stack Overflow")

1:08 - Title: The Stack Overflow Age

1:12 - "Let's go back in time to 2008. NASA's unmanned spacecraft Phoenix becomes the first to land on the northern polar region of Mars, Google Chrome is first released, the stock market plunges across the globe, and a little-known Stack Overflow comes into existence. Stack Overflow was created by Joel Spolsky and Jeff Atwood to address an issue that was apparent in the mid to late 2000s. The issue was that programmers had no way to easily share knowledge about difficult problems. There was Usenet which became obsolete once the World Wide Web became popular, then there was Experts Exchange where developers could share questions and answers. This had a myriad of problems the foremost being it was a paid serve. Joel wanted a free website that could replace Experts Exchange and earn money while doubling as a job listing board. He know somebody would do it eventually, so he waited.... and waited... and he waited... then one day, Jeff Atwood came to him for advice on blogging and Joel simply responded "I've got a better idea instead"."

2:12 - "The Stack Overflow experiment went extraordinarily well. It was based on a gamification system similar to Reddit and other sites where users could upvote good questions and good answers. Once you got a certain amount of reputation you were granted more privileges to the site. These privileges included editing questions, closing questions and reopening questions. This means that poor questions are dealt with quickly and good answers rank higher. This worked great for moderation in the short term. However, it led to the problems we see today.

2:28 - Title: "The Problems"

2:42 - "OK. So let's review real quickly how do users gain privilege? Well, they gain privilege by answering questions. What can you do with the privilege? You can answer questions, you can close questions, you can edit questions and you can reopen questions. OK. Well all that makes sense, well, what happens if you ask and somebody decides to close it? Well, you could reopen it but wait a second... you need the privilege to reopen it, and the privilege you don't have because... you're a new user."

3:10 - "OK well, what if somebody is bullying you in the comments? Well, you flag the comment OK, and then the flagged comment goes to... the moderators."

3:19 - "So let's just take a look at some questions on Stack Overflow right now. There's this user who asks:"

3:24 - A question is show, content verbatim save for the link, redacted in this transcript:

What technology was this website been built with?

I apologise in advance if this question is not allowed here.

Do you know what technology has been used to build this website?

[REDACTED]

Viewing the dev console and source has offered me no clues!

(asked Nov 17 '16 at 18:34)

3:31 - "Now, I think this is a valid question. Programmers build websites using so many different technologies, it's reasonable to ask if anyone knows what a particular site used to build it. Well, the Stack Overflow users, they have a different thought. The first one says:"

Seems like you already knew questions like this are off-topic. -- Nov 17 '16 at 18:36

3:49 - "And then this person says:"

I see quite a bit of information in the dev. tools. -- Nov 17 '16 at 18:36

"The implication being, 'why can you see what the devtools show me?' This next person says:"

Really? The console offered nothing? To me, it yelled out pixijs.com... -- Nov 17 '16 at 18:37

4:06 - "and this user gave a very helpful answer, that it's:"

Magic, naturally. -- Nov 17 '16 at 18:38

"And then finally somebody just says:"

I confirm it's pixijs -- Nov 17 '16 at 18:39

"It's pixijs, that's what they used. And the poor user simply says thanks and then leaves with their tail between their legs."

My apologies :( Thanks for the link -- Nov 17 '16 at 18:39

4:21 - "What's wrong with these people? Why is it so difficult to just say it's pixijs?"

4:27 - "All right so the next question is pretty technical, but an experienced programmer should be able to help out. So this person asked:"

Initialization of a constant reference with a number

What is the meaning of the following line? Why is this allowed as 0 is an r-value and not a variable name? What is the significance of const in this statement?

const int &x = 0;

(asked May 15 '18 at 21:35) https://stackoverflow.com/q/50359481

(Note: as presented in the video, the question was not closed and had a score of -10)

4:41 - "Aand the responses, so... first person says:"

Homework? And what does your C++ textbook have to say on the subject? -- May 15 '18 at 21:36 (now deleted)

"And the next person, very helpfully, says:"

Just read a [good book]. -- May 15 18' at 21:38 (now deleted)

"And then, 'here, this link has a similar question', which may or may not have been helpful at all":

Similar: -- May 15 18' at 21:39

4:56 - "Now, I was actually curious about what this question... was, like what the answer to this was, because I didn't even know what it was. I code in C++ pretty regularly and did not know the meaning of this, I'd never seen this syntax, and didn't even know it was valid code. And this poor guy was downvoted 10 times, why? Because he had the audacity to ask a question. OK? OK.

5:20 - "So, he finally finds an answer and then he posts it to the website. Uh, the answer gets downvoted, so if anybody else is looking for something similar, they can't find it. And I was actually curious about this, like I had never seen this before, and yet if I ever were searching for it I probably wouldn't find it because Google is now gonna rank this low, since it was downvoted.

5:39 - "This next user asks:"

What is e in e.preventDefault()

I am not able to understand the parameter 'e' which is passed to prevent the Default Action in JavaScript

document.getElementById('submit').addEventListener('click', calculate, false);
function calculate(e){
  e.preventDefault():
}

(asked Sep 14 '17 at 9:57) https://stackoverflow.com/q/46216042

5:49 - "Now, to an experienced programmer this is pretty obvious. However, if you don't program and you've never seen this or you're new to programming, this is a completely valid question. The responses:"

e is the event. -- Sep 14 '17 at 9:58

6:02 - "Well, that's actually a pretty tame response but it provides absolutely no information."

(more unmentioned comments are displayed, as seen below)

e represents the event which has a lot of properties. -- Sep 14 '17 at 9:58

You can read about the [click event here] -- Sep 14 '17 at 10:02

When the JavaScript engine calls the callback you provided, it passes an Event object. You gain access to that passed object by giving the function a parameter. You don't have to call it e; you can use any valid variable name you want. Your confusion probably arises from the fact that you provide a function called by JS, instead of the other way around. -- Sep 14 '17 at 10:03

6:07 - "Then this lovely gentleman says:"

"This question shows zero research effort. Aside from the fact you get that answer by literally typing your title into google, did you try anything, like console.log(e) on different element bindings to see what it might be?" -- Sep 14 '17 at 10:04 (now deleted)

6:22 - "What is wrong with these people, they seem to have forgotten that Stack Overflow is a Q&A site! How dare this user ask a question! On a Q&A site!"

6:31 - "This user says:"

I am learning coding c++ in Unreal Engine, I got this syntax I don't really get:

class USphereComponent* ProxSphere;

I think this means create a class, but this class is a pointer?

But the result is just create an object called ProxSphere from an existing class USphereComponent.

Could anyone explain how this syntax actually means and it's usage?

(asked Feb 6 '16 at 17:51) https://stackoverflow.com/questions/35244342

(At the time of writing, the question had received a score inflation also caused by the extra attention from the video (+13, -9))

6:42 - "The responses:"

Please pick up a text book and learn C++ systematically. -- Feb 6 '16 at 17:52 (now deleted)

"Um, I'm sorry? This is a Q&A site."

This is a class pointer declaration, no more, no less. -- Feb 6 '16 at 17:52

6:53 - "Ah, that makes it perfectly clear, how did I not see that before. Just in case you're wondering, that is sarcasm, that is not clear at all! Once again, this is an example of a problem I've never seen before, and I program in C++ almost daily. This user thankfully provided a clear and concise explanation, but why did all those other users feel the need to waste time out of their day to berate someone who had the audacity to ask a question?"

7:23 - "This next question's answer gives us a little window into the moderator's brains. Warning, it's a scary place. This users asks:"

How to answer a closed question?

This question was closed yesterday for obvious reasons. One important function in question which answers were really depending on that wasn't in question. Then after the question was closed, OP left a comment that they had added the function which makes the question very clear.

How can I answer this question? Should I create a chat room?

(asked April 7 '20 at 13:21) Meta https://meta.stackoverflow.com/questions/396379

7:43 - "Now, this is the crux of the problem with Stack Overflow. Closed questions are sort of left in a limbo state. They're closed so they can't be answered. You have to edit it to be able to answer it, but we've already talked about the problems that come with editing it and trying to get your question reopened. Hint hint, it requires reputation, which most people don't have."

8:02 - "Fortunately, a moderator gives us an answer to this question. He says:"

Edit the Question to include the comment, and then vote to reopen it.

"Oh, OK so, uh, you just edit it and then you have to vote to reopen it, so even if the question is fixed, you can't reopen it at all."

8:18 - "And then he puts in bold:"

Do not open a chat room or answer in comments or otherwise work around the closing.

"'Cuz... how dare somebody try to help some other random person on the internet."

8:29 - Title: "Closed Questions"

8:29 - "OK let's change it up a bit, let's look at some questions that were closed, but lots of people disagreed with that closing."

8:36 - "This question says:"

The Use of Multiple JFrames: Good or Bad Practice?

I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide whether or not to use a separate JFrame to add images to the database from the GUI.

I'm just wondering whether it is good practice to use multiple JFrame windows?

(asked Mar 4 '12 at 11:53) https://stackoverflow.com/questions/9554636

"Well, why was this closed? Because... it is opinion based."

8:46 - "Stack Overflow moderators, they hate opinions, OK? And why do they hate opinions? Well... nobody really knows, heheh... and opinions are kinda tricky because you can't tell if a question's subjective or objective, there's kind of a blurry line between those two. And who gets to decide whether it's subjective of objective? Well, the moderators."

9:10 - "And in the responses we can see people say this question has become more valuable than they ever thought it could. Well, I guess the mods just got this one wrong."

9:18 - "Oops! It looks like they got this one wrong too. This question has 557 upvotes! That's a lot on Stack Overflow, where questions typically get only 5 or 6 upvotes. Why was it closed? Well, uh, we don't know. It was closed because a mod decided it needed to be."

Does anyone have benchmarks (code & results) comparing performance of Android apps written in Xamarin C# and Java?

(asked Mar 4 '12 at 11:53) https://stackoverflow.com/questions/17134522

9:34 - "Surely this was just another one-off mistake, right? Wait. The mods messed up again? "

Seeking useful Eclipse Java code templates

(asked Jun 22 '09 at 19:00) https://stackoverflow.com/questions/1028858

"This question was closed because... it... wasn't focused enough. Well, it got 518 upvotes, so clearly some people, at least half a thousand of them, though it was focused enough."

9:52 - "I'm beginning to see a pattern here. 371 upvotes? Well, it's closed. Why? Because it's an opinion."

What is the best way to implement constants in Java?

(asked Sep 15 '08 at 19:39, history locked) https://stackoverflow.com/q/66066

9:56 - "Another opinion? How dare these programmers ask an opinionated question."

Best XML parser for Java?

(asked Dec 17 '08 at 6:52) https://stackoverflow.com/questions/373833

10:01 - "Finally someone was fed up enough and said:

+220 and not constructive. Clearly moderators and users have different perspectives on what is constructive. -- Jun 9 '14 at 6:40

10:10 - "I agree, random user. I completely, wholeheartedly agree."

10:15 - "Another opinion! Man, these stupid programmers can't stop asking subjective questions, can they!?"

C++ code file extension? What is the difference between .cc and .cpp?

(asked Oct 9 '09 at 17:23) https://stackoverflow.com/questions/1545080

10:20 - "These moderators, pff... they have such a difficult life."

10:23 - "This question was closed because, well, we actually don't know why it was closed. Eh eh."

Why have header files and .cpp files?

(asked Dec 2 '08 at 13:17) https://stackoverflow.com/q/333889

10:28 - "Unfocused question. Closed! Nice. Moving on..."

Calling C/C++ from Python?

(asked Sep 28 '08 at 5:34) https://stackoverflow.com/questions/145270

10:32 - "More opinions. Moving on..."

Case-insensitive string comparison in C++

(asked Aug 14 '08 at 20:01) https://stackoverflow.com/q/11635

10:34 - "You know... I just don't like this guy's name. Let's close this one and move on."

Do you (really) write exception safe code?

(asked Dec 5 '09 at 19:48) https://stackoverflow.com/questions/1853243

10:38 - "Another opinion! Oh wait, 3000 people actually wanted to know the answer to this one."

What is the best way to iterate over a dictionary?

(not found via search, must have been deleted)

10:42 - "Maybe... I'm not such a good moderator. Nah, hah, these people just don't know an opinion when it smacks them in the face."

10:54 - Title: "Conclusion"

10:59 - "Unfortunately I have so many more examples of this. If you want to see examples of this just click the link in the description and you can see up to 500 more questions that are just like the ones I just showed you."

The link: https://stackoverflow.com/search?q=closed%3A1+duplicate%3A0

11:10 - "Even though there are only 500 questions there, there's probably thousands of questions that will never see the light of day because of the rigged system that we already talked about that is in place."

11:23 - "Stack Overflow has a problem. I wish it didn't, because it's helped me and so many other programmers over the past decade. However, I think it's reaching its lifetime. It's going to remain a valuable resource for decades to come, but it's no longer gaining value. If you ask programmers who have asked questions on Stack Overflow, I bet you they got their own horror stories to tell. Not only that, but they'll talk about how they now go to Discord servers or Reddit, Quora, or anywhere else except Stack Overflow because, nobody likes to be berated for absolutely no reason. Maybe Stack Overflow will notice this problem. The real problem. And fix this."

12:00 - "Anyways, that is all I have for today. I hope you learned a little bit about the cesspool that is Stack Overflow."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment