-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurriculum.html
240 lines (209 loc) · 9 KB
/
curriculum.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" /> <!-- TODO encode feeds as UTF-8 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Dedicated to the advocacy and advancement of Lisp-based software and development technologies." />
<meta name="keywords" content="lisp, scheme, clojure, functional programming, software development" />
<title>ClojureBridge LispNYC: curriculum</title>
<link rel="stylesheet" href="static/css/foundation.css" />
<link rel="stylesheet" href="static/css/foundation-clojurebridge.css" />
<script src="static/js/vendor/modernizr.js"></script> <!-- foundation -->
</head>
<body>
<!-- top bar -->
<nav class="top-bar" data-topbar="data-topbar">
<ul class="title-area">
<li class="name">
<h1><a href="index.html"><img class="title" src="static/images/clojurebridge-logo.png" /><span class="logo-text">ClojureBridge NYC</span></a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="curriculum.html#"><span>menu</span></a></li>
</ul>
<section class="top-bar-section">
<ul class="right navigation">
<li class="has-dropdown">
<a>workshop</a>
<ul class="dropdown">
<li><a href="why-clojure.html">why clojure</a></li>
<li><a href="curriculum.html">curriculum</a></li>
<li><a href="schedule.html">schedule</a></li>
<li><a href="resources.html">resources</a></li>
</ul>
</li>
<li><a href="organizers.html">organizers</a></li>
<li class="has-dropdown">
<a>sponsorship</a>
<ul class="dropdown">
<li><a href="sponsors.html">our sponsors</a></li>
<li><a href="be-a-sponsor.html">be a sponsor</a></li>
</ul>
</li>
<li class="has-dropdown">
<a>inspiration</a>
<ul class="dropdown">
<li><a href="ada-lovelace.html">lessons from Ada</a></li>
<li><a href="women-in-science.html">women in science</a></li>
<li><a href="beryl-nelson.html">beryl nelson</a></li>
</ul>
</li>
<li><a href="code-of-conduct.html">code of conduct</a></li>
<li>
<a target="_blank" href="http://lispnyc.org/about"><img class="menuitem" src="static/images/lispnyc-logo-light.gif" /></a>
</li>
</ul>
</section>
</nav>
<!-- top bar -->
<div id="announcement"></div>
<div class="row">
<div class="large-2 medium-2 columns show-for-medium-up"></div>
<div class="large-10 medium-10 small-12 columns">
<div class="meeting panel">
<p><b><span class="meetingHeader"></span></b></p>
<p class="meetingContent"><p></p><div class="pagetitle">Workshop Curriculum</div>
<p></p><div style="display:flex; justify-content:space-between; flex-wrap: wrap">
<div style="width: 49%; min-width: 350px; background-color: white; padding: 10px">
<div style="font-weight: bold; text-align: center">NOVICE TRACK</div>
<div style="font-weight: bold; text-align:center; margin-top: 10px">
Course Description
</div>
<div style="text-align: justified">
This course is for individuals with no or limited coding experience.
</div>
<div style="font-weight: bold; text-align:center">
Reqirements
</div>
<div style="text-align: justified">
<ul>
<li>Laptop</li>
</ul>
</div>
<div style="font-weight: bold; text-align:center">
Topics Covered
</div>
<div style="text-align: justified">
<div style="text-decoration: underline">Simple Values:</div>
<ul>
<li>Strings</li>
<li>Booleans and nil</li>
<li>Keywords</li>
<li>Numbers & Arithmetic</li>
</ul>
<div style="text-decoration: underline">Data Structures</div>
<ul>
<li>Lists</li>
<li>Vectors</li>
<li>Maps</li>
</ul>
<div style="text-decoration: underline"> Functions </div>
<ul>
<li>What are functions?</li>
<li>Functions that take other functions</li>
<li>Predicate functions</li>
<li>Anonymous functions</li>
<li>Pure functions</li>
</ul>
<div style="text-decoration: underline">Your First Program</div>
<ul>
<li>Create your first computer program written in Clojure</li>
</ul>
<div style="text-decoration: underline">Flow Control and Logic</div>
<ul>
<li>If</li>
<li>Cond function</li>
</ul>
<div style="text-decoration: underline">Sequences</div>
</div>
</div>
<p>
</p><div style="width: 49%; min-width: 350px; background-color: white; padding: 10px">
<div style="font-weight: bold; text-align: center">ADVANCED TRACK</div>
<div style="font-weight: bold; text-align:center; margin-top: 10px">
Course Description
</div>
<div style="text-align: justified">
This course is for individuals with coding experience seeking to translate those skills into Clojure and learn more about Functional Programming.
</div>
<div style="font-weight: bold; text-align:center">
Reqirements
</div>
<div style="text-align: justified">
<ul>
<li>Laptop</li>
<li>Java 8 or greater</li>
</ul>
</div>
<div style="font-weight: bold; text-align:center">
Topics Covered
</div>
<div style="text-align: justified">
<div style="text-decoration: underline">Up and running:</div>
<ul>
<li>Introduction to Leiningen (Clojure build tool)</li>
<li>Using the REPL (Read Eval Print Loop)</li>
<li>Namespaces in Clojure</li>
</ul>
<div style="text-decoration: underline">Basics</div>
<ul>
<li>S-expressions & homoiconicity</li>
<li>Primitive operators</li>
<li>Conditionals</li>
</ul>
<div style="text-decoration: underline"> Functions </div>
<ul>
<li>Named functions</li>
<li>Anonymous functions</li>
<li>Arguments</li>
<li>Recursion</li>
<li>Local bindings & lexical scope</li>
</ul>
<div style="text-decoration: underline"> Data Structures </div>
<ul>
<li>Immutable state</li>
<li>Sequence and collection abstractions</li>
<li>Lists, vectors, and hash-maps</li>
<li>Sequence functions</li>
<li>Key-value functions</li>
<li>Lazy evaluation</li>
</ul>
<div style="text-decoration: underline"> Higher order functions </div>
<ul>
<li>map, reduce, filter, apply, etc.</li>
<li>Solving problems functionally</li>
</ul>
<div style="text-decoration: underline"> Advanced Clojure (time permitting) </div>
<ul>
<li>Java interop</li>
<li>Mutability</li>
<li>OOP</li>
<li>Macros</li>
</ul>
</div>
</div>
</div>
<p></p>
<p></p></p>
</div>
</div>
</div> <!-- row -->
<!-- foundation -->
<script>
document.write('<script src="static/js/vendor/'.html" +
('__proto__' in {} ? 'zepto' : 'jquery') +
'.js><\/script>')
</script>
<script src="static/js/vendor/jquery.js"></script>
<script src="static/js/foundation/foundation.js"></script>
<script src="static/js/foundation/foundation.topbar.js"></script>
<script src="static/js/foundation/foundation.dropdown.js"></script>
<!--script src="/static/js/foundation.min.js"></script-->
<script>
$(document).foundation();
</script>
<!-- google analytics -->
<script type="text/javascript">
var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-20563213-1']); _gaq.push(['_trackPageview']);
(function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();
</script>
</body>
</html>