Tagged Questions
The vote tag has no wiki summary.
8
votes
9answers
824 views
Vote for the best protocol for the given scenario
I have a design decision to make. I need your advice.
Requirements:
A server and a client. client is typically a mobile phone.
Connected through the Internet.
Server and client want to talk to each ...
6
votes
2answers
104 views
How do you store and display if a user has voted or not on something?
I'm working on a voting site and I'm wondering how I should handle votes.
For example on SO when you vote for a question (or answer) your vote is stored, and each time I go back on the page I can see ...
6
votes
3answers
1k views
Create unique Poll/vote/survey in php
The unique poll/vote/survey i mean here is, user can only vote once. How do i do that? Track their ip? Login? Beside login, what else? (login is my last option, thus beside login, is there anything ...
3
votes
1answer
162 views
How can I conduct a poll through an irc bot?
I've set up a irc bot using socket. I've added a few commands , but I'd like to add a "poll" function.
Ideally, the bot would get a command with this format:
!poll <name> <opt1> ...
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
4answers
537 views
Preventing multiple daily votes in a contest
Voting contests seem to gain a lot of attention from people who want to game a system for fun. I know I spend a good amount of time fooling around with their forms and URLs, deleting cookies and ...
2
votes
3answers
44 views
What's the general technique used in web languages to allow non-registered users to vote?
I am seeking to understand the general mechanism used by certain websites to allow non-registered users or simply guests to vote for something (e.g. reviews, videos, images..etc). How do they keep ...
2
votes
1answer
77 views
Display data based on timeframe with SUM
With PHP and MySQL I am trying to display items with most votes over a certain period of time (24 hour, 1 week, 1 year, etc). When someone votes on an item, a table records the user, item id, vote, ...
2
votes
2answers
90 views
How to get photo of the day?
I have two tables in MySQL database:
photos:
PID - PhotoID [PK],
DateOf - DateTime of uploading,
UID -UserID (owner of the photo)
ratings:
WhoUID - UserID who rated,
DateOf - DateTime of rate, ...
2
votes
1answer
137 views
validating a poll for user to vote once
How creating a public poll.how do you validate that the user only vote once.I tried using an Ip address but some organizations use 1 Ip address.
2
votes
2answers
132 views
How to store votes for CouchDB document?
I am looking for a good example how to store votes in a document.
For example if we have a document which is post and users can vote for it.
If I store the vote in a field in the document, for ...
2
votes
3answers
250 views
Implementing an upvote/downvote system in Javascript but can't get the math right
var $arrow = $(this);
var $sibling = $arrow.siblings('span.arrow');
var $score = $arrow.siblings('span.score');
var vote = $arrow.hasClass('up') ? 'up' : 'down';
var ...
2
votes
2answers
129 views
VoteHandler in Google App Engine
I am trying to have this function limit a user to only one vote per image. However it currently lets all votes through. If I change "if existing_vote != 0:" to "if existing_vote == 0:" it lets no ...
2
votes
4answers
356 views
how to restrict user not to vote an article more than once?
in my application a user can post his/her article that other users can response upon ans vote up and down also like stackoverflow has for posted question ans answers.
How can I restrict user so that ...
2
votes
3answers
2k views
reddit style voting with django
Hay i need to hand implemeneting a voting system into a model.
I've had a huge helping hand from Mike DeSimone making this work in the first place, but i need to expand upon his work.
Here is my ...
2
votes
2answers
172 views
How can I implement a voting system (UP/DOWN) or (THUMP UP/DOWN) like StackOverFlow in .NET?
How can I implement a voting system (UP/DOWN) or (THUMP UP/DOWN) like StackOverFlow in .NET ? I found PHP codes but I want something that works in .NET environment. I don't care about security issues ...
2
votes
3answers
648 views
Content Voting Database and Application Design
How would you design a content voting mechanism that could be applied polymorphically to multiple models / classes. (in a ruby on rails context preferably, but others are fine)
Given that instances ...
1
vote
3answers
74 views
Prevent double voting
I'm creating a web application where users will vote for some candidates by clicking thumbs up or thumbs down, and these users won't have any account on the site.
What is the best technique to use? ...
1
vote
3answers
50 views
Need support with figuring out a query for a cron job
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 ...
1
vote
1answer
56 views
how to restrict user input (eg: voting button) based on their IP address?
I'm building a website with xhtml, css, jquery, php and mysql. In one of the webpages, I have given the option to the user to vote - there is a like and dislike button on the page, and when the user ...
1
vote
1answer
43 views
how to add a deadline on vote?
i want to add the "available time" when the user establish a vote . how to implement?
For example i set up a vote ,and it is available to vote by 2012.1.1.In addition ,the vote's "available time" ...
1
vote
0answers
69 views
Problem with installing vote_fu_rails_3 gem
I'm trying to install the vote_fu_rails_3 gem for rails 3. I ran the command:
$ rails plugin install git://github.com/vshvedov/vote_fu_rails_3.git
which I found here:
...
1
vote
2answers
58 views
Django counting related objects in model layer
It is possible to do something like this working:
class Book(models.Model):
voters = models.ManyToManyField(User, blank=True)
vote = models.IntegerField() # summary of all votes
def ...
1
vote
1answer
96 views
Fair quiz without registration, is it possible in webapp?
I'm going to make simple quiz form on site.
Are there ways to make it fair, that nobody vote up multiple times.
there are some ways to identify uniqueness of vote with their lacks:
Cookies - the ...
1
vote
2answers
186 views
Looking for a free “Feature Request/Vote” system in asp.net
I'm looking for a free asp.net system or component which allow my users to make feature requests and vote for existing ones.
It's for internal use (a non profit organization - with "old" users ;)). ...
1
vote
1answer
55 views
jquery function for individual divs
I thought this could be achieved with the .prev() function but for some reason it isn't working.
I'm creating thumbs up/down buttons for posts on a blog. I'm trying to display messages according to ...
1
vote
1answer
115 views
jquery toggle votes using jquery toogle event?
i have got this script that works fine, that allows a user to vote, but im kind of stuff of how i can make the vote button, when clicked again it toggle back to normal image! just like stackoverflow:
...
1
vote
1answer
150 views
Storing “likes” of an item in a database?
I'm running a Rails app on Postgres through Heroku.
I'd like to implement similar to Facebook "likes" on my site for various items, such as user comments. What's the smartest way to store these in my ...
1
vote
1answer
363 views
Sorting top votes in a timeframe using “Vote it up” and wordpress
I'm building a digg-like voting site for christmas greetings. I'm using wordpress and the "Vote it up" plugin. I am having alot of troubles being able to sort the vop votes within a timeframe.
You ...
1
vote
3answers
380 views
How can I use PHP and JavaScript to make an image clickable, and increment a counter stored as a flat file?
Im trying to find a php/js script that will let me take an image, and when clicked, increase the number in a flat file, and save that file.
I know how to include the file to get the vote total.
Im ...
1
vote
4answers
272 views
Storing “votes” in a database
I'm writing what will be an intranet application, and one of its features is roughly analogous to content voting - not unlike what SO, Amazon, and many other sites do.
Assuming each votable piece of ...
1
vote
7answers
983 views
What is the best tool for manipulating AFP print streams?
The IBM print file format is AFP.
Advanced Function Presentation (AFP) is a presentation architecture and family of associated printer software and hardware that provides for document and ...
0
votes
1answer
44 views
How to create a simple vote by ajax in CakePHP 2.0
I am just trying to create a simple vote with CakePHP 2.0 and Ajax. I am a newbie in this framework so i find it really difficult...
I just want to create a link with a vote action which will call an ...
0
votes
2answers
41 views
onclick pass two variables to php with jquery (vote system)
I have 5 stars system in html/smarty below
<ul class="star-rating" id="{$ID}">
<li><a href="#" class="one-star"></a></li>
<li><a href="#" ...
0
votes
0answers
42 views
API powered Rating system. How to set up one?
I am trying to make a rating system, exactly the same as Youtube's thumbs Up/Down.
I already asked this question
(Youtube-like like/dislike rating system code wanted?)
, but couldn't get much help on ...
0
votes
5answers
47 views
Counting votes in MySQL
I have a table, with the following columns:
id name vote
Each name is unique, and each vote is either null or contains a name.
I need a MySQL statement to return how many votes each person has, ...
0
votes
1answer
32 views
Preventing multiple votes with cookies
A common method for preventing non-members from multiple voting is to set a cookie (regardless of possibility of deleting cookies). In numerous discussions about this issue, one point is ignored. For ...
0
votes
1answer
47 views
Weka Vote: how to tune individual classifier
JMDJSMJLMSRIOMONS
Hi, I am using weka.classifier.meta. Vote. I am combining three classifiers, one of them is SMO. I want to know how can I specifically set the parameter values for SMO. Is there a ...
0
votes
1answer
31 views
Cron job breaks make_voteable gem? [SOLVED]
I'm facing a very strange bug with the make_voteable gem. Actually I'm not even sure it's related to make_voteable or if it's a rake issue.
My application has a Project model. Projects have a status ...
0
votes
1answer
37 views
how to replace the number with the “image width” in vote page
<form action="/votes/vote" method="post">
<% for option in @vote.options %>
<%= option.name %>
<%= option.quantity %>
<input type="checkbox" name="op[]" ...
0
votes
1answer
15 views
Displaying votes on public stream
Am I allowed to display votes (self designed, not likes) of a photo competition app as stories on a public stream, e.g. "Becca has just voted for this picture?"?
If no, is there an alternative - for ...
0
votes
0answers
213 views
Best voting system for codeigniter [closed]
I am putting together a little web app where I will need typical 'like-style' voting. Any suggestions for existing plugins and/or system that are fairly robust? Well aware that there is no sure-shot ...
0
votes
1answer
23 views
How to determine if Submission has been voted on in Rails
I've built several apps in rails that have submissions that you can vote on. Vote up or vote down. I've always custom built the voting functionality, and with each app, the code has gotten better ...
0
votes
2answers
233 views
Like/Dislike system like FB
I have my tables set and the design I wanted...the only thing in my way of creating a sexy like/dislike system for my site is the actual PHP it would take (dont worry i wrote a bunmch of the code, its ...
0
votes
1answer
68 views
How to retrieve the best voted article, per day, per week, per month or forever?
I've a voting system which is actually simple.
vote_id, user_id, article_id
I need now to be able to fetch the best voted article per day, week, month, year, forever.
I though I could add a ...
0
votes
0answers
49 views
Vote_fu plugin for Rails 3 routes and/or votes controller issue
I am writing my first real Rails app, and I am trying to implement the vote_fu plugin for rails three.
I have tried to follow the examples that are included in the plugin, but it's not working.
I ...
0
votes
0answers
58 views
1. Vote_Fu for Rails 3 2. I don't know what I'm doing 3. ??? 4. Profit
I am writing my first real Rails app, and I am trying to implement the vote_fu plugin for rails three.
I have tried to follow the examples that are included in the plugin, but it's not working.
I ...
0
votes
2answers
316 views
SQL/PHP calculate percent of yes/no votes
This has me stumped I have Googled for ages now and have searched here but have had no joy on what is probably a very simple to do ...I dont know maybe im just searching with the wrong search terms i ...
0
votes
1answer
141 views
Rails 3 - Thumbs up - Routing problem?
Hi
I've got a project where I'm using Thumbs_up, when you enter a single retailer you can either vote it up or down. It works like a charm.
But now I try to add this feature to a index page of all ...
0
votes
1answer
82 views
Public Survey Websites? to run a poll? [closed]
I have a new mobile application idea and before I jump in deep I would like to try and run an online survey / poll to see if there is an actual need for it.
Does anyone know of any public survey / ...