Books
Here's a table of everyone's learning book organized by weekly progress.
The lodash code below retrieves the name and the avatar url of each person in order to generate the table.
return _.sortBy(_.map(data, function (d) {
return {
name: d.owner.login,
avatar: d.owner.avatar_url,
url: d.owner.html_url
}
}), function(d) { return d['name'].toLowerCase()})