LQ Suggestions & Feedback Do you have a suggestion for this site or an idea that will make the site better? This forum is for you.
PLEASE READ THIS FORUM - Information and status updates will also be posted here. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
10-15-2012, 12:36 PM
|
#16
|
|
Member
Registered: Mar 2012
Location: Italy
Distribution: Slackware+Debian
Posts: 257
Rep:
|
Most of users don't know how to user reputiation, and yet you want to add another button agree\disagree.
I think it will just led to more confusion. A better approach would be to change the button name from "useful" to "point this as the solution" so maybe users will use it in the right way
|
|
|
1 members found this post helpful.
|
10-15-2012, 12:41 PM
|
#17
|
|
Fuduntu Team
Registered: Dec 2011
Location: Nashville, TN
Distribution: Fuduntu
Posts: 73
Rep: 
|
If it isn't broke, don't fix it. This just sounds like a couple of angry people crying over nothing.
/opinion
Last edited by fewt; 10-15-2012 at 01:35 PM.
|
|
|
|
10-16-2012, 07:27 AM
|
#18
|
|
Senior Member
Registered: Dec 2007
Distribution: Mepis, Centos
Posts: 4,674
|
What I would really like (don't know whether others need it) is a way to privately put a negative mark on another forum member, that only I will see, but which will warn me next time that person posts a question I might be tempted to answer.
I'm not good with names, and tend to look at each new thread as new and I fail to take into account what I might have discovered in someone's previous threads.
Someone (don't need to say who publicly) has posted multiple questions, then generally acted uninterested in the content of the replies (repeating the question without responding to reply content, or dropping the thread, or most recently posting "never mind").
When I take the trouble to try to help with some technical problem, I'd prefer to do so for someone who will look at the reply.
|
|
|
|
10-16-2012, 07:31 AM
|
#19
|
|
LQ Veteran
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,089
|
Quote:
Originally Posted by johnsfine
What I would really like (don't know whether others need it) is a way to privately put a negative mark on another forum member, that only I will see, but which will warn me next time that person posts a question I might be tempted to answer.
I'm not good with names, and tend to look at each new thread as new and I fail to take into account what I might have discovered in someone's previous threads.
Someone (don't need to say who publicly) has posted multiple questions, then generally acted uninterested in the content of the replies (repeating the question without responding to reply content, or dropping the thread, or most recently posting "never mind").
When I take the trouble to try to help with some technical problem, I'd prefer to do so for someone who will look at the reply.
|
It's not exactly what you are after but once you've identified a repetead offender, place them on the ignore list..
|
|
|
1 members found this post helpful.
|
10-17-2012, 01:44 AM
|
#20
|
|
Senior Member
Registered: Feb 2011
Location: Australia
Distribution: Debian Sid/Experimental
Posts: 1,820
|
Quote:
Originally Posted by sycamorex
It's not exactly what you are after but once you've identified a repetead offender, place them on the ignore list..
|
That's fine but sometimes some people, who really annoy the absolute living daylights out of me 99.9% of the time, actually post something that is helpful.
|
|
|
|
10-17-2012, 08:41 AM
|
#21
|
|
Senior Member
Registered: Nov 2005
Distribution: Debian
Posts: 2,017
|
Quote:
Originally Posted by johnsfine
What I would really like (don't know whether others need it) is a way to privately put a negative mark on another forum member, that only I will see, but which will warn me next time that person posts a question I might be tempted to answer.
|
If you don't mind having the marks confined to a single browser that is pretty easy to accomplish with GreaseMonkey:
Code:
// ==UserScript==
// @name Mark Users
// @namespace http://www.linuxquestions.org/questions/user/ntubski-218752/
// @description Privately put a mark on another forum member
// @version 1.0
//
// @match *://www.linuxquestions.org/*
// ==/UserScript==
//
// To mark a user, open about:config and add a new string setting called
// greasemonkey.scriptvals.http://www.linuxquestions.org/questions/user/ntubski-218752//Mark Users.<USERNAME>
// with a url to the image of the mark.
var posters = document.evaluate(
"/html/body//div[@id='posts']//a[@class='bigusername']/text()",
document, // context node
null, // namespace resolver
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null // result (null means create new)
);
for (var i = 0; i < posters.snapshotLength; i++) {
var poster = posters.snapshotItem(i);
var mark = GM_getValue(poster.textContent);
if (mark) {
var markNode = document.createElement("img");
markNode.setAttribute("src", mark);
poster.parentNode.appendChild(markNode);
}
}
I attached a screenshot using the following settings:
Code:
greasemonkey.scriptvals.http://www.linuxquestions.org/questions/user/ntubski-218752//Mark Users.fewt
= https://lqo-thequestionsnetw.netdna-ssl.com/questions/images/smilies/twocents.gif
greasemonkey.scriptvals.http://www.linuxquestions.org/questions/user/ntubski-218752//Mark Users.johnsfine
= https://lqo-thequestionsnetw.netdna-ssl.com/questions/images/smilies/smile.gif
|
|
|
|
10-17-2012, 09:18 AM
|
#22
|
|
Senior Member
Registered: Sep 2010
Location: Wales, UK
Distribution: Arch
Posts: 1,624
|
Quote:
Originally Posted by H_TeXMeX_H
I agree that the two should be separated, because they are different.
If people wanted, you could implement a agree/disagree and a helpful/not-helpful. Then it would make more sense and it would be clearer ... but it may be more complicated to implement.
|
I thought the general idea was 'agree' => 'click the "Rep" link, giving reputation without marking the post as helpful' while 'helpful' => 'Mark post as helpful', which is what I try to stick to; but I guess this will vary from user to user.
|
|
|
|
10-17-2012, 09:32 AM
|
#23
|
|
LQ Veteran
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,089
|
Quote:
Originally Posted by k3lt01
That's fine but sometimes some people, who really annoy the absolute living daylights out of me 99.9% of the time, actually post something that is helpful.
|
I know and one can always think of some scenario that a solution does not cover. The truth is there is no solution that will please everyone and implementing some extremely elaborate reputation system that's going to cover every possible scenario is just not feasible. Just my 5 bitcoins.
|
|
|
|
10-17-2012, 10:04 AM
|
#24
|
|
Guru
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,612
|
Quote:
Originally Posted by Snark1994
I thought the general idea was 'agree' => 'click the "Rep" link, giving reputation without marking the post as helpful' while 'helpful' => 'Mark post as helpful', which is what I try to stick to; but I guess this will vary from user to user.
|
Well, they both link to the same system.
I was thinking about two separate scales. There would a "helpfulness" scale and a "controversy" scale. Are you helpful and do people agree with you.
I know people don't agree with me, and I don't want this to affect my helpfulness rating.
|
|
|
|
10-17-2012, 10:21 AM
|
#25
|
|
Moderator
Registered: May 2001
Posts: 24,792
|
Quote:
Originally Posted by johnsfine
I(..) tend to look at each new thread as new (..)
|
Ah, the Zen state of mind ;-p
Sure I'd rather see people show they're active in our community (discuss things properly, share information actively and anything else that triggers the satisfaction factor) but regardless of that please note any constructive answer (not "search LQ" or LMGTFY-like one-liners) you give contributes to LQ as a knowledge base. Seeing it as an overarching goal may help you and others step over some of the reservations you might have. Also note there's no rule or by-law against nudging an OP know via email or PM or in the thread towards paying attention and responding to what was written.
|
|
|
1 members found this post helpful.
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 12:21 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|