A small and practically useless junk code that reminds me (or you) to drink some water, cos most of us simply just forget.
- Why is the .exe over 7MB?
- I've used Auto-py-to-exe to make an .exe file, which includes some of the python libraries, so the potential end user doesn't have to install python to run this.
- If you're skeptical, just download the source .py file and run it yourself
- I've used Auto-py-to-exe to make an .exe file, which includes some of the python libraries, so the potential end user doesn't have to install python to run this.
- The clock in console is not correct!
- I've opted to use UTC time by default despite it not being my timezone either. To get correct (current) time in the console output, you need to replace the
gmtime()
withtime.localtime()
in the source .py file. Unfortunately, the .exe release is hardcoded with the universal time.
- I've opted to use UTC time by default despite it not being my timezone either. To get correct (current) time in the console output, you need to replace the