Thursday 17 February 2011 — This is over 13 years old. Be careful.
I love Stack Overflow, for a number of reasons. First, they have great answers to programming questions. When I need an answer to a detailed issue I’m having with code, the answer is usually on Stack Overflow, and with the recent Google tweak to tamp down content farms in search results, it’s usually the first hit on Google as well.
But the reason they have the best answers is because Stack Overflow is essentially a MMORPG that awards points for expertise and other valued behavior. I understand well the incentives the site offers for answering questions, because I’ve accumulated a lot of reputation there:
The combination of being awarded points, and debating with other knowledgeable experts, plus being able to learn along the way, and help people, is very compelling. But it can get obsessive. Joel Spolsky claims that tons of rep means you are a superstar developer, but it also implies that you’ve spent a lot of energy chasing reputation points.
After a recent too-long session of someone’s wrong on the internet, I decided to kick the habit. And like any addict, I needed a little help.
A simple Greasemonkey script was just the thing. It just hides the form that allows for answering questions:
// ==UserScript==
// @name No answering on Stackoverflow
// @namespace http://nedbatchelder.com/greasemonkey
// @description Hide the answer box on Stack Overflow
// to stop obsessive behavior
// @include http://stackoverflow.com/*
// ==/UserScript==
GM_addStyle(
"@namespace url(http://www.w3.org/1999/xhtml); " +
".question-page #post-form { display: none; }"
);
The great thing about this solution is that it’s effective, without meaning I have to avoid the site altogether, and if there’s an question I really should answer, I can just disable the script, which is enough of an action to make me think twice.
You can install no_so_answers.user.js yourself if you find yourself similarly afflicted.
Comments
That said, this script is a good buffer, as you say, to make you think twice before answering. I can relate to getting emotionally built up to the point where I feel I have to answer a question, and after the moment passes I have to ask myself, was it worth it? Did I add any value?
Take this comment as an example :)
@Jonathan: there are two reasons to hide the answer form. First, reputation is visible in lots of places, so there's many more places to tweak the UI. Second, it isn't just rep points that pull me in. There's also the wanting the answer to be accepted, wanting wrong answers to get what they deserve, and so on. By not writing answers, you can skip the all the engagement. Maybe something else would work better for you.
I poke around here and there looking for something to answer, but just end up bailing because I don't care about Stack Exchange Street Cred and the questions on serverfault are SO esoteric -- "I'm running RHELv3 on an overclocked Apple IIc. PostgreSQL 9-alpha3 won't run. Please help."
Significant periods of my time are worth (and I don't mean in money, but sure) far more than an icon.
Glad to see you made a change.
http://stackapps.com/?tab=scripts
> Significant periods of my time are worth (and I don't mean in money, but sure) far more than an icon.
Generally the reason people are participating is to teach, and learn -- it's time invested in peer education, basically.
Sure, but the premise is that you can spend 10 minutes on our sites and learn something -- or teach someone else something. It doesn't take hours, and it isn't intended to. This is another reason why we cap reputation and votes, for example... to the extent that you spend *all* your time on Stack Overflow, we are failing you. That's not our intent.
Also, I used this script as an example on
http://blog.stackoverflow.com/2011/02/stack-apps-and-scripts/
Add a comment: