Getting Started
Logistics
This assignment is due Monday, 1/25/2021 at 11:59PM PST (GMT-8). It is worth 0% of your overall grade, but failure to complete it may result in being administratively dropped from the class.
Prerequisites
No lectures are required to work through this assignment.
git
and GitHub
git
and GitHubgit is a version control system, that helps developers like you track different versions of your code, synchronize them across different machines, and collaborate with others. If you don't already have git on your machine you can follow the instructions here to install it.
GitHub is a site which supports this system, hosting it as a service. In order to get a copies of the skeleton code to work on during the semester you'll need to create an account.
We will be using git and GitHub to pass out assignments in this course. If you don't know much about git, that isn't a problem: you will need to use it only in very simple ways that we will show you in order to keep up with class assignments.
If you'd like to use git for managing your own code versioning, there are many guides to using git online -- this is a good one.
Fetching the released code
For each project, we will provide a GitHub Classroom link. Follow the link to create a GitHub repository with the starter code for the project you are working on. Use git clone
to get a local copy of the newly created repository. For example, if your GitHub username is oski
after being assigned your repo through GitHub Classroom you would run:
git clone https://github.com/berkeley-cs186-student/sp21-proj0-oski
The GitHub Classroom link for this project is provided in the project release post on Piazza.
Debugging Issues with GitHub Classroom
Feel free to skip this section if you don't have any issues with GitHub Classroom. If you are having issues (i.e. the page froze or some error message appeared), first check if you have access to your repo at https://github.com/berkeley-cs186-student/sp21-proj0-username
, replacing username
with your GitHub username. If you have access to your repo and the starter code is there, then you can proceed as usual. If you have access to your repo but the starter code is not there, run the following commands in a terminal (again replacing username
with your GitHub username):
Then, you can proceed as usual.
404 Not Found
If you're getting a 404 not found page when trying to access your repo, make sure you've set up your repo using the GitHub Classroom link in the Project 0 release post on Piazza.
If you don't have access to your repo at all after following these steps, feel free to contact the course staff on Piazza.
Setting up your local development environment
You are free to use any text editor or IDE to complete the assignments, but we will build and test your code in a Docker container with Maven.
We recommend setting up a local development environment by installing Java 8 locally (the version our Docker container runs) and using an IDE such as IntelliJ.
Java 8 downloads (or alternatively, you're free to use OpenJDK)
If you have a newer version of Java installed that should be fine, we'll do our best to support grading for those versions up to Java 11. We won't be able to support any new syntax or features introduced in Java 12 or later, which won't be necessary for the projects.
To import the project into IntelliJ, make sure that you import as a Maven project (select the pom.xml
file when importing).
If launching IntelliJ takes you to an existing workspace instead of showing you the popup above you can open the project by navigating to File -> New -> Project From Existing Sources
and then select the pom.xml
file.
Running tests in IntelliJ
If you are using IntelliJ and wish to run the tests for a given assignment follow the instructions in the following document: IntelliJ setup
Once you have a copy of the released code, head to the next section "Your Tasks" and begin working on the assignment.
Last updated