6
TheGame12
334d

Ok, all of us have seen the memes about how nasty Stack Overflow can be, this is why I usually try to find an existing SO post to read instead of making one. This time however, I found an error that I couldn't fix. A nasty C runtime error. I decided to ask a SO question for help, and awaited answers. I came back, and the question had been flagged to require more info, so I added more. I came back later, and someone told me I was doing it the hard way, and I should be using Visual Studio (I'm on Visual Studio Code), which ticks me off, because I don't want to use the hacky way around the problem, then this same person closed the question! They didn't even answer it, they just offered a simple workaround then closed without an answer. Man, SO sucks sometimes.

Comments
  • 2
    "this is why I usually try to find an existing SO post to read instead of making one"

    - this is how SO is supposed to be used in the first place because it's not a helpdesk.

    Also, what C runtime error do you have?
  • 2
    I would not really call using Visual Studio a hacky solution. While VSCode has come a long way it nowhere near as well integrated with the compilers as VS.

    Yes VS is often seen as bloated but that is because it has do much built in support. With VSCode you need a lot of extensions to do similar things and while that means you can pick and choose it also means there could be things hat just do not work.

    That said, there are a lot of entitlement among SO and I have also had similar experiences so I know the feeling.

    Did they add any reason for closing, I assume you had not accepted any answer so there should be an explanation for the closing.
  • 3
    @Voxera compilation shouldn't depend on the editor/IDE. Especially C, which is meant to be portable and system-agnostic, shouldn't depend on the editor. Ideally you would want a build script which works correctly as long as the dependencies are fulfilled on any system.
  • 1
    @Voxera what if you don't want to or cannot use VS, for whatever reason?

    The reason shouldn't matter to you. That's a thing i found increasing on SO. Asker wants to have a problem solved, not guilt tripped into using a different approach.
  • 1
    @Nanos Asking questions that could have been answered with a Google search is dumb and wastes everyone's time. Just don't do that.
  • 0
    @Fast-Nop "a.exe cannot be found", no clue what that means
  • 0
    @thebiochemic My point exactly! It's like me asking for help to fix my car, then someone says I should be using a different car, and not fixing the one I have.
  • 0
    @Voxera There was no reason, however It also stated it was closed for lack of information, however I was not at my computer during this time so I would have never known.
  • 0
    @TheGame12 probably your compilation went wrong so no a.exe
  • 2
    @TheGame12 "a.exe cannot be found" is not an error of the C runtime. Looks more like an IDE error message.

    Normally, you would go into the IDE console window part to see the exact compiler call and potential error messages from compiler or linker, and then go ahead from there.
  • 0
    @ess3sq yes compliation should not depend on the editor BUT if the editor helps controlling the compiler its can have an effect.

    If you build your own makefiles sure then its should be completely editor agnostic, its not as vi or windows notepad will mess with compilation :P
  • 0
    @Fast-Nop That makes more sense. I just guessed a runtime error, because well, it looked like it compiled.
  • 0
    @Nanos Sites like SO are for topic-related stuff, not for people who don't know how to use a search engine. Kicking such people out as fast as possible is basic quality maintenance on such sites.
  • 0
    @Nanos People who don't know how to use a search engine have no place on a Q&A site. They need to learn how to google. SO is not meant as personal helpdesk, and neither as personal introduction to basic skills such as googling.

    Kicking such morons out is the best way because being kind to them not only wastes time, but also attracts more of them until the site just drowns in their shitty noise.
  • 0
    @Nanos Easy, then you just don't get an answer. Still better than polluting such sites with noise because you don't know how or what for to google. It's not a personal helpdesk, nobody cares about you.
Add Comment