Automate the process of transferring your semester's calendar from your university's end to your personal calendar (google calendar/outlook calendar/etc)
python3 -m venv venv
source venv/bin/activate
To deactivate, simply enterdeactivate
python3 -m pip install -r requirements.txt
then lock the requirements (you may need to runwget https://bootstrap.pypa.io/get-pip.py
thensudo python3.6 get-pip.py
)pip freeze > requirements.txt
cd web_app
python3 manage.py runserver
Since we're working with a MongoDB, we don't have to worry about migrations 😃
Some of these screenshots weren't implemented in code because I either was lazy or didn't have the time for it (school gah)
- Work on the project
- Setup Docker for professionalism (lol) & for ease of deployment
- Work on RPI's automation
- Integrate a ReCaptcha solver (I bet some universities have implemented Google ReCaptcha or something similar) -- maybe make our own ReCaptcha solver (that'd be an insane side project)