Scrolling artwork on an active profile
elliot-nelson opened this issue · 0 comments
Awesome project!
I'm just getting up to speed on the idea and it looks like your contributions graph scrolls 1 "pixel" to the left each week, showing roughly a 52x7 pixel image (+/- incomplete weeks on the end).
So, if I had an existing commit history like so:

I would need to look at the darkest existing pixel (which is 20 commits), and according to another post, in order to shade that out to the lightest color, I would need 400 commits (20 ^ 2). So in theory, I could build a 52x7 pixel image that repeats (wraps nicely from left to right), and for each completed week, I can take (20 ^ 2 - RealCommitsThatDay) and use that as the darkest pixel.
I think what I'm looking for is a roadmap where I can save the artwork I'd like to see on my real profile page, put it in a repo, and have the script automatically "fix" my work each week (keeping in mind I have no idea how much or how little work I'd do in the future.)
So, this might need to be a wrapper around the example script. Anyone thought about building something like this?