I find participating in SO extremely annoying. Tried few times and gave up. I can't downvote an answer that is patently absurd. I can't upvote an answer that is right. Apparently that's because I have to prove myself first. If I write a response (that damn sure answers the question), it sits at zero, because its usefulness appears to be directly dependent on my reputation, of which I have none. In general, there's ju…
I don't know what effect hiding votes would have on SO, but suspect it will be an interesting experiment nevertheless. I have indeed faced some of the newbie problems, though my complaints usually are around the comment everywhere, and editing other answers privilege. There are lots of answers, i see i can improve by asking a explanatory question? I understand why editing others' answer has that requirement the the c…
Poll: What is your current Stack Overflow reputation?
101–110 of 203 posts
Re: Poll: What is your current Stack Overflow reputation?
#102Re: Poll: What is your current Stack Overflow reputation?
#103Does anyone have the same problem with SO that I do? I'm an experienced dev in some general / mature technologies, mainly the C-like languages (I know C# inside out) but essentially, nothing too specialised. Anytime I've gone on SO to try to contribute I find it hard to find questions to answer. It's either a race to answer a trivial question quickly, or an obscure - possibly badly worded or incomplete - question tha…
It's not just you :D The way I see it working: 1. Go to homepage. 2. Find unanswered questions that you can answer and answer them. In the process, elaborate with the OP, to help as much as you can. 3. Go to 1 until you become efficient enough (maybe 3 mins max), to be the first to answer a detailed answer (Usually the easy questions get a lot of hots, since more people are trying to answer those, so try to be the fi…
Re: Poll: What is your current Stack Overflow reputation?
#104The problem with the SO reputation system is that one-sentence answers to some very basic problem end up earning you > 100 reputation, but a long, well-written answer to a niche question gets you maybe 10 or 20. I'm not really sure what the solution to this is (it's not dissimilar to the situation here since the comment scores got hidden).
One sentence answers are often exactly what crowd needs. Obviously so if they vote them up.
Re: Poll: What is your current Stack Overflow reputation?
#105Re: Poll: What is your current Stack Overflow reputation?
#106Re: Poll: What is your current Stack Overflow reputation?
#107Re: Poll: What is your current Stack Overflow reputation?
#108Re: Poll: What is your current Stack Overflow reputation?
#109Re: Poll: What is your current Stack Overflow reputation?
#110Does anyone have the same problem with SO that I do? I'm an experienced dev in some general / mature technologies, mainly the C-like languages (I know C# inside out) but essentially, nothing too specialised. Anytime I've gone on SO to try to contribute I find it hard to find questions to answer. It's either a race to answer a trivial question quickly, or an obscure - possibly badly worded or incomplete - question tha…
For example, those badly worded and incomplete questions. You will almost never get much rep from answering those; but you can help that person out a lot, by providing an answer that describes how to formulate their question better, asks them for the extra information they need, shows them how to provide a minimal example of the problem at hand. Then as they edit their question to post this extra information, you can try and use that to flesh out your answer, until you have answered their question for them. By the end, you will probably only get one or two upvotes and an accepted answer (at best, sometimes they just give up), but you will have helped explain to them how better to ask questions, and how better to solve the problem on their own.
Beyond that, sometimes you just have to answer questions quickly and get lucky. I spent some time "playing" StackOverflow like an MMO, and learned some tricks for getting rep (while still doing a good job of answering peoples questions). To do well on questions on popular tags, find ones with no answers yet (or only one or two answers) that you can answer. If it can be answered in a sentence, do so. Then edit your answer. Flesh it out. Provide links to the documentation. Write a sample program demonstrating how it works.
That way, you got in quick with the one-sentence answer. If that is what they need, they may accept it and you're done. You may also get early upvotes. The edit, to have a more in-depth answer, will make your answer a lot more useful than all of the other quick and dirty answers. So if they needed something more in-depth, they will appreciate the extra information. People always appreciate links to docs, and short and sweet example code. Some people appreciate an answer that expands a little bit, describes more generally how something works to put the answer in context and allow them to figure that out in general.
Here's an example of that strategy at work: http://stackoverflow.com/posts/793867/revisions . In fact, I believe there was another edit that's not shown (if you do an edit within a certain window, it gets merged into the last edit). I think that I just started out with the first two lines; the most basic answer. I then expanded a little bit, to cover some other possible cases (as I couldn't tell precisely what they needed from the question). Then I Googled for the documentation, and provided links to it, to help them find other information they might want to know.
Another strategy is to find a hard problem, and spend the time and effort running it to ground. These problems don't come up often, but when they do, they can be really good ones to solve. They can substantially help people out. They are usually much more interesting, and you can learn new things while trying to solve them.
For example, here's one where I didn't know the answer when I first saw the question: http://stackoverflow.com/questions/1990464/efficiency-of-pur... . In fact, I saw the question, thought it was interesting, and wanted to find out the answer; several people had "answered" it, but their logic was so bad that I couldn't let those answers stand (there are a number of answers on that question that have since been deleted by their authors, which you can only see if you have a high reputation, but the answer that's at -15 should give you an idea of the quality of many of the earlier answers). Luckily, I had a bood that I knew would probably answer the question, or give me the starting point. I pulled out that book, found the appropriate references, Googled them, found the papers in question, skimmed through those, and summarized it all. It took me a half an hour to an hour to do so, and then I read the papers in more detail and posted a substantial edit that went into a lot more detail a few hours later. That took some serious effort, but it has been one of my highest voted answers.
So, in summary, doing a good job on the writeup can be important. Provide context, links, references, sample code. Quick throwaway answers will sometimes answer the question, but people like a little extra information (as long as it isn't tl;dr like this comment). If you can't solve easy problems quickly enough, either solve more obscure problems, solve harder problems, or just do a better job answering those easy problems. Don't worry too much about your reputation; it can be a serious time sink to get a lot of reputation. I have spent time climbing the reputation ladder as fast as possible, and I spent way too much time doing so.