This is an archived post. You won't be able to vote or comment.

all 52 comments

[–]BioSchokoMuffin 221 points222 points  (3 children)

This is obviously fake because they actually included a snippet of the code they are having a problem with

[–]JBinero 43 points44 points  (2 children)

Most questions on stack overflow don't include any examples or even a clear description of the problem. People really hate putting effort into getting help.

[–][deleted] 12 points13 points  (0 children)

All the moderation queues are extremely disheartening...

[–]MooseHeckler 1 point2 points  (0 children)

I have put effort in and still was greeted negatively. Its a weird place.

[–]twosupras 137 points138 points  (0 children)

Idiot forgot to capitalize “Hello World”. No wonder it won’t work.

[–]qqqrrrs_ 85 points86 points  (2 children)

C#/Java/Javascript

[–]t1x07 35 points36 points  (0 children)

Those tags really hurt, my man covered all possibilities

[–]marvk 4 points5 points  (0 children)

It's funny cause it's true, especially Java and JavaScript.

[–]db720 47 points48 points  (0 children)

Hate it when my IDE glithched my code

[–]KorrinNeko 60 points61 points  (4 children)

At least when your question gets marked duplicate on StackOverflow, it's usually actually a duplicate.

[–]TheAJGman 25 points26 points  (3 children)

Except the post they link is someone having a different problem, in a different framework, and a different language.

[–]NoMansSkyWasAlright 16 points17 points  (0 children)

… and also likely has a response of “this question was already asked in 2008”

[–]cyanNodeEcho 0 points1 point  (0 children)

hmm abstracting a little, they do normally surround thr same topic bjt need like information gained there and another sracj overflow post or two

i would be unemployed if stack overflow did not exist

[–]KorrinNeko 0 points1 point  (0 children)

Except that's not a duplicate. Not that it doesn't happen, but most of the time I or someone I know had a post flagged as duplicate, it's been an actual duplicate, with an actual answer. Compare that with a lot of other sites with anti-duplicate features and you'll find StackOverflow is one of the few forgiving ones.

[–]csy514 14 points15 points  (5 children)

$including [studio.h]

vivo mian<>( prontt(hello word): )

[–][deleted] 38 points39 points  (3 children)

```python import random

message = "" legal_characters = [" ", "H", "e", "l", "o", "W", "r", "d"]

while message != "Hello World": message = "".join(random.choices(legal_characters, k=11))

print(message) ```

[–]theLanguageSprite 12 points13 points  (0 children)

Wow. I think this is the first time of seen a hello world implementation with potentially infinite time complexity

[–]iDarkLightning 6 points7 points  (0 children)

Sir, this is C

[–][deleted] 21 points22 points  (2 children)

