cubing / algdb

📚 Algorithm Database
http://algdb.net
GNU General Public License v3.0
22 stars 3 forks source link

Alg upvote scoring #22

Open coder13 opened 4 years ago

coder13 commented 4 years ago

This issue purely exists for discussion: will be marked as closed when implemented down the road.

We need a way to make newer votes matter more than older votes.

One way to do this is to take unix timestamps, pipe them through some function, and get an output that then gets incremented to the current score to produce a new score.

This operation should be reversible so long as we know when a user upvoted an alg.

big213 commented 4 years ago

Implemented a basic reddit-style up/down vote system for algs in 927203519230e2a771bc0d1f3883cf45b08a6588

Can this be closed?

coder13 commented 4 years ago

This should exist purely for discussion for a more advanced upvoting scoring system.