Trick to fake the github board

This script will paint your github board more green, you can revert the changes by deleting the repository and its commits.

# painter.sh
for i in {1..19477}; do 
  j=$(date -d "1970-01-01 +$i days")
  touch "./bricks/$j"
  git add .
  git commit --date "$j" -m "save"
done
  git push