Contribution Art

A script that publishes GitHub commits in a pattern to create visual artwork.
By back-dating GitHub commits to this repository, this script can create shapes in symbols in their GitHub Contributions Graph
The commits are defined by a provided grid. For example, this pattern creates a heart:
[
[0, 1, 1, 0, 1, 1, 0], # Sunday
[1, 1, 1, 1, 1, 1, 1], # Monday
[1, 1, 1, 1, 1, 1, 1], # Tuesday
[1, 1, 1, 1, 1, 1, 1], # Wednesday
[0, 1, 1, 1, 1, 1, 0], # Thursday
[0, 0, 1, 1, 1, 0, 0], # Friday
[0, 0, 0, 1, 0, 0, 0], # Saturday
]
For a brighter color for some pixels, you can change the number in the graph to be up to 23, as it splits the commits based on the hour.
Theoretically, someone could run DOOM on their contribution graph with something like this.