shanep-class 1.0.0 → 1.0.1

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: 3e3f42d43ccb4ad9292b9115b5f077bbfe5cabc54a4b3c2d600ebd96ac990fb5
4
- data.tar.gz: 178d39a5daa61a196c86ebb6fcf796e0da3645563a5044500fbcdadcaa394bd6
3
+ metadata.gz: e61d6aeb08191e338e9c469cbe7f54562fbca694f8947ad2521288a6c755b99d
4
+ data.tar.gz: 3dc0142b7a794f91fa62b4f22563c2a1ba6c6da9ea4315d186b500bbacbfa1d5
5
5
  SHA512:
6
- metadata.gz: 5ece44f193d8aaf53fd29102d5f0f1aeb6d198c649ad11825defa243fef7142c2613a35a732001b8e5b6d64781623fed926fbd1783ba3a87bb4a22b2b32caab0
7
- data.tar.gz: 93bcd322938bf12ed85c77d29cbfd3258f2f73ea1398f850d59824d7f2acfd5a55827d555c1a1cb0c28a9a585eb9adb07187b93ef4ab8818b85981f7461e5a79
6
+ metadata.gz: 4f542d67ebe2b3a806cadbcfb0e8f502be5a338bf393c280b14748a00cac08cb42385d837bb000fa52b9f580eca643187a56b6bfd3aaf6b949764233d7b37795
7
+ data.tar.gz: acde3df8dde975a9df1fe8d4c34ff3e403ded585bd79727bcb1e2d58a1b3e72bfd95c41c3cce55c4a2d2fe55c607199fa0ae800b1f71700828aa7d47501b99db
data/404.html ADDED
@@ -0,0 +1,25 @@
1
+ ---
2
+ permalink: /404.html
3
+ layout: default
4
+ ---
5
+
6
+ <style type="text/css" media="screen">
7
+ .container {
8
+ margin: 10px auto;
9
+ max-width: 600px;
10
+ text-align: center;
11
+ }
12
+ h1 {
13
+ margin: 30px 0;
14
+ font-size: 4em;
15
+ line-height: 1;
16
+ letter-spacing: -1px;
17
+ }
18
+ </style>
19
+
20
+ <div class="container">
21
+ <h1>404</h1>
22
+
23
+ <p><strong>Page not found :(</strong></p>
24
+ <p>The requested page could not be found.</p>
25
+ </div>
@@ -0,0 +1,51 @@
1
+ break: 14
2
+ start-date: 2022-08-21T12:00:00Z
3
+ start-day: wednesday
4
+ semester: Fall 2022
5
+ textbook: https://example.com
6
+ discussion: https://piazza.com/
7
+ github: https://github.com/some-site
8
+ office-hours: https://example.com
9
+ grades: https://example.com
10
+ exams: https://example.com
11
+ example-exams: https://example.com
12
+ learning-objectives: https://example.com
13
+ instructor: John Doe
14
+ email: johndoe@boisestate.edu
15
+ text_logo: //CS123
16
+ catalog: >
17
+ **CS123 Computer Science Stuff (3-0-3)(F,S)**. Catalog description. **PREREQ: CS121.**
18
+ coursework:
19
+ Labs (11 @ 50 points each): 550
20
+ Reading (10 @ 20 points each): 200
21
+ Midterm Exam: 100
22
+ Final Project: 100
23
+ Final Exam: 100
24
+
25
+ labs:
26
+ lesson02: /docs/starter-code.html
27
+ lesson04: /docs/starter-code.html
28
+ lesson06: /docs/starter-code.html
29
+ lesson08: /docs/starter-code.html
30
+ lesson10: /docs/starter-code.html
31
+ lesson12: /docs/starter-code.html
32
+ lesson14: /docs/starter-code.html
33
+ lesson18: /docs/starter-code.html
34
+ lesson20: /docs/starter-code.html
35
+ lesson22: /docs/starter-code.html
36
+ lesson24: /docs/starter-code.html
37
+ lesson26: /docs/starter-code.html
38
+ lesson28: /docs/starter-code.html
39
+ lesson30: /docs/starter-code.html
40
+
41
+ reading:
42
+ lesson03: Reading Assignment (ch1)
43
+ lesson05: Reading Assignment (ch2.1-2.4)
44
+ lesson07: Reading Assignment (ch2.5-2.11)
45
+ lesson09: Reading Assignment (ch3)
46
+ lesson11: Reading Assignment (ch4)
47
+ lesson13: Reading Assignment (ch5)
48
+ lesson17: Reading Assignment (ch6.1-6.3)
49
+ lesson19: Reading Assignment (ch6.4-6.6)
50
+ lesson21: Reading Assignment (ch7.4-7.4)
51
+ lesson23: Reading Assignment (ch7.5-7.9)
@@ -0,0 +1,53 @@
1
+ ---
2
+ title: "Lab Grading Rubric"
3
+ date: 2022-01-20
4
+ tags: rubric
5
+ ---
6
+
7
+ ## Overview
8
+
9
+ This document applies to all coding labs turned in during the semester.
10
+
11
+ ## Point Breakdown
12
+
13
+ - 20 points - Code passes instructors private test suite for the lab.
14
+ - Your grade will be based on the number of tests that you pass
15
+ - 4 points - Code will be checked for the following
16
+ - Code is formatted correctly
17
+ - `@Override` is present on all methods that are overridden.
18
+ - The only part of the class that can be declared **public** are methods. All fields, properties,
19
+ or variables must be declared **private**.
20
+ - General code quality such as good variable names, proper use of camelCase, etc.
21
+ - 6 points - All Code has appropriate [Javadoc](https://en.wikipedia.org/wiki/Javadoc)
22
+ - Javadoc is require for 100% of the java files.
23
+ - 5 points - Appropriate unit tests are written
24
+ - Are all possible return values for methods
25
+ - Passing null objects to method should not crash your program
26
+ - Passing invalid method values should be handled as specified
27
+ - 5 points - All TODO sections in the README.md completed
28
+ - 4 points - Code compiles without warnings
29
+ - This is pass fail **NO** partial credit
30
+ - 6 points - You turned in your code correctly.
31
+ - This is pass fail **NO** partial credit
32
+
33
+
34
+ ## Notes
35
+
36
+ - If you program fails to compile it will be awarded 0 points. Absolutely no partial credit will be
37
+ given if your program does not compile.
38
+ - Your code will be graded on the command line. Your instructor or TA will not use an IDE to build
39
+ your code.
40
+ - Do not modify files that say **DO NOT MODIFY**. If you do you will be awarded 0 points!
41
+ - **ALL** code must be documented even code that was given to you.
42
+
43
+ ```java
44
+ /**
45
+ * DO NOT MODIFY
46
+ */
47
+ interface Foo {
48
+ /**
49
+ * Does some bar
50
+ */
51
+ public void bar();
52
+ }
53
+ ```
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: Starter Code Place Holder
3
+ layout: course-notoc
4
+ date: 2022-01-20
5
+ ---
6
+
7
+ This is a place holder page for the github assignment. If you are seeing this it means the lab is
8
+ not quite ready to work on yet. Please check back closer to the labs start date.
9
+
10
+ In the meantime check out this sweet under [construction gif](http://textfiles.com/underconstruction/)!
11
+
12
+ ![Under Construction]({% link assets/images/construction.gif %})
data/_docs/syllabus.md ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: "Syllabus"
3
+ tag: syllabus
4
+ ---
5
+
6
+ {% include syllabus-policies.html file="semester-info" %}
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: "Course Introduction"
3
+ date: 2022-01-10
4
+ tag: introduction
5
+ layout: course-notoc
6
+ ---
7
+
8
+ ## Overview
9
+
10
+ {% include youtube.html param="https://www.youtube.com/embed/dQw4w9WgXcQ" %}
11
+
12
+ Introduce your course!
@@ -0,0 +1,5 @@
1
+ ---
2
+ title: Scavenger Hunt
3
+ tag: introduction
4
+ layout: lab
5
+ ---
data/index.html ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: home
3
+ tag: home
4
+ ---
data/robots.txt ADDED
@@ -0,0 +1,5 @@
1
+ # www.robotstxt.org/
2
+
3
+ # Allow crawling of all content
4
+ User-agent: *
5
+ Disallow:
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.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - shane panter
@@ -31,9 +31,14 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - 404.html
34
35
  - LICENSE
35
36
  - README.md
36
37
  - _config.yml
38
+ - _data/semester-info.yml
39
+ - _docs/grading-rubric.md
40
+ - _docs/starter-code.md
41
+ - _docs/syllabus.md
37
42
  - _includes/alert.html
38
43
  - _includes/asciinema.html
39
44
  - _includes/course-sidebar.html
@@ -52,6 +57,8 @@ files:
52
57
  - _layouts/lab.html
53
58
  - _layouts/project.html
54
59
  - _layouts/reading-zybooks.html
60
+ - _lessons/lesson01.md
61
+ - _lessons/lesson02.md
55
62
  - _sass/asciinema-player.scss
56
63
  - _sass/highlight.scss
57
64
  - _sass/main.scss
@@ -64,6 +71,8 @@ files:
64
71
  - assets/images/home_page.png
65
72
  - assets/js/asciinema-player.js
66
73
  - assets/js/plugins.js
74
+ - index.html
75
+ - robots.txt
67
76
  homepage: https://github.com/shanep/shanep-class
68
77
  licenses:
69
78
  - MIT