- GitHub account
- w3schools account (https://www.w3schools.com/python/default.asp)
- Discord account
- Minimum 80% attendance
- Pass each exam (group and 1-on-1)
- OOP project on GitHub (with documentation)
- Code review participation (at least 2 reviews per semester)
Know how to:
- Use Markdown format (
# Heading,## Subheading, etc.) - Use the terminal (
ls,cd,touch,nano) - Fork a repository
- Add / edit a file
- Run GitHub Codespace
- Commit changes:
git add .git commit -m 'My comment'git push origin main
- Check repository status:
git status
If your push is rejected you may need to use force
git push origin main --force-with-lease
That is very strong commend overwritting current content so use it wisely