shanep-class 1.0.15 โ†’ 1.0.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6124905ce56640ef45e906e79327c69a436af24280c005a2de459856625d73a6
4
- data.tar.gz: 0aeddc06f632ea2b71bb3f1d671c2f5fc2b8f263bbfa35d06d12b0746379c712
3
+ metadata.gz: c26a891e83bd87c5c226a874e256ad1e1b6cf27b327e93c52664de0d5179b18f
4
+ data.tar.gz: fbf9355a9e6485dfb4248b5bd60fa22687d19bf0496d0007d6b4e0a6177b3851
5
5
  SHA512:
6
- metadata.gz: 53701e291239a4e7b89cf2a64e6668446a6ab9ab89cb507471dbd7147ed377c0984d36a0c607795e8cf5dafb49a086a751dff4f052811c703353d52000a11735
7
- data.tar.gz: 2753b58f7eb5bf503f70d875258ce81d6904f91ae5ce4b1a01e3dc28fa363770b359f31ebac60626ab5927189810d4fe815815041533fe00c968cc0df97259a8
6
+ metadata.gz: 3cc225ffced45b728071e2c25911e090cb08effaa060cab3e946514894886ac08e7ec7c316bf4a6540a4e4e723b3dade3bc7594dc1365791d371ec032da0b8da
7
+ data.tar.gz: 242636e5049dc3ac2506118303be42f69e28bb7470131903b5edb4b0a868ada354e75fa7cc1820d077dcea58a26a4db067b6b0ade70c61b5d15150b979345754
@@ -1,33 +1,4 @@
1
1
  <div class="post-nav">
2
2
  {% include header.html%}
3
- <ul>
4
- {% if page.path == "index.html" %}
5
- <li class='active'>
6
- {% else %}
7
- <li>
8
- {% endif %}
9
- <a href={{site.url}}>Home</a>
10
- </li>
11
-
12
- {% if page.path contains "syllabus" %}
13
- <li class='active'>
14
- {% else %}
15
- <li>
16
- {% endif %}
17
- <a href={{site.url}}/docs/syllabus.html>Syllabus</a>
18
- </li>
19
- </ul>
20
-
21
- <h2>Lessons</h2>
22
- <ul>
23
- {% for pg in site.lessons %}
24
- {% if pg.path == page.path %}
25
- <li class='active'>
26
- {% else %}
27
- <li>
28
- {% endif %}
29
- <a href={{pg.url}}> {{ pg.title }}</a>{%if pg.layout == "lab"%} ๐Ÿงช {%elsif pg.layout == "project" %} ๐Ÿ“ก {% endif%}</li>
30
-
31
- {% endfor %}
32
- </ul>
3
+ {% include toc.html html=content %}
33
4
  </div>
@@ -1,5 +1,5 @@
1
1
  <div class="logo">
2
2
  <h1>
3
- <a href="{{site.url}}">{{site.data.semester-info.text_logo}}</a>
3
+ <a href="{{site.url}}">{{site.data.semester-info.text-logo}}</a>
4
4
  </h1>
5
5
  </div>
data/_layouts/home.html CHANGED
@@ -1,9 +1,340 @@
1
1
  ---
2
- layout: course-notoc
2
+ layout: default
3
3
  ---
4
+ {% assign tableFile = site.data.semester-info %}
4
5
 
5
- <h1>{{site.title}} - {{site.description}}</h1>
6
+ {% include course-sidebar.html %}
6
7
 