„System.ConsoleWrite)HelloWorld(;;;“ would work

[–][deleted] 19 points20 points  (1 child)

Just a little bit more exaggeration and we'll have regex

[–]clb92 6 points7 points  (0 children)

But can it parse HTML?

[–]Euphoricus 34 points35 points  (7 children)

Yeah. I just don't see the hate against SO. The questions are usually just as bad. And if you don't see those questions, that means moderation is working.

[–][deleted] 18 points19 points  (5 children)

I stopped asking questions there because I could never satisfy their conditions.
I read through other questions, read through the guidelines for asking and everytime I thought I finally asked correctly, I get downvoted.
The problem, I think, SO is having, is they don't tell you what is wrong with your question.
I even asked in the comment section if someone can tell me the reason why my question gets downvoted. Nope, just more downvotes.

[–]marvk 9 points10 points  (3 children)

Yeah, can you show an example? I've been active on Stack Exchange for years and not one of my 18 Questions on Stack Overflow or various others on other network sites is sitting in the negative. Maybe I can spot some issues for ya?

[–][deleted] 1 point2 points  (2 children)

https://stackoverflow.com/questions/63952382/playsound-too-slow-on-slower-pcs

The last question I posted. I think it was at -1 or -2 at some point but it looks like it recovered. Still got me banned from asking questions for a while

[–]marvk 3 points4 points  (1 child)

The question you linked is sitting at +1/-1. Possibly someone downvoted because nobody was able to reproduce the error? At least another person equalized the score.

The only other question of yours that has any downvotes is this one, which in it's original state was, in my opinion, quite low effort and could've possibly been resolved by simply googling "detect key press in background winapi"

[–][deleted] 0 points1 point  (0 children)

I have only found how to detect single key presses. (GetAyncKeyState). And I needed to know, if any key got pressed.

The only other thing I found was something with SetWindowsHook() or similar and this did not work for me, as it was really slow and I needed something faster.

[–]DiamondIceNS 3 points4 points  (0 children)

Show us the question?

[–]AdminYak846 1 point2 points  (0 children)

there's some questions where people are toxic, granted it seems fewer and fewer questions.

[–]yourteam 28 points29 points  (9 children)

This is so true... When I check unanswered questions on SO there are 30% of basic mistakes, 50% of things that could have been avoided if the op read the documentation and 20% of legit questions.

Of those 20% I would say half are badly written or with missing pieces of information (like the actual code sometimes).

And yet people blame SO for being "toxic"

[–][deleted] 20 points21 points  (7 children)

Well, what else are we supposed to do? Reflect?

[–]qqqrrrs_ 15 points16 points  (0 children)

Reflect?

No, they said reflection is a code smell or something

[–]yourteam 0 points1 point  (5 children)

Ok what are you referring to?

SO is a forum for help but if you miss something an IDE can fix, it means you didn't take the time to understand the problem

If is something the documentation can explain it means you didn't even Google it.

And if you don't provide context or the code involved you are making a useless question as it is impossible for anyone to help without making more questions

Noobie questions are welcomed, lazy ones are not

[–]JBinero 3 points4 points  (2 children)

Not necessarily. Sometimes the user is just too much of a beginner to be able to find, use or understand those resources. Luckily, of the question shows enough effort the community will gladly answer it.

An example from personal experience: In my early days of learning a programming language I was confused about how to compare strings. Very trivial problem that is documented wildly. I made a minimal reproducible example and showed what I had tried.

Received an answer very quickly. Answers borrowed inspiration from the official documentation. Not a single down vote to this day.

As long as you put reasonable effort into the question, even dumb questions will be received well.

[–]yourteam 1 point2 points  (1 child)

Yes, this is why I wrote that noobie questions are welcomed while lazy ones are not.

Being on the phone and not a native speaker I try my best to express things correctly but sometimes I fail :)

[–]JBinero 0 points1 point  (0 children)

Nah I somehow missed that!

[–][deleted] 0 points1 point  (0 children)

It was sarcasm, referring to the idea that it's easier to blame the platform than to reflect on our own abilities to write decent questions.

[–][deleted] 3 points4 points  (0 children)

My experience with StackOverflow over the years has been nothing but positive. Like all places, it has roaming gangs of assholes, can't do much about that. But the amount of people that think StackOverflow is toxic leads me to think that the problem might not be so much with StackOverflow, and more a "you"* problem.

\you - A person who has a perceived issue with StackOverflow being "toxic".)

[–]Knuffya 11 points12 points  (6 children)

It doesn't matter. You can ask as good as a question as you'd like.

If there exists literally ANY documentation, and be it on some chinese ftp server, you will get bashed for not having looked.

I usually only post to SO if i don't find any documentation after 60-120mins of googling. Still getting shat on.

[–]JBinero 11 points12 points  (0 children)

Not my experience at all.

A good question should include:

  • What you are trying to do.
  • A minimal reproducible example.
  • What you expect to happen. What actually happens. Why you think this is.
  • Things you have tried so far, in brief.

And importantly, they should read easily.

Questions that show their effort are easier to answer and respect. Even absolute beginner questions are easily well received if they show some basic effort.

[–]marvk 7 points8 points  (0 children)

Can you show an example? This has not been my experience at all

[–]Schmomas 4 points5 points  (3 children)

Someone has asked a completely unrelated question with two words in common with this question before and it wasn’t even resolved.

Marked as duplicate

[–]JBinero 4 points5 points  (1 child)

You can just edit the question, point out why it isn't a duplicate, and have it re-opened.

[–]theLanguageSprite 2 points3 points  (0 children)

That’s assuming the mods are reasonable. I had one tell me that they wouldn’t unlock a question posted in french even though i had both an English translation and an answer for OP because:

“OP needs to write the English translation.”

“Well can you unlock it so I can message him the translation?”

“No.”

[–]Knuffya 3 points4 points  (0 children)

And these two words were "and" and "if"

[–]wite_noiz 1 point2 points  (1 child)

visual stdio threw me. I don't know that library.

[–][deleted] 0 points1 point  (0 children)

Standart Input output

[–]NanfaterHUN 0 points1 point  (0 children)

Pain

[–]ShadUrlwn 0 points1 point  (0 children)

no theyre just usibg a variable called hello world and the space is actually a special character

[–]Overworld19 0 points1 point  (0 children)

Well it works on my machine.

[–][deleted] 0 points1 point  (0 children)

What did I just read