Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

54
votes
19answers
2k views

Hunting cheaters in a voting competition

Currently we are running a competition which proceeds very well. Unfortunately we have all those cheaters back in business who are running scripts which automatically vote for their entries. We ...
21
votes
9answers
2k views

Practical applications of homomorphic encryption algorithms?

It appears there there were interesting things going on in cryptography: the first homomorphic encryption scheme appeared recently (explanation, HT). Roughly speaking, it is a way of encoding x into ...
17
votes
13answers
4k views

Stopping users voting multiple times on a website

I'm planning to add some vote up/vote down buttons to a website I run. This seems easy enough but I want to stop people voting multiple times. One solution would be to make them register before ...
17
votes
12answers
1k views

Why aren't voting machines open source?

Sooo...it's only sort of programming related, but I figure it's election day, right? Is there a single good reason why they aren't, not necessarily open source in that anyone can contribute, but open ...
13
votes
9answers
1k views

1 vs 1 vote: calculate ratings (Flickchart.com)

Instead of rating items with grades from 1 to 10, I would like to have 1 vs 1 "fights". Two items are displayed beside each other and you pick the one which you like more. Based on these "fight" ...
11
votes
5answers
2k views

Is there a free web service for up/down voting ideas?

I'm interested in starting an open-source project based on an idea from another thread, and I think that it would be valuable to have a system in place to allow ideas for the new project to be ...
8
votes
3answers
160 views

Is there an algorithm for anonymous, changeable, secure voting?

I'd like to implement a feedback mechanism in my application--basically, a score. The requirements are: A total exists, and can be read A user can add his score to the total A user cannot add a ...
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 ...
8
votes
3answers
2k views

Opensource Voting System

I'm planning to build a community-driven website with voting functionality similar to StackOverflow (or Digg etc..). I really like SO's voting system where your points are deducted for voting down ...
7
votes
3answers
125 views

What is the “make everyone happy” voting algorithm? [closed]

I'm looking for a voting algorithm that picks the winners based on combination of majority of votes and number of votes. Real life example: Our company has a cereal bar. We have room for 3 ...
7
votes
4answers
3k views

Django Vote Up/Down method

I am making a small app that lets users vote items either up or down. I'm using Django (and new to it!). I am just wondering, what is the best way to present the upvote link to the user. As a link, ...
6
votes
2answers
504 views

Sorting A List Of Songs By Popularity

For student council this year, I'm on the "songs" committee, we pick the songs. Unfortunately, the kids at the dances always end up hating some of the stupid song choices. I thought I could make it ...
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 ...
6
votes
2answers
427 views

How can I apply mathematical function to MySQL query?

I've got the following query to determine how many votes a story has received: SELECT s_id, s_title, s_time, (s_time-now()) AS s_timediff, ( (SELECT COUNT(*) FROM s_ups WHERE ...
5
votes
1answer
397 views

C#: Generating .BLT Files for OpenSTV Elections

I just downloaded OpenSTV after seeing the most recent SO blog post, regarding the results of the moderator election. Jeff wrote that he used OpenSTV to conduct the election, and supplied a ballot ...
5
votes
3answers
900 views

Best practice for comment voting database structure

I'm working on a PHP app that has several objects that can be commented on. Each comment can be voted on, with users being able to give it +1 or -1 (like Digg or Reddit). Right now I'm planning on ...
4
votes
2answers
168 views

Counting number of positive and negative votes:

I have the following tables: post (id, title, content) etc author (id, username) etc author_vote (post_id, author_id, value) Value is a tiny_int that can either be 1 or -1. I want to count the ...
4
votes
2answers
341 views

Weighted voting system with karma

This question is more logic than programming at the moment.. once I understand what algorithm(s) I need to use I'll be looking into how to implement it. I've got a list of items in a database that ...
4
votes
4answers
141 views

How should I order these “helpful” scores?

Under the user generated posts on my site, I have an Amazon-like rating system: Was this review helpful to you: Yes | No If there are votes, I display the results above that line like so: 5 ...
4
votes
2answers
148 views

How to mitigate against bandwagon effect (voting behavior) in my ranking system?

What I mean by bandwagon effect describes itself like so: Already top-ranked items have a higher tendency to get voted on at all, possibly even to get upvoted. What I am hoping to get is some ...
4
votes
3answers
378 views

Move div based on user voting

I'm new here, but I love the site. I checked through the other similar questions, but I didn't see what I'm looking for. I'm a musician, and I've been doing a "song of the day" thing for a while ...
4
votes
3answers
329 views

How to ban or remove unruly or abusive SO cit [closed]

Clearly there needs to be a way I think ? EDIT: dup of http://stackoverflow.com/questions/572113/how-to-deal-with-repeated-abuse
4
votes
2answers
1k views

Stack Overflow / reddit voting system in php

I'm looking for examples of how to implement a StackOverflow / reddit voting system in php. Basically I want the Up and Down arrow box. Are there any good examples out there?
3
votes
6answers
90 views

Best way of storing incremental numbers?

I'm implementing a voting system for a relatively large website and I'm wondering where should I store the vote count. The main problem is that storing them in the main database would put a lot of ...
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 ...
3
votes
2answers
116 views

