GitHub Contribution Graph Art Generator




To get your max commit value open your GitHub profile and run the following in your browser's console (sorry, I only tested it in Chrome):

var data = document.querySelectorAll("[data-count]");
var values = Array.from(data).map(function (x) {
  return parseInt(x.dataset.count, 10);
});
Math.max(...values);
The number in the final result is your Max Commit Value.