reputation-tracker

To build a similar reputation tracker as Jon's by Python

Jon Skeet has the following reputation tracker which is built by C#. I am interested in building a similar app by Python such that at least the following modules are used beautiful soup defaultdict We apparently need to parse the reputation from the site 'http://stackoverflow.com/users/#user-id#' by Bautiful soup to store the dat...

SO rep JSON not working

I'm writing a Google Chrome extension for users to monitor their Stack Overflow account and notify them of new reputation, but I'm having problems with the JSON request to access the rep data. I'm using JQuery as my JSON library. Using the address: http://stackoverflow.com/users/rep/{userid}/{from-time}/{to-time} where the times are in ...

How to design logic to store rules assigning badges and reputation points to site users

In my current web application, I have to create a "Reputation Points & Badges Engine" somewhat similar to SO. That system contain many of rules and each rule is associated with few predefined user activities (like view question, vote question, etc). What I am trying to figure out the solution for: 1. Store all rules in database tables (...