-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGlossary.html
59 lines (52 loc) · 2.04 KB
/
Glossary.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
<!DOCTYPE html>
<html>
<head>
<title>SPLICE Glossary</title>
<link rel="stylesheet" href="cssplice.css" type="text/css" />
</head>
<body>
<div id="content">
<h1>The SPLICE Glossary<br/></h1>
<p>Some of the terms used by our community might seem
unusual. Hopefully our glossary can help.</p>
<ul>
<li>SPLICE: Standards, Protocols, and Learning Infrastructure
for Computing Education.<br/>
This is our project!</li><br/>
<li>SLC: Smart Learning Content<br/>
The definition is a bit vague. But the idea is that this is
an interactive learning activit that a student does on a
computer, often with the context of an eTextbook or an
LMS.</li><br/>
<li>LTI: Learning Tools Interoperability<br/>
A standard for letting educational tools (including SLC and
LMS) talk to each other. For all practical purposes, this is
the one that most CS Education tool builders use now. For
more information,
see <a href="http://splice.cs.vt.edu/lti">here</a>.</li><br/>
<li>IDE: Integrated Development Environment<br/>
An application for use when writing computer programs. They
try to do whatever their developers can think of to help you
write code, including a file manager, editor, compiler, and
typically support for things like writing and running unit
tests.</li><br/>
<li>LMS: Learning Management System<br/>
Things like Canvas, Blackboard, Moodle. Used by an
educational organization to deliver course content, manage
assignments, grades, etc.</li><br/>
</ul>
</div>
<div id="footer">
<hr />
<p class="footertext">
<a href="mailto:[email protected]">Contact us</a>
</p>
<p class="footertext">
Last updated:
<script type="text/javascript">
document.write(document.lastModified);
</script>
</p>
</div>
</body>
</html>