shanep-class 1.0.16 → 1.0.19

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