shanep-class 1.0.17 → 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: 6f58d24528b20ef05cf44265d25d1f3376b7b8faf16e362a0da1fcede1205b0c
4
- data.tar.gz: 10ec93dde4f1933741d018ff5cdfebbf53945e5c8536d6e79d96bc92ae458335
3
+ metadata.gz: c26a891e83bd87c5c226a874e256ad1e1b6cf27b327e93c52664de0d5179b18f
4
+ data.tar.gz: fbf9355a9e6485dfb4248b5bd60fa22687d19bf0496d0007d6b4e0a6177b3851
5
5
  SHA512:
6
- metadata.gz: 7d2a31e1aa64264dd018a4124bc81e71af37f8c5cda618fa43bf137c48f0d660d66c6b14200fef186b690728808d6a864ac294afeaa86558a55a2021621db0ed
7
- data.tar.gz: a2e526e4bcb9b957ae8b8c306c423bfaadf037cde754e5e04504590742c5074ea0658f5b8044bb81d086c1359c4bcb848a26472f8a447da18796541db6e84e62
6
+ metadata.gz: 3cc225ffced45b728071e2c25911e090cb08effaa060cab3e946514894886ac08e7ec7c316bf4a6540a4e4e723b3dade3bc7594dc1365791d371ec032da0b8da
7
+ data.tar.gz: 242636e5049dc3ac2506118303be42f69e28bb7470131903b5edb4b0a868ada354e75fa7cc1820d077dcea58a26a4db067b6b0ade70c61b5d15150b979345754
data/_layouts/home.html CHANGED
@@ -50,7 +50,7 @@ layout: default
50
50
  {% endif%}
51
51
 
52
52
  <div >
53
- <h2 id="Homework">Weekly Homework</h2>
53
+ <h2 id="homework">Weekly Homework</h2>
54
54
  <table style="margin:auto;height: 100%; width: 100%;">
55
55
  <thead>
56
56
  <tr>
@@ -78,14 +78,20 @@ layout: default
78
78
  </tr>
79
79
  {% assign curr_module = page.tag %}
80
80
  {% endif%}
81
-
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
+
82
88
 
83
89
  {% if curr_week == tableFile.break %}
84
90
  <!--Add in the break week, we need to grab the next lesson before inserting new week-->
85
91
  <tr>
86
92
  {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
87
93
  <td>{{curr_date | date: "%m/%d - %a"}}</td>
88
- <td><a href="{{site.url}}{{page.url}}">{{page.title}} ({{page.slug}})</a>{%if page.layout == "lab"%} 🧪 {%elsif page.layout == "project" %} 📡 {% endif%}</td>
94
+ <td><a href="{{site.url}}{{page.url}}">{{page_title}} ({{page.slug}})</a>{%if page.layout == "lab"%} 🧪 {%elsif page.layout == "project" %} 📡 {% endif%}</td>
89
95
  <td>{{page.points}}</td>
90
96
  {% assign total_points = total_points | plus: page.points %}
91
97
  </tr>
@@ -120,7 +126,7 @@ layout: default
120
126
  {% endif %}
121
127
  {% assign curr_date = curr_date | date: "%s" | plus: two_days %}
122
128
  <td>{{curr_date | date: "%m/%d - %a"}}</td>
123
- <td><a href="{{site.url}}{{page.url}}">{{page.title}} ({{page.slug}})</a>{%if page.layout == "lab"%} 🧪 {%elsif page.layout == "project" %} 📡 {% endif%}</td>
129
+ <td><a href="{{site.url}}{{page.url}}">{{page_title}} ({{page.slug}})</a>{%if page.layout == "lab"%} 🧪 {%elsif page.layout == "project" %} 📡 {% endif%}</td>
124
130
  <td>{{page.points}}</td>
125
131
  {% assign total_points = total_points | plus: page.points %}
126
132
  </tr>
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,23 +1,45 @@
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
+ {% include course-sidebar.html %}
12
7
 
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>
8
+ <div id="main-content" class="post-content">
9
+ <article>
10
+ <h1>{{site.data.semester-info.reading[page.slug]}}</h1>
18
11
 
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>
12
+ <h2 id="overview">Overview</h2>
23
13
 
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>
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>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shanep-class
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.17
4
+ version: 1.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - shane panter