Create Creative Designs using Github Calendar
pip install pygame python-dateutil
YEAR = 2020 # The year you wanna operate on
REPO_DIR = '/home/anurag/repo/test' # Path of the repository where all the commits will happen
USERFULLNAME = 'Anurag Kumar Singh' # Your Full Name on Github for specifing the autor in commits
USEREMAIL = '[email protected]' # Your Email on Github for specifing the author in commit
UPPER_LIMIT = 5 # Max no of commit per day
LOWER_LIMIT = 2 # Min no of commit per day
# The no of commit on a day is determined randomly between the upper and lower limit
# Set both UPPER_LIMIT and LOWER_LIMIT to same no to have a constent commit no.
- After updating the main.py, run it
- A window will apper, design whatever you want on the grid, then click on
start
to start the commit process - There is a option to save your design, draw whatever you want and then click on
save and exit
it will create a new<year>.pkl
file will stores the design data. It can be retrived by running the program again and click onold
button. It will retrive the stored design. - The designs are stored with the corresponding year
- If you have git commit signing turned on, the program will turn it off for that particular repo cuz signing commits takes a hell lot of time.
- The program only commits, you'll have to push it yourself.