-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCS50P_Week_9_Final_Project_Guide.html
More file actions
117 lines (105 loc) · 4.98 KB
/
CS50P_Week_9_Final_Project_Guide.html
File metadata and controls
117 lines (105 loc) · 4.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>CS50P Week 9 Final Project Guide</title>
<meta name="description" content="Student-facing Week 9 and CS50P Final Project guide with official requirements and classroom project resources." />
<link rel="icon" href="data:," />
<link rel="stylesheet" href="assets/cs50p_pset_shared.css" />
<style>
.resource-list {
margin: 8px 0 0 18px;
padding: 0;
line-height: 1.45;
}
.resource-list li+li {
margin-top: 10px;
}
.checklist {
margin: 8px 0 0 0;
padding: 0;
list-style: none;
display: grid;
gap: 8px;
}
.checklist li {
border: 1px solid var(--border);
border-radius: 10px;
padding: 9px 10px;
background: #fbfdff;
}
.mini {
font-size: 0.92rem;
color: var(--muted);
}
</style>
</head>
<body>
<main class="wrap">
<div class="topbar">
<a class="home-link" href="CS50P_Problem_Sets_Home.html">← Back to CS50P Problem Sets Home</a>
<span class="chip">CS50P</span>
<span class="chip">Week 9</span>
<span class="chip">Final Project</span>
</div>
<h1>CS50P Week 9 – Final Project Guide</h1>
<p class="lead">Use this page to plan, organize, and submit your CS50P final project. Start with the official CS50 requirements, then use your classroom team documents.</p>
<div class="grid">
<section class="card" aria-labelledby="official-title">
<h2 id="official-title">Official CS50 Final Project</h2>
<ul>
<li><a href="https://cs50.harvard.edu/python/2022/project/" target="_blank" rel="noopener noreferrer">CS50P Final Project Spec (Official)</a></li>
<li><a href="https://cs50.harvard.edu/python/2022/weeks/9/" target="_blank" rel="noopener noreferrer">Week 9 (Et Cetera)</a></li>
</ul>
<div class="callout">
Always check the official CS50 page first. The final project requirements and submission rules are graded from that spec.
</div>
</section>
<section class="card" aria-labelledby="requirements-title">
<h2 id="requirements-title">Key Requirements (Quick Check)</h2>
<ul class="checklist">
<li>Your project must be written in Python.</li>
<li>Include <strong>project.py</strong> with <strong>main()</strong> and at least 3 additional functions.</li>
<li>Include <strong>test_project.py</strong> with tests for at least 3 custom functions.</li>
<li>Include <strong>README.md</strong> with title, video URL, and detailed project description.</li>
<li>Add <strong>requirements.txt</strong> if your project uses external packages.</li>
<li>Submit all steps required by CS50 (video + code submission + gradebook check).</li>
</ul>
</section>
<section class="card" aria-labelledby="team-title">
<h2 id="team-title">Classroom Team Workflow Resources</h2>
<ol class="resource-list">
<li>
Review the CS50 Final Project overview attached by your teacher.
</li>
<li>
One team member opens a copy of the Project Proposal document:<br />
<a href="https://docs.google.com/document/d/1V45QvYpVyzy6QloFa1PxwYhyPWZkpX4y27wYjgz-VvA/copy" target="_blank" rel="noopener noreferrer">Project Proposal (Make a Copy)</a><br />
<span class="mini">Share with edit permissions to all team members and aspiece@geneseeisd.og</span>
</li>
<li>
One team member opens a copy of the Team Workspace document:<br />
<a href="https://docs.google.com/document/d/1XlghA9cBuvD5YoiFPAGr6pk7bPYl-QFWRS9axnbHaA0/copy" target="_blank" rel="noopener noreferrer">Team Workspace (Make a Copy)</a><br />
<span class="mini">Share with edit permissions to all team members and aspiece@geneseeisd.og</span>
</li>
<li>
Use the project overview guide during planning and development:<br />
<a href="https://docs.google.com/document/d/1hX1YBjigw_UP4YclnJzMz8WHBJLoSvPSr0NxSei2KOc/edit?tab=t.0" target="_blank" rel="noopener noreferrer">Project Overview Guide</a>
</li>
</ol>
</section>
<section class="card" aria-labelledby="timeline-title">
<h2 id="timeline-title">Suggested Team Timeline</h2>
<ol class="resource-list">
<li><strong>Day 1:</strong> Pick idea + complete proposal draft.</li>
<li><strong>Day 2:</strong> Build MVP features and test basic flow.</li>
<li><strong>Day 3:</strong> Write/expand tests and refactor code structure.</li>
<li><strong>Day 4:</strong> Finalize README, record video demo, and submit.</li>
</ol>
<div class="callout">Tip: Ship a smaller project that is complete, tested, and documented instead of a bigger project that is unfinished.</div>
</section>
</div>
</main>
</body>
</html>