Is it possible to add the ability to automatically hide users that match the criteria:

  • Username matches the form userXXYYZZ
  • 1 Question Asked
  • 0 Answers
  • 0 Votes
  • Reputation 1

I realize this will eliminate over 50% of the android tagged questions but I find the motivation to answer such posts to be very low.

share|improve this question

2 Answers

You'll have to write a userscript for that. (There's probably nothing for that on Stackapps yet.)

However, you cannot read out those user attributes easily. You need some heuristics. But a pretty simplistic one is to look for the absence of badges. One of the first badges people get is Scholar for Asked a question and accepted an answer.

$(".question-summary").each(function (q){
    if (! $(q).has(".badgecount")) $(q).hide();
})  // or something like that
share|improve this answer
+1 smart and to the point – Filburt Jan 25 '11 at 11:52

Stack Overflow is more focused around the content than the users. If you don't like android questions, ignore that tag.

share|improve this answer
1  
I like android questions, I just don't like answering questions that will never be marked as answered. – Error 454 Jan 24 '11 at 23:55
3  
Even Jon Skeet had to start somewhere. – Greg Hewgill Jan 24 '11 at 23:57
1  
This isn't about new legitimate users, this is about people that are abusing the system by creating a new user for every question. It's quite obvious which questions fall under this category. – Error 454 Jan 24 '11 at 23:57
I completely understand and appreciate your consternation. The "low quality question" moderator flag might be useful, too. – Greg Hewgill Jan 24 '11 at 23:58
Not all questions of this type are of low quality. There isn't a relevant flag for this situation. – Error 454 Jan 25 '11 at 0:05
5  
@Error: worth noting that, in the long run, answers to good questions stand to benefit far more people than the user originally asking it. Don't get too hung up on that checkmark... Answer the questions that appeal to you. – Shog9 Jan 25 '11 at 0:15
1  
@Error: If there really is a user making new accounts for each question, flag one of the questions for moderator attention, so that the moderator can verify the sock-puppeting and either merge or delete the duplicate accounts. – Robert Harvey Jan 25 '11 at 0:21

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged