CSCI 780: Spring 2024
Distributed System Security
Submitting Projects


Logging into Gradescope

We will use gradescope for submitting projects. Select to login within your "School Credentials":

and then select William and Mary from the list of available schools:

Zipping Project Submission

You will submit your project on gradescope as a zip file. Your project must include a Makefile that builds the appropriate executable file(s) for a given project.

Let's say that your performing development in a directory called sget, which contains your Go module. To create the zip file, enter the command:


cd sget
ls
(out) cmd go.mod Makefile
zip -r sget.zip *
ls
(out) cmd go.mod sget.zip Makefile

The name of the zip file does not matter (we used the name sgrep.zip, but p1.zip, or submission.zip are also perfectly fine). The important thing is to zip the contents of the project directory, and not include the directory itself as part of the zip file.