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.
Graduate and professional students are expected to produce a final project that is 50% greater in scope than what is expected of undergraduate students.
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 your TA!
- a web-based application using JavaScript, Python, and SQL, based in part on the web trackās distribution code
- a Chrome extension using JavaScript
- a command-line program using C
- a hardware-based application for which you program some device
- ā¦
If youād like to borrow or buy some software or hardware for a project, email heads@cs50.yale.edu, and weāll do our best to lend a hand.
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 (as from your TA in CS50).
Specifications
Extensions on the final project are not granted, except in cases of emergency.
Proposal
due by Sun 6/21, 11:59pm
The proposal is your opportunity to receive approval and counsel from your TA before you proceed to design. If collaborating with one or two classmates, each of you should submit a proposal, even if identical.
Your TA 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 your TAās approval for any modifications. Projects submitted without approval may not receive credit.
After submitting your proposal, a TA other than your own may be appointed your advisor and grader for the remainder of the final project, depending on your proposalās nature.
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/yale/summer/project/proposal
Status Report
due by Tue 6/23, 11:59pm
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/yale/summer/project/status
Implementation
due by Thur 6/25, 11:59pm
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 TA advising you is aware of and has 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/yale/summer/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.
Peer Feedback
Fri 6/26, 11:59pm
This is your chance to connect with your peers and support their hard work! You will be expected to provide feedback on all projects other than your own in the Special Section you attend on Friday. Your participation score for the course will ride largely on the thoughtfulness of your peer feedback!