Closed SpenserHaddad closed 6 years ago
Thanks for the comments!
We cleaned up the code to also include your advice including removing reserved keywords. The API keys were a mistake (which GitHub promptly detects and sends a warning email conveniently enough) and were immediately regenerated, but thanks for noticing!
General
You may find it useful to have a .gitignore file at the root level of the repository so build- or user-specific files are not included for everyone else. For example, the __pycache__ and .DS_Store directories are machine-specific, so the repo doesn't need to include them.
Your Archives directory could safely be stored using a git branch, or even as a previous commit.
Demo
Python
file = open(foo, 'r')
# Do something...
file.close()
to the more Pythonic:with open(foo) as f:
# Do something
for idx, val in enumerate(some_iterable)
instead offor idx in range(len(some_iterable
if (flag % 10 == 0)
is not very clear on a first read).Arduino (C/C++)
if (currChar == 'a')
for clarity.Examples + Tutorials