Final Project
The climax of this course is its final project. The final project is your opportunity to take your newfound savvy with programming out for a spin and develop your very own piece of software. So long as your project draws upon the courseâs lessons, the nature of your project is entirely up to you, albeit subject to the staffâs approval. You may implement your project in any language(s) as long as the staff approves. You are welcome to utilize any infrastructure, provided the staff ultimately has access to any hardware and software that your project requires. All that we ask is that you build something of interest to you, that you solve an actual problem, that you impact campus, or that you change the world. Strive to create something that outlives this course.
Inasmuch as software development is rarely a one-person effort, you are allowed an opportunity to collaborate with one or two classmates for this final project. Needless to say, it is expected that every student in any such group contribute equally to the design and implementation of that groupâs project. Moreover, it is expected that the scope of a two- or three-person groupâs project be, respectively, twice or thrice that of a typical one-person project. A one-person project, mind you, should entail more time and effort than is required by each of the courseâs problem sets. Although no more than three students may design and implement a given project, you are welcome to solicit advice from others, so long as you respect the courseâs policy on academic honesty.
Extensions on the final project are not ordinarily granted, except in cases of emergency.
Ideas
Here are just some of the possibilities. Discuss any and all with the the staff! And if youâd like to solicit collaborators for an idea you have, do post in the courseâs Q&A forum!
- a web-based application using JavaScript, Python, and SQL, based in part on the web trackâs distribution code
- an iOS app using Swift
- a game using Lua with LĂVE
- an Android app using Java
- a Chrome extension using JavaScript
- a command-line program using C
- a hardware-based application for which you program some device
- âŠ
Combining Courses
If taking some other course this semester that has a final project, you are welcome and encouraged to combine this courseâs project and that courseâs project into one, toward an end of applying lessons learned in CS50 to some other field, so long as the joint project satisfies this courseâs and that courseâs expectations. Before pursuing a joint project, though, you must disclose to both courses and receive approval from both courses.
Specifications
Extensions on the final project are not granted, except in cases of emergency.
Preproposal
due by
Intended to promote early thought, the preproposal is your opportunity to bounce one or more ideas off of the staff. If collaborating with one or two classmates, each of you should submit a preproposal, even if identical.
Hereâs how to submit your preproposal. Log into CS50 IDE and then, in a terminal window:
- Execute
cd
to ensure that youâre in~/
(i.e., your home directory). - Execute
mkdir project
to make (i.e., create) a directory calledproject
in your home directory. - Execute
cd project
to change into (i.e., open) that directory. - Execute
wget http://cdn.cs50.net/2019/fall/project/preproposal.zip
to download a (compressed) ZIP file. - Execute
unzip preproposal.zip
to uncompress that file. - Execute
rm preproposal.zip
followed byyes
ory
to delete that ZIP file. - Execute
ls
. You should see a directory calledpreproposal
, which was inside of that ZIP file. - Execute
cd preproposal
to change into that directory. - Execute
ls
. You should see a file calledREADME.md
therein.
Edit that file in CS50 IDE, answering the questions therein.
Then execute the below from within your ~/project/preproposal
directory, logging in with your GitHub username and password when prompted. For security, youâll see asterisks (*
) instead of the actual characters in your password.
submit50 cs50/problems/2020/spring/project/preproposal
Proposal
due by
The proposal is your opportunity to receive approval and counsel from the staff before you proceed to design. If collaborating with one or two classmates, each of you should submit a proposal, even if identical.
The staff will either approve your proposal or require modifications on your part for subsequent approval. Your proposal, even if approved, is not binding; you may alter your plan at any point, provided you obtain the staffâs approval for any modifications. Projects submitted without approval may not receive credit.
Hereâs how to submit your proposal.
Step 1 of 2
Submit this form.
Step 2 of 2
Log into CS50 IDE and then, in a terminal window:
- Execute
cd
to ensure that youâre in~/
(i.e., your home directory). - If you havenât already, execute
mkdir project
to make (i.e., create) a directory calledproject
in your home directory. - Execute
cd project
to change into (i.e., open) that directory. - Execute
wget https://cdn.cs50.net/2019/fall/project/proposal.zip
to download a (compressed) ZIP file. - Execute
unzip proposal.zip
to uncompress that file. - Execute
rm proposal.zip
followed byyes
ory
to delete that ZIP file. - Execute
ls
. You should see a directory calledproposal
, which was inside of that ZIP file. - Execute
cd proposal
to change into that directory. - Execute
ls
. You should see a file calledREADME.md
therein.
Edit that file in CS50 IDE, answering the questions therein.
Then execute the below from within your ~/project/proposal
directory, logging in with your GitHub username and password when prompted. For security, youâll see asterisks (*
) instead of the actual characters in your password.
submit50 cs50/problems/2020/spring/project/proposal
Status Report
due by
Not only is the status report intended to keep the staff apprised of your progress, it is an opportunity to keep yourself on track. If collaborating with one or two classmates, each of you should submit a status report, even if identical.
Hereâs how to submit your status report. Log into CS50 IDE and then, in a terminal window:
- Execute
cd
to ensure that youâre in~/
(i.e., your home directory). - If you havenât already, execute
mkdir project
to make (i.e., create) a directory calledproject
in yourworkspace
directory. - Execute
cd project
to change into (i.e., open) that directory. - Execute
wget https://cdn.cs50.net/2019/fall/project/status.zip
to download a (compressed) ZIP file. - Execute
unzip status.zip
to uncompress that file. - Execute
rm status.zip
followed byyes
ory
to delete that ZIP file. - Execute
ls
. You should see a directory calledstatus
, which was inside of that ZIP file. - Execute
cd status
to change into that directory. - Execute
ls
. You should see a file calledstatus.md
therein.
Edit that file in CS50 IDE, answering the questions therein.
Then execute the below from within your ~/project/status
directory, logging in with your GitHub username and password when prompted. For security, youâll see asterisks (*
) instead of the actual characters in your password.
submit50 cs50/problems/2020/spring/project/status
Implementation
due by
Ultimately due are implementation and documentation of your final project. Your submission thereof must include all of the below.
- Documentation for your project in the form of a Markdown file called
README.md
. This documentation is to be a userâs manual for your project. Though the structure of your documentation is entirely up to you, it should be incredibly clear to the staff how and where, if applicable, to compile, configure, and use your project. Your documentation should be at least several paragraphs in length. It should not be necessary for us to contact you with questions regarding your project after its submission. Hold our hand with this documentation; be sure to answer in your documentation any questions that you think we might have while testing your work. - A âdesign documentâ for your project in the form of a Markdown file called
DESIGN.md
that discusses, technically, how you implemented your project and why you made the design decisions you did. Your design document should be at least several paragraphs in length. Whereas your documentation is meant to be a userâs manual, consider your design document your opportunity to give the staff a technical tour of your project underneath its hood. - Any and all files required to run your software (even if intended for some infrastructure other than CS50 IDE), including source code as well as, if applicable, configuration files, Makefiles, sample inputs, SQLite databases, and so forth. Needless to say, all source code should be thoroughly commented.
- A short video (thatâs no more than 2 minutes in length) in which you present your project to the world, as with slides, screenshots, voiceover, and/or live action. Your video should somehow include your projectâs title, your name and year, your dorm/house and concentration, and any other details that youâd like to convey to viewers. See CS171âs tips on how to make a âscreencastâ though youâre welcome to use an actual camera. Upload your video to YouTube as âpublicâ or âunlistedâ and take note of its URL.
How to Submit
If you have collaborated with one or two other students, each of you should submit via this same process.
If your project requires (for execution and testing) hardware or software other than that offered by CS50 IDE, be sure that the the staff are aware of and have approved your projectâs needs.
Step 1 of 2
Execute the below from within whatever directory contains your final project, logging in with your GitHub username and password when prompted. For security, youâll see asterisks (*
) instead of the actual characters in your password.
submit50 cs50/problems/2020/spring/project/implementation
If your final project is not in CS50 IDE, you can install submit50
on your own computer by running pip3 install submit50
(after first installing Python 3). You can also upload a ZIP of your project directly to submit.cs50.io.
Step 2 of 2
Submit this form!
This last form is on the longer side, so no worries if you start it before the deadline but finish a bit after.