Slashdot Mirror


Stack Overflow and the Zeitgeist of Computer Programming (priceonomics.com)

An anonymous reader writes: Stack Overflow remains one of the most widely-used resources in the developer community. Around 400,000 questions are posted there every month. The Priceonomics blog is using statistical analysis to ask, "What does the nature of these questions tell us about the state of programming?" They see tremendous growth in questions about Android Studio, as well as more generic growth in work relating to data analysis and cloud services. Topics on a significant decline include Silverlight, Joomla, Clojure, and Flash (not to mention emacs, for some reason). The article also takes a brief look at the site's megausers, who receive a lot of credit for keeping the signal-to-noise ratio as high as it is, while also taking flack for how the Stack Overflow culture has progressed. "Others are worried about how Stack Overflow has impacted programming fundamentals. Some critics believe that rather than truly struggling with a problem, developers can now just ask Stack Overflow users to solve it for them. The questioner may receive and use an answer with code they do not truly understand; they just know it fixes their problem. This can lead to issues in the long run when adjustments are needed."

9 of 171 comments (clear)

  1. Language vs Library by darkain · · Score: 4, Insightful

    For me, I use stack overflow for library related issues, not language related. Dealing with bullshit subtleties of things like jQuery, instead of fucking around for hours trying to figure out why a particular function has a weird ass edge case, someone else has already figured it out and documented it. It just so happens that said documentation is the comments within StackOverflow.

  2. usenet lists by tomhath · · Score: 4, Insightful

    The complaints remind me of the old usenet groups, especially C and perl programming. A few people appointed themselves to be the arbiters of what could be posted, and flamed anyone who didn't meet their personal standards.

    On the other hand, take away that moderation and the site quickly degenerates into what /. has become. Given the choice, I'll take StackOverflow the way it is.

    1. Re:usenet lists by dotancohen · · Score: 4, Insightful

      The complaints remind me of the old usenet groups, especially C and perl programming.

      Even worse than that, one would expect the author's examples to actually illustrate his point, but the examples given are terrible questions that should in fact be closed by any objective measure. The problem is that the author wants to use emotion ("it's _my_ question") to keep his dupes open.

      For example, his "Does Stack Overflow have any way of preventing vote trolls" question was marked as a dupe of "How to react to unfair downvotes". Though superficially a related but distinct question, in fact his question is a request for clarification about the general case discussed in the question his was marked as a dupe of. People who engineer objective code will see this, people who copy and paste but do not understand why things work the way they do just won't see it, it's a left-brain vs. right-brain issue. So the system is self-filtering, that's fine.

      I remember how hard it was to get rep on ServerFault, the SO site for server admins. Any question that I asked I felt was downvoted or closed. Now that I understand the concepts, I understand why. And not understanding why but getting frustrated with the SF community helped me formulate better questions and propelled my knowledge. And when I do turn to SF now, I'm glad that newbies like I was are kept at bay and there is room for the real admins to discuss real admin problems.

      --
      It is dangerous to be right when the government is wrong.
  3. Re:Wouldn't this lead to Natural Selection? by halivar · · Score: 5, Insightful

    This is probably not going to be a popular opinion here, but I have a low view of developers who spend an hour writing code they could have copied off the internet in 5 minutes. Yes, there is no replacement for discernment. You shouldn't Ctrl+V code you don't understand. But to not even try Googling it indicates, to me, someone who is more interested in padding their hours than getting shit done. The solution, once arrived at, is probably not novel or better than what's out there, anyway.

  4. SO can also lead to outdated answers by dmomo · · Score: 4, Insightful

    Duplicate questions are discouraged on the site. This is problematic because the accepted answer will remain the apparent authority even while languages evolve or APIs change. I see it happen a lot with jQuery, for instance.

  5. Hubris by avandesande · · Score: 4, Interesting

    "Others are worried about how Stack Overflow has impacted programming fundamentals. Some critics believe that rather than truly struggling with a problem, developers can now just ask Stack Overflow users to solve it for them"

    It's pretty rare that someone will discover on their own a better solution then a more experienced developer. I have learned quite a lot looking at other's solutions to a problem... in particular where the tool is not the best for the job.

    --
    love is just extroverted narcissism
  6. Re:Who enjoys struggling? by bradrum · · Score: 4, Insightful

    Struggle up to a certain point. I had an algorithms professor who said, "spend 30 minutes on a problem", then when/if you get to a dead end after 30 minutes...
    Doesn't mean "don't try this problem because this looks hard". Do try, but don't run around in circles.

  7. Re:Besides the most obvious question... by Anonymous Coward · · Score: 4, Interesting

    I find it more interesting that some questioners will twist themselves into a pretzel to hide the fact that they want someone else to provide the answer to their homework problem.

    I caught one of these miscreants by posting a solution with a non-obvious bug for a course in which I was a TA. When it came time to grade the assignments low and behold the verbatim answer appeared in no less than 100 students. Despite the warning posted on StackOverflow saying the code should be tested before use. None of the one hundred bothered running the code. Lazy bastards.

  8. Unregulated Profession by seoras · · Score: 4, Interesting

    Yesterday there was a post titled "The History of SQL Injection, the Hack That Will Never Go Away ".
    Someone raised a good point that the problem was more economics than technology.
    Employers, with no clue about technology, "employing monkeys and paying them peanuts" to produce something that looks visually ok but hacked into existance underneath.

    We, programers, work in an unregulated profession which keeps it dynamic, fast paced and forever evolving.
    Regulation = stagnation
    So, yes, there's a lot of crap code out there and it won't go away - live with it.

    Without Stackoverflow years of man hours would be wasted struggling to figure out some problem that has already been solved by someone else.
    Wasn't that the idea behind the free software movement, not having to re-invent the wheel each time?
    What about re-debugging, re-attaching, the wheel each time?

    If the strength of our profession is in the fluidity, speed of adaptation and evolution then something like Stackoverflow is essential.
    If you really need the accreditation of a regulated profession then ask an interviewee for their Stackoverflow account to see what questions they've ask and answered.

    Stackoverflow is the best thing that's happened to our profession that I can remember in my 25 years as a programer.