|
If my monitor has a 60hz refresh rate, should I be able to notice any difference whatsoever between say 60fps and 500fps?
Everywhere I read tells me that there's no difference, but I could swear I can notice something. As if the input lag is increased...
Started by Post on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Having the proper refresh rate..
|
|
I was playing a game with another player with a higher rating than me, and we both tied (11-11) , yet I lost some rating and he gained some rating. What happened with that? Was it as glitch because it happened twice.
Started by alternative on
, 11 posts
by 7 people.
Answer Snippets (Read the full thread at artofproblemsolving):
I find that makes me lose rating too when.
Game #? maybe your finished at a slower rate then him.
|
|
I have this jQuery code that handles hovering over rating stars, when you hover they glow as they're meant to. Problem is, once you've taken your cursor out, it still displays what your cursor was on (and doesn't show the original rating). How can I make...
Started by Jack W-H on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
});
From your code, I can conclude that your Out code will probably look like this :
$("id^=....
The hover event works as follow in Jquery:
$("[id^=rating_]").hover(function() { //IN }, function() { //OUT //Your code when the cursor is out here.
|
Ask your Facebook Friends
|
There is a query I've just made
SELECT * FROM users INNER JOIN ratings ON ratings.rateable=users.id ORDER BY SUM(ratings.rating)/COUNT(ratings.rating)
But, it doesn't work, I just get one person in result, although there are 3 people in ratings table!...
Started by Anton on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you storing the users.id field value in the rateable column in your ratings table?
This is just a hunch, but....
It's hard to tell because I can't see all of your stuff....but my guess is in the ' ON ratings.rateable=users.id ' part of your SQL .
|
|
So I think my rating decayed from 1653 to 1199 in a few weeks (I think two to three). As I only check FTW once in a while to see if people are behaving, I don't really care, but it's probably something that should be mentioned because this seems way greater...
Started by PhireKaLk6781 on
, 20 posts
by 12 people.
Answer Snippets (Read the full thread at artofproblemsolving):
How many weeks in a row minimum do you.
Decay rate is based on last time played, not last time logged in.
Just out of curiosity, what is the Decay Rate? Like how many weeks will drop how much rating.
|
|
Hello dudes and dudettes, i don't know if there is allready a thread like this but let the...
gonk scream EVO-RATING scream gonk
Starts!!! stressed
Well, this is simple, you can post your avatar to be rated or you can rate avatars, but the difference ...
Started by 7VM on
, 13 posts
by 4 people.
Answer Snippets (Read the full thread at gaiaonline):
Epic bump a tragic love epic bump THANKYOU VERY MUCHO!!! heart 7VM a tragic love epic bump THANKYOU VERY MUCHO!!! heart
ur welcome im here to hang out x3 a tragic love 7VM a tragic love epic bump THANKYOU VERY MUCHO!!! heart
ur welcome im here to hang... .
|
|
I'd like to give my users the ability to rate each item on the site from 1 to 5. They also must be able to go back and revise their rating for each item as they please. Lastly, the item's page will display the average-to-date of all user ratings when ...
Started by Andrew Heath on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You will get an error....
That way a user can only rate an item once.
Instead of having an ID field in the table you proposed, put the key on ITEM and USERID .
One user can rate many items and one item can be rated by many users.
Items.
|
|
Using this plugin: http://www.fyneworks.com/jquery/star-rating/#tab-Testing
I have a simple callback function that picks up the id from the radio buttons:
<input type="radio" class="auto-submit-star {split:2}" id="myid" value="1" /> $('.auto-submit...
Started by Roger on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is how I solved it for the ....
If (typeof $(this).attr('id') == 'undefined') {...}
Ok Roger - I found this because I was facing the same EXACT issue .
No need to set an id for it.
If the id is undefined, then you know they clicked the cancel button .
|
|
I am considering working for a consultant that charges a known rate, lets say $100/hour. As a contractor working for the consultant, what hourly rate should I expect?
Edit:
This could become a permanent source of work. It is mostly Rails work. I do know...
Started by contractor rate on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The most you can get percentage -- the rate that you will be paid will be based on what they can find similarly-skilled people to work for, and the rate they charge....
Can you negotiate your rate? I'd say whatever you can negotiate for.
|
|
The actual question is a little more complex than that, so here goes.
I have a website which reviews games. Ratings/reviews are posted for each game, and so I have a MySQL database to handle it all.
Thing is, I'd really like a page that showed what score...
Started by different on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
SELECT DISTINCT game.gameName, game.gameImage, review.ourScore FROM game LEFT JOIN review ON game.ID = review.gameID ORDER BY review.postedOn LIMIT 10
Or something like that, check out how to use the Distinct first, I'm not sure on the syntax, and you... .
|