Programming strategies for allowing anonymous / unauthenticated voting on web sites

I'd like some pseudo-code or white board suggestions for permitting unauthenticated voting on my site. I've looked through related threads on this topic, but I think my scenario is different enough ...
3
votes
2answers
228 views

Designing a Django voting system without using accounts

We are considering implementing a voting system (up, down votes) without using any type of credentials--no app accounts nor OpenID or anything of that sort. Concerns in order: Prevent robot votes ...
3
votes
1answer
176 views

Looking for super simple but effective BUG/Feature list that users can vote

I am looking for some javascript or php code where it allows anyone to enter something in a list, and allows people to vote (1 vote per IP or cookie) or rate (not important, OK, important). There ...
3
votes
1answer
159 views

Rating/Voting and Tag APIs, do they exist?

Everyone loves to display Digg/Tweet/Like badges on their websites, and the Disqus Comment System is starting to take over. The benefits of those systems from a developers perspective ...
3
votes
2answers
620 views

Voting System Like SO - C#, Asp.net, Webforms

There are a lot of questions similar to this but none dealing with webforms and c# that I have found. I have Linq-to-SQL, a Vote table where I want to record the vote ...
3
votes
2answers
488 views

Implementing vote_fu in rails app (or alternatives)

I've been attempting to implement a robust voting system in rails for some time but have been struggling. Initially I built my own voting system, but it was simplistic. In a nutshell it just ...
3
votes
2answers
187 views

What are the implications of offering a public voting system (no sign-in required)?

I am wondering what are the technical hurdles involved with offering a voting system (or say ratings) without requiring the user to sign in. I know there are issues with robots, voting a bunch - but ...
3
votes
3answers
1k views

SQL: Counting unique votes with a rolling votes-per-hour limit

Given a table of votes (users vote for a choice, and must supply an email address): votes -- id: int choice: int timestamp: timestamp ip: varchar email: varchar What's the best way to count ...
2
votes
1answer
44 views

Can't figure out the system for “approve post once 10 users like it”

I have a voting system for articles. Articles are stored in 'stories' table and all votes are stored in 'votes' table. id in 'stories' table is equal to item_name in 'votes' table (therefore each vote ...
2
votes
1answer
510 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
2answers
274 views

Weighted voting algorithm

I'm looking for information on which voting algorithm will be best for me. I have a basic 'Up/Down' voting system where a user can only vote the product up or down. I would like to make it weighted ...
2
votes
3answers
812 views

Up/down voting script

I'm trying to develop a voting system in PHP for my posts where visitors can vote them up or down and then I should be able to sort posts by highest/lowest rated. Can anyone please recommend a good ...
2
votes
2answers
125 views

Rendering an Edit partial while selected a defaulted value

I have a partial in my rails app that loads the vote form (It's just a select with numbers ranging from 1-5). I'm now making another partial that loads up if the user has already voted it's suppose to ...
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 ...
2
votes
1answer
172 views

How can I build a voting system to support multiple types of objects to vote on?

I'm really looking for something very similar to the way SO is setup where a few different kinds of things can be voted on (questions AND answers). What kind of DB schema, generally, could I use to ...
2
votes
3answers
361 views

Strategy for unique user-voting such as Stackoverflow's?

I noticed that for voting SO implements an XHR method which POSTs to a posts controller and sends the post ID and vote type through the URL, in addition a fkey parameter is sent, eg: ...
2
votes
1answer
170 views

Programmatically using Outlook “voting” functionality

Is there a way to programmatically access the "voting" feature of Outlook email? I'd like to be able to send emails with voting enabled, and also get the replies (preferably without polling). Thanks! ...
2
votes
3answers
694 views

Help with jQuery voting system. Trouble updating html vote count

I'm trying to create a Stackoverflow like voting system, and I've run into a slight problem. I have the following HTML that has jQuery onClick events wired to it: <div ...
2
votes
2answers
1k views

Best way to implement voting in a Rails application?

What's the best plugin these days for implementing voting on a Rails site? Two I'm aware of are: vote_fu acts_as_voteable
2
votes
3answers
958 views

A Ranking algorithm

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 ...
2
votes
3answers
250 views

Voting system/engine for customers?

I'm talking about some web thing like http://uservoice.com/ Can you suggest any other similar service, web-site or may be (even better) a ready engine for deployment on own server? Actually, the ...
2
votes
10answers
506 views

When creating a social voting system, should you keep track of downvotes and upvotes separately in the DB?

With things like SO, Digg, Reddit, etc... Should one keep track of downvotes in the database independent of upvotes? Or should they simply have a "votes" field that is decremented/incremented based ...
1
vote
2answers
43 views

Displaying total votes count with thumbs_up

I am trying to display total votes cast on a post with thumbs_up gem but it does not seem to work. Here is my code def vote_up begin post = Post.find(params[:id]) ...
1
vote
2answers
169 views

Prompt user to rate an Android app inside the App

In my Android app, I want to prompt the user at some point of time to rate the app in Android market. Having searched for an approach, I've found some code on this website. This code seems to work ...

1 2 3