module.getContribution = function(username, repo, cb) {
    var url = API_REPO + '/' + username + '/' + repo + API_REPO_CONTRIBUTOR;
    d3.json(_useBackend(url))
      .get(function(err, data) {
        if (err) {