7
- <img src={{"/assets/images/home_page.png"}} alt="Course Logo">
8
+ <div id="main-content" class="post-content">
9
+ <article>
10
+ <h1>{{site.title}} - {{site.description}} [{{tableFile.semester}}]</h1>
11
+ <img src={{"/assets/images/home_page.png"}} alt="Course Logo">
12
+
13
+ <h2 id="welcome">Welcome!</h2>
14
+
15
+ {% include youtube.html param= tableFile.welcome-video %}
16
+
17
+ <p>
18
+ {{tableFile.welcome-message}}
19
+ </p>
20
+
21
+ <h2 id="logistics">Logistics</h2>
22
+
23
+ <ul>
24
+ <li><strong>Instructor:</strong> {{tableFile.instructor}}</li>
25
+ <li><strong>Email:</strong> {{tableFile.email}}</li>
26
+ {% if tableFile.textbook %}
27
+ <li><a href="{{tableFile.textbook}}">Textbook</a></li>
28
+ {% endif %}
29
+ <li><a href="{{tableFile.discussion}}">Discussion Forum</a></li>
30
+ <li><a href="{{tableFile.github}}">Github Course Site</a></li>
31
+ <li><a href="{{tableFile.grades}}">Grades</a></li>
32
+ <li><a href="{{tableFile.office-hours}}">Office Hours</a></li>
33
+ <li><a href="{{tableFile.learning-objectives}}">Learning Objective Alignment Sheet</a></li>
34
+ </ul>
35
+
36
+ {% assign one_day = 1 | times: 24 | times: 60 | times: 60 %}
37
+ {% assign two_days = 2 | times: 24 | times: 60 | times: 60 %}
38
+ {% assign three_days = 3 | times: 24 | times: 60 | times: 60 %}
39
+ {% assign four_days = 4 | times: 24 | times: 60 | times: 60 %}
40
+
41
+
42
+ {% if tableFile.start-day == "monday" %}
43
+ {% assign curr_date = tableFile.start-date | date: "%s" | minus: four_days%}
44
+ {% elsif tableFile.start-day == "tuesday" %}
45
+ {% assign curr_date = tableFile.start-date | date: "%s" | minus: three_days%}
46
+ {% elsif tableFile.start-day == "wednesday" %}
47
+ {% assign curr_date = tableFile.start-date | date: "%s" | minus: two_days%}
48
+ {% elsif tableFile.start-day == "thursday" %}
49
+ {% assign curr_date = tableFile.start-date | date: "%s" | minus: one_day %}
50
+ {% endif%}
51
+
52
+ <div >
53
+ <h2 id="homework">Weekly Homework</h2>
54
+ <table style="margin:auto;height: 100%; width: 100%;">
55
+ <thead>
56
+ <tr>
57
+ <th class="text-center">Week</th>
58
+ <th>Due Date</th>
59
+ <th>Homework</th>
60
+ <th>Points</th>
61
+ </tr>
62
+ </thead>
63
+
64
+ <tbody>
65
+ {% assign curr_week = 1 %}
66
+ {% assign curr_module = "none" %}
67
+
68
+ {% assign loop_counter = 1 %}
69
+ {% assign pgs = site.lessons | sort: 'slug' %}
70
+ {% assign total_points = 0%}
71
+ {% for page in pgs %}
72
+ {% if page.path contains "lesson" %}
73
+ {% assign loop_counter = loop_counter | plus: 1 %}
74
+ {% if curr_module != page.tag %}
75
+ <!--Module header-->
76
+ <tr>
77
+ <td colspan="4" class="text-center table-darkish">{{page.tag | capitalize }}</td>
78
+ </tr>
79
+ {% assign curr_module = page.tag %}
80
+ {% endif%}
81
+ {% if page.layout == "reading-zybooks" %}
82
+ {% assign page_title = site.data.semester-info.reading[page.slug] %}
83
+ {% else%}
84
+ {% assign page_title = page.title %}
85
+ {% endif %}
86
+
87
+
88
+
89
+ {% if curr_week == tableFile.break %}
90
+ <!--Add in the break week, we need to grab the next lesson before inserting new week-->
91
+ <tr>
92
+ {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
93
+ <td>{{curr_date | date: "%m/%d - %a"}}</td>
94
+ <td><a href="{{site.url}}{{page.url}}">{{page_title}} ({{page.slug}})</a>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
95
+ <td>{{page.points}}</td>
96
+ {% assign total_points = total_points | plus: page.points %}
97
+ </tr>
98
+ <tr>
99
+ <td rowspan= 2 class="table-lightish text-center border">
100
+ {% assign curr_date = curr_date | date: "%s" | plus: three_days %}
101
+ {{curr_week}}
102
+ </td>
103
+ {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
104
+ <td>{{curr_date | date: "%m/%d - %a"}}</td>
105
+ <td>Break</td>
106
+ </tr>
107
+ <tr>
108
+ {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
109
+ <td>{{curr_date | date: "%m/%d - %a"}}</td>
110
+ <td>Break</td>
111
+ </tr>
112
+ {% assign curr_week = curr_week | plus: 1 %}
113
+ {%else%}
114
+
115
+ <tr>
116
+ {% comment %}
117
+ Need to keep track of our own loop counter to filter out docs don't use forloop.index
118
+ {% endcomment %}
119
+ {% assign tmp = loop_counter | modulo: 2 %}
120
+ {% if tmp == 0 %}
121
+ <td rowspan= 2 class="table-lightish text-center border">
122
+ {% assign curr_date = curr_date | date: "%s" | plus: three_days %}
123
+ {{curr_week}}
124
+ {% assign curr_week = curr_week | plus: 1 %}
125
+ </td>
126
+ {% endif %}
127
+ {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
128
+ <td>{{curr_date | date: "%m/%d - %a"}}</td>
129
+ <td><a href="{{site.url}}{{page.url}}">{{page_title}} ({{page.slug}})</a>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
130
+ <td>{{page.points}}</td>
131
+ {% assign total_points = total_points | plus: page.points %}
132
+ </tr>
133
+ {%endif%}
134
+ {% endif %}
135
+ {% endfor%}
136
+ </tbody>
137
+ <tfoot>
138
+ <tr>
139
+ <td colspan="3" class="table-lightish">Total Points:</td>
140
+ <td class="table-lightish">{{total_points}}</td>
141
+ </tr>
142
+ </tfoot>
143
+ </table>
144
+
145
+ <h2 id="final-grades">Grading Policy</h2>
146
+
147
+ <p>
148
+ Final grades will be assigned with the formula [Earned Points]/[Total Points]. For example if you
149
+ earn 850 points out of a total of 1000 points offered your grade would be a B or %85.
150
+ <strong>Grades will not be rounded</strong>, so if your final score is a 79.9% your grade will be
151
+ a C+ according to the chart below. If you are on a grade boundary please see the <a
152
+ href="#extra-credit-opportunities">extra credit</a> section below for opportunities to improve your grade.
153
+ </p>
154
+
155
+ <table>
156
+ <thead>
157
+ <tr>
158
+ <th>Percentage</th>
159
+ <th>Letter</th>
160
+ </tr>
161
+ </thead>
162
+ <tbody>
163
+ <tr>
164
+ <td>94% &lt; 100%</td>
165
+ <td>A</td>
166
+ </tr>
167
+ <tr>
168
+ <td>90% &lt; 94%</td>
169
+ <td>A-</td>
170
+ </tr>
171
+ <tr>
172
+ <td>87% &lt; 90%</td>
173
+ <td>B+</td>
174
+ </tr>
175
+ <tr>
176
+ <td>84% &lt; 87%</td>
177
+ <td>B</td>
178
+ </tr>
179
+ <tr>
180
+ <td>80% &lt; 84%</td>
181
+ <td>B-</td>
182
+ </tr>
183
+ <tr>
184
+ <td>77% &lt; 80%</td>
185
+ <td>C+</td>
186
+ </tr>
187
+ <tr>
188
+ <td>74% &lt; 77%</td>
189
+ <td>C</td>
190
+ </tr>
191
+ <tr>
192
+ <td>70% &lt; 74%</td>
193
+ <td>C-</td>
194
+ </tr>
195
+ <tr>
196
+ <td>67% &lt; 70%</td>
197
+ <td>D+</td>
198
+ </tr>
199
+ <tr>
200
+ <td>64% &lt; 67%</td>
201
+ <td>D</td>
202
+ </tr>
203
+ <tr>
204
+ <td>60% &lt; 64%</td>
205
+ <td>D-</td>
206
+ </tr>
207
+ <tr>
208
+ <td>0 &lt; 60%</td>
209
+ <td>F</td>
210
+ </tr>
211
+ </tbody>
212
+ </table>
213
+
214
+ <h2 id="institutional-policies">Institutional Policies</h2>
215
+
216
+ <ul>
217
+ <li>
218
+ Please review the <a
219
+ href="https://www.boisestate.edu/registrar/general-information-and-policies/academic-integrity/">
220
+ academic-integrity</a> policy set by the university. Violations of this policy will result in the student
221
+ receiving a failing grade (F) for the course.</li>
222
+ <li>
223
+ It is expected that all students <a
224
+ href="https://www.boisestate.edu/policy/student-affairs/code-of-conduct/">read</a>
225
+ and follow the University policy 2020. Any violation of University policy 2020 can result in the
226
+ student being removed from the class discussion and study groups. The students participation score
227
+ will be set to 0 and no alternative assignment will be given. Egregious behavior will be reported
228
+ to the <a href="https://www.boisestate.edu/deanofstudents/student-conduct-report-form/">dean of students</a>
229
+ for additional sanctions which can include receiving a failing grade (F) in the course.
230
+ </li>
231
+ <li>If you need help with accessibility you can visit the <a href="https://eac.boisestate.edu/">educational access
232
+ center</a></li>
233
+ </ul>
234
+
235
+ <h2 id="computer-lab">Computer Lab </h2>
236
+
237
+ <p>
238
+ <a href="https://cs481.boisestate.edu/ccp-tour/index.html">The Kount Computer Tutoring Center (CCP
239
+ 241)</a>: This lab is accessible 24/7 by proxy card access to all students enrolled in CS courses.
240
+ Machines in the Kount Computer Tutoring Center have all the software you will need this semester.
241
+ You can use the lab remotely via ssh (onyx.boisestate.edu) and use command line tools such as VIM.
242
+ </p>
243
+
244
+ <p>
245
+ If you want to work on your personal machine the following setup is recommended:
246
+ </p>
247
+ <ul>
248
+ <li>OS - Linux </li>
249
+ <li>Hardware - Minimum of 4GB of Ram (8GB preferred) and an i5 or equivalent processor</li>
250
+ </ul>
251
+
252
+ <h2 id="academic-honesty">Academic Honesty</h2>
253
+
254
+ <p>
255
+ Programming assignments require the implementation of working programs using the language
256
+ constructs and techniques introduced in class. Programs must execute and compile on the operating
257
+ system and compiler specified. Students are expected to work on their own unless explicitly
258
+ instructed otherwise. Students who allow their work to be copied will be written up along with
259
+ the student who copied. Cheating is grounds for immediate failure of the course. This includes
260
+ trying to find answers to problems, programs, and exams from the Internet or other sources and
261
+ uploading your completed assignments to Internet sites that are publicly accessible.
262
+ </p>
263
+
264
+ <p>
265
+ Boise State promotes Academic Excellence as a core Shared Value upholding the virtue of honesty in
266
+ the pursuit of knowledge. Behaving with integrity and honesty is a hallmark of a Boise State
267
+ University graduate. The conferring of a degree represents the Universityโ€™s indication that the
268
+ recipient has engaged in academic work that is representative of her/his own efforts and that was
269
+ completed with integrity and honesty.
270
+ </p>
271
+ <p>
272
+ Upholding academic integrity in all assignments provides students with the opportunity to engage
273
+ with the material being investigated and assert their evidence based findings. This behavior
274
+ demonstrates the commitment to learning and preparation necessary for a successful future. All
275
+ work you submit must represent your own ideas and effort or be cited including any material you
276
+ wrote for another course; when work does not, it is academic dishonesty. <strong>Academic
277
+ dishonesty in any form may result in failure in the course or dismissal from the Program and/or
278
+ the University.</strong>
279
+ </p>
280
+
281
+
282
+ <h2 id="late-work-policy">Late Work Policy</h2>
283
+
284
+ <p>
285
+ All assignments can be submitted up to <strong>3 days late without penalty</strong>, after 3 days
286
+ past the due date absolutely no work will be accepted under any circumstances. No work will be
287
+ accepted after the <strong>last day of course instruction</strong>, the semester has to end at
288
+ some point so plan accordingly. Work submitted 1 second late is treated the same as work
289
+ submitted 1 day late. You can find the last day of course instruction at
290
+ the <a href="https://www.boisestate.edu/registrar/boise-state-academic-calendars/">registrar</a>.
291
+ </p>
292
+
293
+ <p>
294
+ Plenty of extra credit is offered to offset any missed assignment(s).
295
+ </p>
296
+
297
+ <h2 id="email-policy">Email Policy</h2>
298
+
299
+ <p>
300
+ BroncoMail is the official communication channel through which all university business is
301
+ conducted. It is expected that you access and read university communications two or three
302
+ times per week. For more information see the University Policy on Student Email
303
+ Communications <a
304
+ href="https://www.boisestate.edu/policy/student-affairs/policy-title-student-e-mail-communications/">(Policy
305
+ 2280).</a> <strong>Your instructor will not respond to any emails sent from personal
306
+ accounts such as gmail or yahoo.</strong>
307
+ </p>
308
+
309
+ <p>
310
+ Your instructor will make every effort to return emails within 48hrs Monday thru Friday between
311
+ the hours of 9:00am and 5:00pm (MST). Emails sent on Saturday, Sunday, or outside of the defined
312
+ hours will be returned within 48hrs on the following business day. Emails should be reserved for
313
+ questions that are not appropriate for a public forum such as grades or other personal issues. If
314
+ you don't receive a response from your instructor after 48hrs please check to make sure you are
315
+ sending the email from BroncoMail and send a followup email.
316
+ </p>
317
+
318
+ <h2 id="extra-credit-opportunities">Extra Credit Opportunities</h2>
319
+
320
+ Standing extra credit is always offered to allow students to bump their grade up if they are on a
321
+ grading boundary so please take advantage of any extra credit offered. Any extra credit given over
322
+ the semester can not exceed 2.5% of the total points offered. For example the maximum number of
323
+ extra credit points that you can earn if the total points offered is 1000 would be 25.
324
+
325
+ <h3 id="standing-extra-credit">Standing extra credit</h3>
326
+ <ul>
327
+ <li>
328
+ Typos and Bugs - If you find any typos or bugs in the course materials email me what you found.
329
+ You can claim this extra credit as many times as you wish (up to the maximum number of points).
330
+ </li>
331
+ </ul>
332
+
333
+
334
+ </div>
335
+
336
+
337
+ </article>
338
+ {% include footer.html %}
339
+ </div>
8
340
 
9
- {% include semester-info.html file="semester-info" %}
data/_layouts/lab.html CHANGED
@@ -1,13 +1,13 @@
1
1
  ---
2
- layout: course
2
+ layout: course-notoc
3
3
  ---
4
4
 
5
- <h2 id="overview">Overview</h2>
5
+ <h2 id="overview">Overview</h2>
6
6
 
7
7
  <p>
8
8
  All of your Lab work will be submitted through Github Classroom. You are responsible for
9
9
  ensuring all your code is properly pushed to Github! Any code not pushed to Github by the
10
- deadline will not be accepted under any circumstances. If you don't already have a
10
+ deadline will not be accepted under any circumstances. If you don't already have a
11
11
  <a href="https://github.com">GitHub</a> account you will need to create one.
12
12
  </p>
13
13
 
@@ -21,7 +21,7 @@ layout: course
21
21
  address from the list. If you donโ€™t select your student email address your instructor will not be
22
22
  able to grade your code. If you canโ€™t find your email in the list, contact your instructor ASAP to
23
23
  get the issue resolved.
24
- </li>
24
+ </li>
25
25
  <li>
26
26
  Make sure and save the github URL so you can find your assignment later if needed!
27
27
  </li>
@@ -47,10 +47,6 @@ layout: course
47
47
  <li>
48
48
  The assignment specifications will be located in the README.md in the starter code.
49
49
  </li>
50
- <li>
51
- The README.md will have a link to the grading rubric that you can use to verify you have
52
- completed all requirements.
53
- </li>
54
50
  </ul>
55
51
 
56
52
  <h2 id="push-your-finished-code-to-github">Step 4 - Push your finished code to Github</h2>
@@ -63,9 +59,33 @@ layout: course
63
59
  </li>
64
60
  <li>
65
61
  After the due date and late submission deadline have passed your instructor will grade
66
- whatever code you have committed and pushed to your repository.
62
+ whatever code you have committed and pushed to your repository.
67
63
  </li>
68
64
  </ul>
69
65
 
70
66
  {% include youtube.html param="https://www.youtube.com/embed/ersuzAUtTsY" %}
71
67
 
68
+ <h2 id="points">Grading</h2>
69
+
70
+ <p>
71
+ This lab is worth {{page.points}} points. The due date is listed on the <a
72
+ href="{{site.url}}#homework">course homepage.</a> Your grade will be calculated with the
73
+ formula: <strong>Math.floor(%tests_passed * {{page.points}}) = Total Points</strong>. For
74
+ example, if you passed 80% of the test suite your grade would be
75
+ <strong>.8 * {{page.points}} = {{0.8 | times: page.points | floor }}.</strong>
76
+ </p>
77
+
78
+ <ul>
79
+ <li>
80
+ If you program fails to compile it will be awarded 0 points. Absolutely no partial credit
81
+ will be given if your program does not compile.
82
+ </li>
83
+ <li>
84
+ Your code will be graded on the command line using the operating system and tools specified. Your instructor
85
+ will not use an IDE to build your lab.
86
+ </li>
87
+ <li>
88
+ Do not modify files that say <strong>DO NOT MODIFY</strong>. If you do you will be awarded 0
89
+ points!
90
+ </li>
91
+ </ul>
@@ -1,26 +1,45 @@
1
1
  ---
2
- layout: course
2
+ layout: default
3
3
  ---
4
4
 
5
- {{content}}
6
5
 
7
- <h2 id="reading-assignment">Reading Assignment</h2>
6
+ {% include course-sidebar.html %}
8
7
 
9
- <p>
10
- You need to log into the textbook with the link below and complete the assigned challenge and
11
- participation questions. After the due date has passed your instructor will download your
12
- completed activities and calculate your grade. There is nothing you need to explicitly turn in
13
- all your progress is saved automatically by the textbook.
14
- </p>
8
+ <div id="main-content" class="post-content">
9
+ <article>
10
+ <h1>{{site.data.semester-info.reading[page.slug]}}</h1>
15
11
 
16
- <p>
17
- Your grade will be calculated with the formula: <strong>%complete * 20 = grade</strong>. For
18
- example, if you completed 80% of the assigned challenge and participation questions your grade
19
- would be <strong>.8 * 20 = 16.</strong>
20
- </p>
12
+ <h2 id="overview">Overview</h2>
21
13
 
22
- <ul>
23
- <li><a href="{{site.data.semester-info.textbook}}?selectedPanel=assignments-panel">{{site.data.semester-info.reading[page.slug]}}</a></li>
24
- <li><a href="https://zybooks.zendesk.com/hc/en-us/articles/360007538033-What-are-assignments-how-do-I-get-credit-for-them-and-how-do-I-submit-them-">Zybooks Help</a></li>
25
- </ul>
14
+ <p>
15
+ For this homework you will need to log into zyBooks with the link below and complete the
16
+ assigned challenge and participation questions. There is nothing you need to submit for
17
+ this homework all your progress is saved automatically by the textbook. Only work done
18
+ before the due date (and <a href="{{site.url}}#late-work-policy">late work policy</a>)
19
+ will be counted towards your grade.
20
+ </p>
26
21
 
22
+ <ul>
23
+ <li>
24
+ <a
25
+ href="{{site.data.semester-info.textbook}}?selectedPanel=assignments-panel">{{site.data.semester-info.reading[page.slug]}}</a>
26
+ </li>
27
+ <li>
28
+ <a
29
+ href="https://zybooks.zendesk.com/hc/en-us/articles/360007538033-What-are-assignments-how-do-I-get-credit-for-them-and-how-do-I-submit-them-">Zybooks
30
+ Help</a>
31
+ </li>
32
+ </ul>
33
+
34
+ <h2 id="points">Grading</h2>
35
+ <p>
36
+ This reading assignment is worth {{page.points}} points. The due date is listed on the <a
37
+ href="{{site.url}}#homework">course homepage.</a> Your grade will be calculated with the
38
+ formula: <strong>Math.floor(%complete * {{page.points}}) = Total Points</strong>. For example, if you completed 80% of
39
+ the assigned challenge and participation questions your grade would be <strong>.8 * {{page.points}} =
40
+ {{0.8 | times: page.points | floor }}.</strong>
41
+ </p>
42
+
43
+ </article>
44
+ {% include footer.html %}
45
+ </div>
@@ -1,24 +1,13 @@
1
- {% assign tableFileParam = {{include.file}} %}
2
- {% assign tableFile = site.data[tableFileParam] %}
1
+ ---
2
+ layout: course
3
+ ---
4
+
5
+ {% assign tableFile = site.data.semester-info %}
3
6
 
4
7
  <h2 id="catalog-description">Catalog Description</h2>
5
8
 
6
9
  {{tableFile.catalog}}
7
10
 
8
- <h2 id="logistics">Logistics</h2>
9
-
10
- <ul>
11
- <li><strong>Instructor:</strong> {{tableFile.instructor}}</li>
12
- <li><strong>Email:</strong> {{tableFile.email}}</li>
13
- <li><a href="{{tableFile.textbook}}">Textbook</a></li>
14
- </ul>
15
-
16
- <h2 id="learning-objectives">Learning Objectives</h2>
17
-
18
- <ul>
19
- <li><a href="{{tableFile.learning-objectives}}">Learning Objective Alignment Sheet</a></li>
20
- </ul>
21
-
22
11
  <h2 id="coursework">Coursework</h2>
23
12
 
24
13
  <table>
@@ -42,7 +31,7 @@
42
31
  </tbody>
43
32
  </table>
44
33
 
45
- <h2 id="final-grades">Grading</h2>
34
+ <h2 id="final-grades">Grading Policy</h2>
46
35
 
47
36
  <p>
48
37
  Final grades will be assigned with the formula [Earned Points]/[Total Points]. For example if you
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shanep-class
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.15
4
+ version: 1.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - shane panter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-20 00:00:00.000000000 Z
11
+ date: 2022-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -97,9 +97,7 @@ files:
97
97
  - _includes/footer.html
98
98
  - _includes/head.html
99
99
  - _includes/header.html
100
- - _includes/semester-info.html
101
100
  - _includes/svg-image.html
102
- - _includes/syllabus-policies.html
103
101
  - _includes/toc.html
104
102
  - _includes/youtube.html
105
103
  - _layouts/course-notoc.html
@@ -109,6 +107,7 @@ files:
109
107
  - _layouts/lab.html
110
108
  - _layouts/project.html
111
109
  - _layouts/reading-zybooks.html
110
+ - _layouts/syllabus.html
112
111
  - _sass/asciinema-player.scss
113
112
  - _sass/highlight.scss
114
113
  - _sass/main.scss
@@ -1,111 +0,0 @@
1
-
2
- {% assign pgs = site.lessons | sort: 'slug' %}
3
-
4
- {% assign tableFileParam = {{include.file}} %}
5
- {% assign tableFile = site.data[tableFileParam] %}
6
-
7
- {% assign one_day = 1 | times: 24 | times: 60 | times: 60 %}
8
- {% assign two_days = 2 | times: 24 | times: 60 | times: 60 %}
9
- {% assign three_days = 3 | times: 24 | times: 60 | times: 60 %}
10
- {% assign four_days = 4 | times: 24 | times: 60 | times: 60 %}
11
-
12
- {% if tableFile.start-day == "monday" %}
13
- {% assign curr_date = tableFile.start-date | date: "%s" | minus: four_days%}
14
- {% elsif tableFile.start-day == "tuesday" %}
15
- {% assign curr_date = tableFile.start-date | date: "%s" | minus: three_days%}
16
- {% elsif tableFile.start-day == "wednesday" %}
17
- {% assign curr_date = tableFile.start-date | date: "%s" | minus: two_days%}
18
- {% elsif tableFile.start-day == "thursday" %}
19
- {% assign curr_date = tableFile.start-date | date: "%s" | minus: one_day %}
20
- {% endif%}
21
-
22
- <div >
23
-
24
- <h2 id="important-links">Important links</h2>
25
- <ul>
26
- {% if tableFile.textbook %}
27
- <li><a href="{{tableFile.textbook}}">Text Book</a></li>
28
- {% endif %}
29
- <li><a href="{{tableFile.discussion}}">Discussion Forum</a></li>
30
- <li><a href="{{tableFile.github}}">Github Course Site</a></li>
31
- <li><a href="{{tableFile.grades}}">Grades</a></li>
32
- <li><a href="{{tableFile.office-hours}}">Office Hours</a></li>
33
- <li><a href="{{tableFile.learning-objectives}}">Learning Objective Alignment Sheet</a></li>
34
- </ul>
35
-
36
- <h2 id="schedule">Schedule - {{tableFile.semester}}</h2>
37
- <table style="margin:auto;height: 100%; width: 100%;">
38
- <thead>
39
- <tr>
40
- <th class="text-center">Week</th>
41
- <th>Due Date</th>
42
- <th>Lesson</th>
43
- </tr>
44
- </thead>
45
-
46
- <tbody>
47
- {% assign curr_week = 1 %}
48
- {% assign curr_module = "none" %}
49
-
50
- {% assign loop_counter = 1 %}
51
-
52
- {% for page in pgs %}
53
- {% if page.path contains "lesson" %}
54
- {% assign loop_counter = loop_counter | plus: 1 %}
55
- {% if curr_module != page.tag %}
56
- <!--Module header-->
57
- <tr>
58
- <td colspan="3" class="text-center table-darkish">{{page.tag | capitalize }}</td>
59
- </tr>
60
- {% assign curr_module = page.tag %}
61
- {% endif%}
62
-
63
-
64
- {% if curr_week == tableFile.break %}
65
- <!--Add in the break week, we need to grab the next lesson before inserting new week-->
66
- <tr>
67
- {% assign curr_date = curr_date | date: %s | plus: two_days %}
68
- <td>{{curr_date | date: "%m/%d - %a"}}</td>
69
- <td><a href="{{site.url}}{{page.url}}">{{page.title}} ({{page.slug}})</a>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
70
- </tr>
71
- <tr>
72
- <td rowspan= 2 class="table-lightish text-center border">
73
- {% assign curr_date = curr_date | date: %s | plus: three_days %}
74
- {{curr_week}}
75
- </td>
76
- {% assign curr_date = curr_date | date: %s | plus: two_days %}
77
- <td>{{curr_date | date: "%m/%d - %a"}}</td>
78
- <td>Break</td>
79
- </tr>
80
- <tr>
81
- {% assign curr_date = curr_date | date: %s | plus: two_days %}
82
- <td>{{curr_date | date: "%m/%d - %a"}}</td>
83
- <td>Break</td>
84
- </tr>
85
- {% assign curr_week = curr_week | plus: 1 %}
86
- {%else%}
87
-
88
- <tr>
89
- {% comment %}
90
- Need to keep track of our own loop counter to filter out docs don't use forloop.index
91
- {% endcomment %}
92
- {% assign tmp = loop_counter | modulo: 2 %}
93
- {% if tmp == 0 %}
94
- <td rowspan= 2 class="table-lightish text-center border">
95
- {% assign curr_date = curr_date | date: %s | plus: three_days %}
96
- {{curr_week}}
97
- {% assign curr_week = curr_week | plus: 1 %}
98
- </td>
99
- {% endif %}
100
- {% assign curr_date = curr_date | date: %s | plus: two_days %}
101
- <td>{{curr_date | date: "%m/%d - %a"}}</td>
102
-
103
-
104
- <td><a href="{{site.url}}{{page.url}}">{{page.title}} ({{page.slug}})</a>{%if page.layout == "lab"%} ๐Ÿงช {%elsif page.layout == "project" %} ๐Ÿ“ก {% endif%}</td>
105
- </tr>
106
- {%endif%}
107
- {% endif %}
108
- {% endfor%}
109
- </tbody>
110
- </table>
111
- </div>