Skip to content

Commit ea481aa

Browse files
authored
docs: update syllabus with links to lessons (#693)
* docs: updating syllabus with links to lessons Signed-off-by: Anthony D. Mays <[email protected]> * docs: update link Signed-off-by: Anthony D. Mays <[email protected]> --------- Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 4005e39 commit ea481aa

File tree

1 file changed

+36
-26
lines changed

1 file changed

+36
-26
lines changed

syllabus/README.md

Lines changed: 36 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ Regular course work and homework assignments will be provided throughout lessons
8888
<b>Course introduction and tools tutorial</b><br>
8989
<b>Developer Workflow</b>
9090
<ul>
91-
<li>Git Fundamentals</li>
92-
<li>IDE Fundamentals</li>
93-
<li>Navigating the Terminal</li>
91+
<li><a href="/lesson_00">Lesson 0 - Git Fundamentals</a></li>
92+
<li><a href="/lesson_01">Lesson 1 - IDE Fundamentals</a></li>
93+
<li><a href="/lesson_02">Lesson 2 - Navigating the Terminal</a></li>
9494
</ul>
9595
</td>
9696
</tr>
@@ -99,9 +99,9 @@ Regular course work and homework assignments will be provided throughout lessons
9999
<td>
100100
<b>Software Engineering Foundations</b>
101101
<ul>
102-
<li>How Computers Work</li>
103-
<li>How To Be A Great Software Engineer</li>
104-
<li>Software Development Lifecycle</li>
102+
<li><a href="/lesson_03">Lesson 3 - How Computers Work</a></li>
103+
<li><a href="/lesson_04">Lesson 4 - How To Be A Great Software Engineer</a></li>
104+
<li><a href="/lesson_05">Lesson 5 - Software Development Lifecycle</a></li>
105105
</ul>
106106
</td>
107107
</tr>
@@ -110,9 +110,9 @@ Regular course work and homework assignments will be provided throughout lessons
110110
<td>
111111
<b>Programming Languages, Week 1</b>
112112
<ul>
113-
<li>Statements and Variables</li>
114-
<li>Control Flow</li>
115-
<li>Functions</li>
113+
<li><a href="/lesson_06">Lesson 6 - Statements and Variables</a></li>
114+
<li><a href="/lesson_07">Lesson 7 - Control Flow</a></li>
115+
<li><a href="/lesson_08">Lesson 8 - Functions</a></li>
116116
</ul>
117117
</td>
118118
</tr>
@@ -121,9 +121,9 @@ Regular course work and homework assignments will be provided throughout lessons
121121
<td>
122122
<b>Programming Languages, Week 2</b>
123123
<ul>
124-
<li>Data Types</li>
125-
<li>Libraries and APIs</li>
126-
<li>Data Structures: Strings & Arrays</li>
124+
<li><a href="/lesson_09">Lesson 9 - Data Types</a></li>
125+
<li><a href="/lesson_10">Lesson 10 - Libraries</a></li>
126+
<li><a href="/lesson_11">Lesson 11 - Data Structures: Strings & Arrays</a></li>
127127
</ul>
128128
</td>
129129
</tr>
@@ -132,9 +132,9 @@ Regular course work and homework assignments will be provided throughout lessons
132132
<td>
133133
<b>Programming Languages, Week 3</b>
134134
<ul>
135-
<li>Data Structures: Stacks, Queues, Linked Lists</li>
136-
<li>Data Structures: Maps & Sets</li>
137-
<li>Exceptions and Error Handling</li>
135+
<li><a href="/lesson_12">Lesson 12 - Data Structures: Stacks, Queues, and Linked Lists</a></li>
136+
<li><a href="/lesson_13">Lesson 13 - Data Structures: Maps & Sets</a></li>
137+
<li><a href="/lesson_14">Lesson 14 - Exceptions and Error Handling</a></li>
138138
</ul>
139139
</td>
140140
</tr>
@@ -143,26 +143,29 @@ Regular course work and homework assignments will be provided throughout lessons
143143
<td>
144144
<b>Software Design</b>
145145
<ul>
146-
<li>Test Driven Development</li>
147-
<li>OOP Principles, Part I</li>
148-
<li>OOP Principles, Part II</li>
146+
<li><a href="/lesson_15">Lesson 15 - Test Driven Development</a></li>
147+
<li><a href="/lesson_16">Lesson 16 - OOP Principles, Part I</a></li>
148+
<li><a href="/lesson_17">Lesson 17 - OOP Principles, Part II</a></li>
149149
</ul>
150150
</td>
151151
</tr>
152152
<tr>
153153
<td align="center" style="vertical-align: top">07</td>
154154
<td>
155155
<b>Software Design - Project Week</b>
156+
<ul>
157+
<li><a href="/project_oop/README.md">Project OOP</a></li>
158+
</ul>
156159
</td>
157160
</tr>
158161
<tr>
159162
<td align="center" style="vertical-align: top">08</td>
160163
<td>
161164
<b>Frontend Programming, Week 1</b>
162165
<ul>
163-
<li>Computer Languages</li>
164-
<li>Web FE: Intro to HTML, CSS, & JS</li>
165-
<li>Web FE: JavaScript Deep Dive</li>
166+
<li><a href="/lesson_21"> Lesson 21 - Computer Languages</a></li>
167+
<li><a href="/lesson_22">Lesson 22 - Building Applications</a></li>
168+
<li><a href="/lesson_23">Lesson 23 - Intro to HTML, CSS, and JS</a></li>
166169
</ul>
167170
</td>
168171
</tr>
@@ -171,9 +174,9 @@ Regular course work and homework assignments will be provided throughout lessons
171174
<td>
172175
<b>Frontend Programming, Week 2</b>
173176
<ul>
174-
<li>Introduction to React</li>
175-
<li>Web APIs Using Rest</li>
176-
<li>Web FE: Integrating with the Backend</li>
177+
<li><a href="/lesson_24">Lesson 24 - JavaScript Deep Dive</a></li>
178+
<li><a href="/lesson_25">Lesson 25 - Intro to React</a></li>
179+
<li><a href="/lesson_26">Lesson 26 - Web APIs using REST</a></li>
177180
</ul>
178181
</td>
179182
</tr>
@@ -182,21 +185,28 @@ Regular course work and homework assignments will be provided throughout lessons
182185
<td>
183186
<b>Capstone Project, Week 1</b>
184187
<ul>
185-
<li>Introduction to Databases</li>
186-
<li>Capstone Project</li>
188+
<li><a href="/capstone/README.md">Capstone Project</a></li>
189+
<li><a href="/lesson_27">Lesson 27 - Integrating with Backend APIs</a></li>
190+
<li><a href="/lesson_28">Lesson 28 - Intro to Databases</a></li>
187191
</ul>
188192
</td>
189193
</tr>
190194
<tr>
191195
<td align="center" style="vertical-align: top">11</td>
192196
<td>
193197
<b>Capstone Project, Week 2</b>
198+
<ul>
199+
<li><a href="/capstone/README.md">Capstone Project</a></li>
200+
</ul>
194201
</td>
195202
</tr>
196203
<tr>
197204
<td align="center" style="vertical-align: top">12</td>
198205
<td>
199206
<b>Capstone Project, Week 3</b>
207+
<ul>
208+
<li><a href="/capstone/README.md">Capstone Project</a></li>
209+
</ul>
200210
</td>
201211
</tr>
202212
</tbody>

0 commit comments

Comments
 (0)