Tag Info

Hot answers tagged

11

Thus, the first answer is still sitting at 1 vote for every 5 views, whereas Jon's answer is sitting at 1 vote for every 3 views, meaning a greater percentage of people like Jon's answer over the first answer. Or, it could just be that a greater density of people willing and/or able to vote on the answers were visiting during the most recent period of ...


7

Here's the code from Marc's amazing tag engine when sorting by votes, where x and y are questions: // question score desc int delta = y.Score.CompareTo(x.Score); // tie? then by aggregate answer score desc if (delta == 0) delta = y.AnswerScore.CompareTo(x.AnswerScore); // tie? fallback to question creation date desc return delta == 0 ? ...


6

The oldest unanswered questions are shown at the top as long as no answers are entered Then the front page would be dominated by questions that might never get an answer. New questions that are answerable would not get any attention, and they too would not get answered. Note that viewing only unanswered questions is already an option, and edit bumping ...


6

No, self-answers are sorted according to the current sorting order instead. Normally the accepted answer is pinned at the top, and although self-answers are not given that privilege, they are still sorted normally. They are not delegated to the bottom either! When you sort that post by votes, the self-answer is right there at the top. In fact, only when ...


4

When many questions are closed as a duplicate of one specific question, that question is a "Frequent" question - that is, it has been asked, in different guises, frequently. In addition, if the question is linked to from another question, it is one of the "Frequently" linked to questions. In essence the sort is for questions that have been linked to often ...


4

Click on any tag. Then go to votes tab. Like questions tagged sql sort by most votes. For answers go to top users --> select hot --> select all to get answers list order by highest voted first. E.g. most voted answers tagged sql


4

Initial thoughts: If you're gonna change things to make them more consistent, be consistent: "my tags" is most definitely a filter, not a sort. I'm unclear on why you'd need or want to make it a sort unless you're looking to drop /unanswered as well... Please don't do that; you'll also end up needing a "no answers" sort to preserve existing behavior, and ...


3

tags (and/or) http://stackoverflow.com/questions/tagged/jquery If questions are closed http://stackoverflow.com/search?q=closed%3A1 If questions are negative (downvoted) Not possible with the search. You can search for score ≥ 0 or any positive integer. You might be able to write a feature request to have that changed, although I honestly ...


3

I'm not sure I see the point. Voting is wildly arbitrary on Meta no matter what you do. Anecdotally, I've experienced a situation where I suggested a feature in an answer, netting 16 votes in total, but when I made it a separate feature request, it ended up at -8 IIRC. Voting is, at best, a rough approximation of the general feeling of the audience present ...


3

unless the question is found by the right user within a couple of hours it dies. Not really, I regularly answer questions that are a few days old and I see other people doing the same. The more difficult a question is the longer you may have to wait for an answer but you don't want everyone jumping in and trying to answer it if they can't anyway. You ...


3

That accepted answer was posted by the user that asked the question. Self accepted answers don't float to the top: No change in sort order. Normally, accepted answers are “docked” under the question. This is not true for owner accepted answers; they stay in standard sort order like any other answer.


3

The number of followers/subscribers is something different than the number of times the tag is used on a question. The latter is what determines the order of the tags. The frequency of usage of the tags on that question is shown in the right sidebar:


3

Do you have evidence that shows that the oldest answers have the most upvotes? How often does this occur? Is it often enough to justify pushing the truly great answers to the bottom, simply because they may or may not be recently posted? If you had some statistics, I think it would maybe help you make a stronger case for changing something that works really ...


2

Sorting by the most links is what FAQ sorting is for. If you sort by votes, then it's not FAQ sorting anymore. It's sorting by votes. This request frankly makes no sense. If you take something that's already sorted and sort it by another thing, you're either: Sorting it by that single new thing only. Sorting it by the old thing, and then sorting each level ...


2

Here's a SEX-DEX query to do this: Random Unanswered Posts It has a few problems, such as SE's overly aggressive caching allowing RAND() not to function properly (make a simple edit every time you run the script & it should work), and the interface isn't the best, but it does pull down what you want. Here's the query parameters I used: Only ...


2

Nope, not possible right now short of using the data explorer as Yannis mentioned or writing something using the API. Here's a query to get you started: select Score, CreationDate, Id as [Post Link] from Posts where PostTypeId = 1 and OwnerUserId = ##userid## order by Score asc Once you plug in your userid, you can grab a permalink to the query that you ...


2

I posted a page that lists a user's questions by ascending score. Features: Uses the API to return results that are up-to-the-minute (excepting possible caching, by the API, on repeat requests)1. The results are fully (re)sortable and searchable. Can sort/search on almost every question field available in the API. Supports URL parameters for automatic ...


2

You can use the search box to do this as well, just search for your tag and the minimum number of votes you want to see, for example: [php] votes:1 (or [php] score:1). Then click the votes tab on the search results to sort that way, here's an example.


1

This feature request may be useful (probably for a smaller number of users) but personally I only favorite a handful of questions. Once you start favoriting a large number of posts then it some what defeats the purpose of this feature. Instead of favoriting you could always just search! However, if this is not added then you can always use data.SE to do the ...


1

I get that the idea behind the "interesting" tab is to bring to the surface questions that the user might be interested in answering, not the ones they might be interested in reading. But for a brand new user, is that really what we should be optimizing for? Absolutely! People with questions aren't even browsing the lest A user who is more ...


1

What you're asking for is not always possible. In SQL Server, for example, what used to be "the best way" to do something may have been replaced with a better solution in newer versions of SQL Server. As such, the "best" answer today may not coincide with the oldest and/or most up-voted answer. In fact I often see a question being closed as a duplicate of a ...


1

Is there a way to make the pagination bar appear on top of the answers list? As you tagged this question as feature-request I don't feel this feature is required because just by pressing End or Ctrl+End you can go to the end of the page and select the next page. Is there a way to apply sorting on the results so that I can sort the results by date ...


1

Current ways of finding popular questions In the current system there are two ways that you can view questions by popularity: You can use the votes view to view all questions that have been popular. You can view the currently popular questions in the active view. Regarding the votes view, usually these questions tend to be older and have received many ...


1

When answers are sorted by votes, the highest voted answer will appear directly below the accepted answer (if there is one). Ordering by "active" will sort the answers by how active they are - last edited / last posted, etc... Ordering by "oldest" simply places them in chronological order.


1

The "disable random ordering" link just adds a additional query string parameter: http://stackoverflow.com/review/low-quality-posts?s=1&pagesize=30&filter=day&no-random=1 Looks like the system does not save it anywhere - if that flag is there it doesn't use the random ordering if there is no such flag and more than X items (100?) it will ...


1

I agree this would be a nice feature: http://stackoverflow.com/questions?sort=featured&filter=viewcount but realistically it is quite a big ask. In the mean time, I whipped up this query that will list questions from the start of the month ordered by ViewCount, please give it a go over at: http://data.stackexchange.com/stackoverflow/query/new SELECT ...


1

I think the accepted answer should not always be first because the community knows better. This page is cool because many people combine there knowledge and there opinion. In this case we put the opinion of one person over the community. I think the order should be: highest voted (if it has 5 votes more than the accepted answer!) accepted answer other ...



Only top voted, non community-wiki answers of a minimum length are eligible