Lessons
-
Lesson 16 - Exceptions
Classwork
Day 1: In class we created a quick program to play with exceptions. That file should be saved here:
.../APCSA_1/apcsa-assignments-YourUsername/classwork/16_exceptions/
Day 2: Directions have been poster here
-
Lesson 16 - Wrapper Classes
Save your work here:
.../APCSA_1/apcsa-assignments-YourUsername/classwork/15_wrapper_classes/
-
Lesson 01 - GitHub
GitHub
Read the Git and GitHub documentation provided in the Tools section.
Remember the following GitHub actions
When you work on a machine you never worked before, you should clone your repo:
git clone SSH_GITHUB_LINK
Before you start working on any device, the first command you should run is:
git pull
When you finish your work:
- If you added new files and want to track the files, you must run the following command for each file:
git add FILE_NAME
- Commit the changes:
git commit -a -m "COMMIT_MESSAGE"
- Push the changes o GitHub
git push