Tip
This repo was created during my first attempt at completing the course. I made it up to Day 43. If you're looking for my more recent progress, check out my other repo: 100days, which goes all the way to Day 92 (although it's still a work in progress).
Important
Some of the Reeborg's World solutions won't run directly on your computer. They need to be pasted into the Reeborg’s World online environment, as they are tailored for specific worlds. Don’t worry — I’ve included the correct links with those solutions to make things easier.
Starting on Day 029, I began using environment variables to protect my personal information.
If you see code like var = os.environ["VAR"], you'll need to either:
- Create environment variables with those names and add your own values, or
- Replace the variables manually in the code with your own data.
Originally, I was using
input()to enter sensitive info each time the program ran — but that got old fast! Switching to environment variables was a more convenient and secure alternative.
Although... now that I’ve switched computers a few times, I have no clue what those environment variables were anymore...
Lesson learned: document everything, even your secrets! 😆