Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
926 views

Clarification on how to use “thumbs_up” voting gem with Rails 3

I am attempting to implement the "thumbs_up" voting gem on a Rails 3 app [https://github.com/brady8/thumbs_up], however the instructions are unclear on the actual implementation. After requiring the ...
1
vote
2answers
79 views

Three Dimensional Hough Space

Im searching for radius and the center coordinates of circle in a image. have already tried 2D Hough transform. but my circle radius is also a unknown. Im still a beginner to Computer vision so need ...
1
vote
3answers
44 views

Tally votes using SQL and JOIN (is this possible?)

My question is similar to this one, which I've tried the solution to, but it wasn't exactly right for my scenario. I have 2 tables: votes and posts. Here is a basic sketch: `posts` ...
1
vote
2answers
440 views

When to use geometric vs arithmetic mean?

So I guess this isn't technically a code question, but it's something that I'm sure will come up for other folks as well as myself while writing code, so hopefully it's still a good one to post on SO. ...
1
vote
2answers
65 views

SQL get polls that specified user is winning

Hello all and thanks in advance I have the tables accounts, votes and contests A vote consists of an author ID, a winner ID, and a contest ID, so as to stop people voting twice Id like to show for any ...
1
vote
1answer
362 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 ...
0
votes
1answer
50 views

Preventing Multiple Simultaneous Votes From Different Users

I am not 100% sure on how to describe this, so here's a quick explanation of what I am doing: I have a website where people can vote UP or DOWN to a "champion." These champions start with 100 health. ...
0
votes
1answer
29 views

Count the number of votes per post

We're currently stuck trying to make a simple (?) SQL query. We have these two tables: create table `post` ( `id` integer primary key ) create table `vote` ( `id` integer primary key, ...
0
votes
1answer
97 views

Sessions: Click to raise number

I want to make a voting section so that when the user clicks a link it adds up a number (limit to one peer ip or something like that). For example: Celtics: 0 (Click to vote) -----------this one is ...
0
votes
2answers
999 views

Mysql get count of rows for each day

My Current query is: SELECT DISTINCT DATE(vote_timestamp) AS Date, COUNT(*) AS TotalVotes FROM `votes` WHERE vote_target_id='83031' GROUP BY DATE(vote_timestamp) ORDER BY DATE(vote_timestamp) DESC ...