-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (129 loc) · 5.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="author" content="Andrew Seidel">
<title>Marking Less in ICS</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/sky.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<!-- This is the section to create the slides -->
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Marking <strong>Less</strong> in ICS</h1>
<pre><code class="hljs" data-trim contenteditable>
void setup() {
location = "CEMC 2017 - Summer Conference";
presenter = "Andrew Seidel";
}
</code></pre>
</section>
<section> <!-- main question section -->
<h2>Important Questions</h2>
<p><span class="fragment">Why change my system?</span></p>
<p><span class="fragment">Markless vs. mark less</span></p>
<p><span class="fragment">Theory</span></p>
<p><span class="fragment">Evidence</span></p>
<p><span class="fragment">How do we mark less?</span></p>
<p><span class="fragment">What does this look like?</span></p>
<p><span class="fragment">How do I start this?</span></p>
</section>
<section> <!-- why change my system? -->
<h2>Why change my system?</h2>
<p>To focus more time on student learning.</p>
<p>Lowers the student's focus on "What's my mark?"</p>
<p>Students focus more on improving</p>
</section>
<section> <!-- Markless vs mark less -->
<h2>Markless vs mark less?</h2>
<p>Personal goal would be to go markless - this would help students focus on learning</p>
<p>In the mean time, I do a lot less <strong>marking</strong> for my students</p>
<p>I do give a <strong>lot</strong> more feedback though</p>
</section>
<section> <!-- title -->
<h2>Theory - Overarching Learning Goals (OLGs)</h2>
<p>Evaluate on 3-5 items</p>
<p>Assess based on learning goals and success criteria</p>
</section>
<section> <!-- evaluations (show graphics for ICS courses) -->
<h2>Evaluate</h2>
ICS2O - 3 goals
ICS3U - 3 goals
ICS4U - 3 goals
<p>All the goals are based on the overall expectations</p>
</section>
<section> <!-- assessments -->
<h2>Assessments</h2>
<p>All assessments are broken down into learning goals and success criteria (as per Growing Success)</p>
<p>3 rubrics for the whole course (based on OLGs)</p>
<p>Rubric subsections are based on learning goals</p>
<p>Success Criteria are listed in the rubric</p>
</section>
<section> <!-- assessments continued (projects, tests, etc.) -->
<h2>What assessments do I do?</h2>
<p>Almost 0 tests (ICS2O @ 0, ICS3U @ 1, ICS4U @ 2)</p>
<p>Do mainly large and small projects, a couple group projects, and presentations</p>
</section>
<section> <!-- evidence -->
<h2>What do I provide to the students?</h2>
<p>Feedback via Single-point rubrics</p>
<p>No marks - focus is on learning</p>
</section>
<section> <!-- how do we mark less? -->
<h2>How do we mark less?</h2>
<p>Focus the students on the learning process</p>
<p>Give out larger projects rather than a lot of little ones</p>
<p>Allows for more feedback</p>
<p>Sit with students when giving feedback, and update their rubric on the spot</p>
</section>
<section> <!-- what does this look like -->
<h2>What does my class look like?</h2>
<p>Give large projects that last at least a week</p>
<p>Spend most of my time walking around helping students individually</p>
<p><strong>Minimal</strong> stand and deliver (10-20 minutes a week on average)</p>
<p>Allows me a lot of time to give individual feedback</p>
</section>
<section> <!-- how do I start this? -->
<h2>How do I start this?</h2>
<p>Focus on the important points of the course</p>
<p>Turn the classroom into a learning-focused class (rather than mark driven)</p>
<p>Continuously focus the student's attention to learning (rather than marks)</p>
<p>Free up a lot of "marking" time by providing feedback and updating rubrics <strong>in-class</strong></p>
</section>
<section> <!-- Group discussion -->
<h2>Collaborate!</h2>
<p> Time to collaborate!</p>
<p>Google Doc for discussions link provided</p>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
history: true,
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'plugin/notes/notes.js', async: true },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>