It seems some long well thought out answers receive a very low vote count:
http://stackoverflow.com/questions/873037
On the other hand, here http://stackoverflow.com/questions/471940
Jeff's witty, and grossly incorrect comment got him 66104 upvotes, for a response that probably took him 5 seconds to come up with.
Should I not bother answering complex questions which require lots of work to answer?
Why do long well thought out answers result in negative reputation while short snappy ones get all the rep?
EDIT:
So people do not think I am singling out Jeff, here is a bigger list:
- Is it wrong to go to interviews while employed? http://stackoverflow.com/questions/205003 306 135
- What's the difference between JavaScript and Java? http://stackoverflow.com/questions/245062 144 108
- How do I move the turtle in LOGO? http://stackoverflow.com/questions/1003841 196 102
- How to check if a number is a power of 2 http://stackoverflow.com/questions/600293 446 97
- How do I calculate someone's age in C#? http://stackoverflow.com/questions/9 480 89
- I don't like this... Is this cheating the language? http://stackoverflow.com/questions/836945 370 81
- Why do some websites add "Slugs" to the end of URLs? http://stackoverflow.com/questions/47427 372 70
- Why do people have trouble learning recursion? http://stackoverflow.com/questions/230218 428 68
- What's the difference between JavaScript and Java? http://stackoverflow.com/questions/245062 400 65
- Why Windows 7 isn't written in C#? http://stackoverflow.com/questions/783238 162 65
- Why does every man and his dog want to code a blogging engine? http://stackoverflow.com/questions/471940 140 63
- What annoys you as a programmer? http://stackoverflow.com/questions/27347 124 56
- Do you use "kibibyte" as a unit of measurement in your programs? http://stackoverflow.com/questions/176922 66 56
- The Programmer's Bill of Rights http://stackoverflow.com/questions/100518 472 54
- Big-O for Eight Year Olds? http://stackoverflow.com/questions/107165 452 54
- Can you code while drunk? http://stackoverflow.com/questions/193551 254 52
- Do you prefer "if (var)" or "if (var != 0)"? http://stackoverflow.com/questions/404838 368 50
- What is the opposite of 'parse'? http://stackoverflow.com/questions/148857 94 49
- Database-wide unique-yet-simple identifiers in SQL Server http://stackoverflow.com/questions/721497 486 48
- How many lines of code is too many? http://stackoverflow.com/questions/20981 164 48
Query:
select top 20 ' - ' + q.Title ,'http://stackoverflow.com/questions/' + cast(q.Id as varchar(max)) , datalength(a.Body),
cast(a.Score as varchar) From Answers a
join Questions q on a.ParentId = q.Id and q.IsWiki = 0
where datalength(a.Body) < 500
order by a.Score desc
And for even more enjoyment, here is a list of Marc's longest 20 answers, the most votes he got from a long answer is 9 next up is 4, but the avg is probably around 2.
- Deserialization Error: The XML element 'name' from namespace '' is already present in the current scope. http://stackoverflow.com/questions/523245 13466 2
- Data binding dynamic data http://stackoverflow.com/questions/882214 11614 2
- How do you implement Pipes and Filters pattern with LinqToSQL/Entity Framework/NHibernate? http://stackoverflow.com/questions/679027 11456 3
- What's the way to implement Save / Load functionality? http://stackoverflow.com/questions/348022 10818 4
- Wait for pooled threads to complete. http://stackoverflow.com/questions/540078 10754 1
- How can I write a generic container class that implements a given interface in C#? http://stackoverflow.com/questions/847809 10570 9
- TypeDescriptor.GetProperties(thisType) to return properties, which are write-only http://stackoverflow.com/questions/772107 9976 3
- C#/winforms: how to best bind a propertygrid and a System.Data.DataRow http://stackoverflow.com/questions/943621 9878 1
- How can I add my attributes to Code-Generated Linq2Sql classes properties? http://stackoverflow.com/questions/393687 9456 1
- Why does WPF support binding to properties of an object, but not fields? http://stackoverflow.com/questions/842575 8552 1
- Using the .NET collection editor without using a property grid control http://stackoverflow.com/questions/473506 8244 3
- Expose a collection of enums (flags) in Visual Studio designer http://stackoverflow.com/questions/831612 7598 1
- Delphi to .NET + C# http://stackoverflow.com/questions/237715 7526 3
- MonthCalendar.SelectionRange databinding example http://stackoverflow.com/questions/377163 7516 1
- .Net Property Grid. Is there a way to let the Grid manipulate object in different way http://stackoverflow.com/questions/931644 7372 2
- In LINQ to SQL, how do you pass pass parts of a LINQ query into a function http://stackoverflow.com/questions/434480 7180 4
- DataGridView Binding http://stackoverflow.com/questions/634643 6994 3
- String.Join vs. StringBuilder: which is faster? http://stackoverflow.com/questions/585860 6834 4
- LINQ to SQL query against a list of entities http://stackoverflow.com/questions/729899 6746 3
- Better way to do this LINQ to XML query? http://stackoverflow.com/questions/873037 6728 1
Query:
select top 20 ' - ' + q.Title ,'http://stackoverflow.com/questions/' + cast(q.Id as varchar(max)) , datalength(a.Body),
cast(a.Score as varchar) From Answers a
join Questions q on a.ParentId = q.Id and q.IsWiki = 0
where a.OwnerUserId = 23354
order by datalength(a.Body) desc