-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
391 lines (361 loc) · 16.8 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
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<html>
<head>
<title>Presentations - Cleveland NodeSchool</title>
<link rel="stylesheet" type="text/css" href="common/bootstrap-3.3.5-dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="common/bootstrap-3.3.5-dist/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="common/css/layout.css"/>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<h1>Presentations for NodeSchool Cleveland</h1>
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="http://www.meetup.com/NodeSchool-Cleveland/events/224705841/" target="blank">
Learn You Node For Much Win!
</a>
</strong>
</div>
<div class="flex-item-static">9/21/2015</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
Introduction to the learnyounode workshop as part of NodeSchool.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="learnyounode/index.html" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="http://www.meetup.com/NodeSchool-Cleveland/events/225536734/" target="blank">
Promise It Won't Hurt
</a>
</strong>
</div>
<div class="flex-item-static">10/19/2015</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
Node.js achieves its performance through the use of
asynchronous I/O. Although this is terrific for
performance, asynchronous code can be very
difficult for programmers to manage. As a result,
developers often have to write a lot of code that
obscures the intent and valuable time is lost
debugging obscure problems.
</p>
<p>
JavaScript is a great language to use when dealing
with asynchronicity. With the recent addition of
promises, that story gets even better, because
they make asynchronous code <em>composable</em>.
Work through this workshopper to find out how.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="promiseitwonthurt/index.html" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="http://www.meetup.com/NodeSchool-Cleveland/events/228145026/" target="blank">
Lololodash
</a>
</strong>
</div>
<div class="flex-item-static">2/15/2016</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
A quick introduction to <a href="https://lodash.com/" target="blank">Lodash</a>.
Lodash makes JavaScript easier by taking the hassle out of working with arrays,
numbers, objects, strings, etc.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="lololodash/index.html" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="http://www.meetup.com/NodeSchool-Cleveland/events/228145086/" target="blank">
React
</a>
</strong>
</div>
<div class="flex-item-static">3/21/2016</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
An introduction to Facebook's <a href="https://facebook.github.io/react/" target="blank">React</a>.
React is a Javscript library for building lightweight UI components.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="react/index.html" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="http://www.meetup.com/NodeSchool-Cleveland/events/234127272/" target="blank">
Learn You Bash
</a>
</strong>
</div>
<div class="flex-item-static">9/19/2016</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
Learn how to use the terminal and write your first Bash script.
</p>
<p>
This workshopper is based on the <a href="https://github.com/denysdovhan/bash-handbook">bash-handbook</a>.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="learnyoubash/index.html" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="http://www.meetup.com/NodeSchool-Cleveland/events/234127272/" target="blank">
GLSL
</a>
</strong>
</div>
<div class="flex-item-static">10/17/2016</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
A crash course on the OpenGL Shader Language and WebGL.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="glsl/index.html" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<!--Planet Proto-->
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="https://www.meetup.com/Cleveland-Javascript/events/228145056/" target="blank">
Planet Proto
</a>
</strong>
</div>
<div class="flex-item-static">11/21/2016</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
Master JavaScript prototypal inheritance. Once you complete this
workshopper, you will understand how to use prototypal inheritance and
how to setup your own prototype chains using JavaScript's provided
functions or by writing your own constructor functions.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="planetproto/planet_proto.pdf" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<!--Intro to Serverless Web Architecture with AWS-->
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="https://www.meetup.com/Cleveland-Javascript/events/237933941/" target="blank">
Intro to Serverless Web Architecture with AWS
</a>
</strong>
</div>
<div class="flex-item-static">4/17/2017</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
Lambdas, Step Functions, and CloudFront - oh my!
The sheer number of services offered by AWS can make
it difficult to figure out how to get started, much
less how to stitch together a cohesive solution. In
this talk, Kyle McKee will give a practical
introduction to building "serverless" web
applications using AWS. Bring a laptop with Node 4
or higher and an AWS account if you'd like to play
along.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="https://www.slideshare.net/KyleMcKee1/intro-to-serverless-aws-web-apps" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<!--Hapi Together @ Dealer Tire-->
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="https://www.meetup.com/cleveland-javascript/events/238935224/" target="blank">
Hapi Together @ Dealer Tire
</a>
</strong>
</div>
<div class="flex-item-static">4/17/2017</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
Learn about the Hapi.js framework and how we, the
development team at Dealer Tire, utilize Hapi to
support over $1.5 billion in annual online revenue.
You will be introduced to Hapi.js plugins and how to
use them to decouple individual pieces of
application logic and manage them as typical
dependencies through a private NPM repository. There
will be working examples to hack on and discuss.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="https://docs.google.com/presentation/d/1ZFDlJ1hekC6v4a9IL9iD-B7SA2ePKkO-1lBC17HZYII/edit#slide=id.gcb9a0b074_1_0" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="flex-row">
<div class="flex-item-dynamic">
<strong>
<a href="https://www.meetup.com/Cleveland-Javascript/events/240729466/" target="blank">
Stop Battling the Mundane! The Why and How of TypeScript
</a>
</strong>
</div>
<div class="flex-item-static">6/19/2017</div>
</div>
</div>
<div class="panel-body">
<div class="flex-row">
<div class="flex-item-dynamic">
<p>
The dictionary definition of TypeScript is "a
superset of JavaScript that adds static typing."
That mathematical description of the language,
however, doesn't tell the full truth about many of
TypeScript's advantages. Come hear about the
motivations behind TypeScript, its features, and
(most importantly) how TypeScript may be able to
make you a more productive developer.
</p>
</div>
<div class="flex-item-static">
<p>
<a class="btn btn-primary btn-lg" href="typescript/typescript.pdf" role="button">
<span class="glyphicon glyphicon-play" ></span>
</a>
</p>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="common/bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>
</body>
</html>