Tagged Questions
8
votes
7answers
462 views
Best method to prevent gaming with anonymous voting
I am about to write a voting method for my site. I want a method to stop people voting for the same thing twice. So far my thoughts have been:
Drop a cookie once the vote is complete (susceptible ...
6
votes
6answers
2k views
Voting algorithm: how to calculate rank?
I am trying to figure our a way to calculate rank. Right now it simply takes ratio of wins / losses of each individual entry, so e.g. one won 99 times out of a 100, it has 99% winning rank. BUT if an ...
3
votes
2answers
109 views
Having logic problems with a voting system
i am looking for help on an up down voting system.
at the moment i have a voting table that references the user that voted , the user who was voted for and the piece of information(a parking spot) ...
3
votes
3answers
92 views
Which one is better for a voting function
Which system would be the best to go ahead with for voting function and why? ;
Putting the votes separately inside a database table and calculating the average when it is needed
Having only one row ...
2
votes
1answer
513 views
How do I execute a vote using the Rails 3 gem 'thumbs_up'?
So I want votes to be triggered using jQuery/AJAX and an image. i.e. I have a thumbs up icon and thumbs down.
I have setup the gem, and ran the rake db:migrate and have everything sorted out.
But I ...
2
votes
1answer
136 views
Does anyone know of any good open source voting software?
I'm looking for a voting system that we can implement at work amongst our developers.
We need something that allows developers to submit ideas about what we can do to improve our development ...
1
vote
1answer
99 views
which rails voting system gem has the following features?
Which rails voting system plugin or gem that has the following features
vote up &down
Ability to show net number of votes
vote for all objects in the model (But only once per object per user)
...
0
votes
1answer
30 views
How would you add weight to a voting system like “thumbs-up” based on time?
There's a cool library I found for voting on things -> https://github.com/brady8/thumbs_up
I'd like to be able to modify it myself or with someone's help to add weight based on time. Business logic ...
0
votes
0answers
30 views
Storing User Voting Locally
I have a site where people can vote on items. For the time being, because of storage concerns, I would like not to store the votes people make in the database. Instead, I was considering some other ...
0
votes
0answers
61 views
No method error -undefined method votes_for for #<ActiveRecord::Relation
I am trying to use vote_fu with my app,But when i try to show votes in the browser i keep getting NoMethodError in Item#show undefined method votes_for for #<ActiveRecord::Relation:0xb411044 ...
0
votes
0answers
58 views
rating formula between two items
What will be the best rating formula to decide about the winner where the voting is done in terms of "5 star" rating?
For e.g. there is a video site in which users can give between 1 to 5 star rating ...
0
votes
3answers
304 views
Products Ranking
I need to sort some products base on user ratings.
Suppose we have 3 products {a,b,c} and we have user's feed backs about this products. It's not important which user give us feed back (this question ...
-1
votes
1answer
133 views
Voting Method - Mysql
I want to use two buttons to increment two fields in a database table according to selection.
Field 1: blue
Field 2: yellow
For example:
Blue: (3) - Select (+1) - Button 1 (increment the #3)
...
-2
votes
1answer
121 views
Self ordering voting system [closed]
I need some javascript based code that can help my voting system. Basically I am struggling to work out how to get my items that receive votes to move into order by itself LIVE. So If an item had 52 ...