egg wrote:This is an interesting strategy, but it brings up more questions:
- What do you use for the weight, number of episodes added, number of episodes with a file, number of episodes the user has or number of episodes user has marked as seen?
The user's body weight, of course.

No, as I described, the weight is a floating point value between 0 and 1. If the vote was cast before any episode was added, the weight is set to 0. If the vote was cast after at least five episodes were added, it is set to 1. If it was cast inbetween these two events, it is calculated according to
starttime = add-date of the episode that was added for this anime before any other episodes.
endtime = add-date of the episode that was the fifth episode that was added for this anime.
weight = (votetime - starttime) / (endtime - starttime)
When I posted this the first time, I made a mistake and had (endtime - votetime) in the divisor. Please ignore that.
egg wrote:- Should there be some kind of notification reminding a user to revote? So if a user voted when there were only a few episodes, even if they agree with the vote after watching more episodes they would have to revote...
Yes, definately. If you have voted too early, the anime page should tell you so: "
Rating: x.xx (x votes), your vote: x.00 - revoke -
Note: your vote has been (partially) ignored because you have voted too early."
egg wrote:- When do you show the vote, after 10 users, or after a weight adjusted value of 10? So if you had 19 users who voted with a weight of .5 on average, would it be displayed?
I would go for the second option: Only display the rating if the cumulative weight of all votes is >=10. That makes more sense, since early votes are supposed to be ignored anyways.