-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
636 lines (623 loc) · 38.6 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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags Start -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta name="title" content="Northeast Scala Symposium">
<meta name="description" content="The Northeast Scala Symposium 2023 is a community-driven conference made possible by the Philadelphia, New York, and Boston Scala Enthusiasts.">
<meta name="og:site_name" content="NEScala">
<meta name="og:type" content="website">
<meta name="og:locale" content="en_US">
<meta name="og:url" content="https://nescalas.github.io">
<meta name="og:title" content="Homepage">
<meta name="og:image" content="https://nescalas.github.io/assets/hero-image-2.jpg">
<meta name="og:description" content="The Northeast Scala Symposium 2023 is a community-driven conference made possible by the Philadelphia, New York, and Boston Scala Enthusiasts.">
<!-- Meta Tags End -->
<title>NEScala 2023</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" >
<!-- Main CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- TicketLeap CSS -->
<link href="https://widgets.ticketleap.com/v2/widget.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body class="main-page">
<!-- Header Start -->
<header id="header-wrap">
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar">
<div class="container">
<div class="navbar-header">
<div>
<a href="#" class="navbar-brand">
<img src="2020/images/nescalas-logo.png" style="height: auto; max-width: 75px">
</a>NEScala
</div>
</div>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="navbar-nav mr-auto w-100 justify-content-end">
<li class="nav-item active">
<a class="nav-link" href="#header-wrap">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedules">Schedules</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tickets">Tickets</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#coc">Code of Conduct</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Header End -->
<!-- Hero Section Start -->
<section id="main">
<div class="text-center hero-splash">
<div class="mask" style="height: 100vh;">
<div class="d-flex justify-content-center align-items-center h-100 text-white">
<h1 class="display-3">Northeast Scala Symposium<br>2023</h1>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Dates Section Start -->
<section class="countdown-timer section-padding">
<div class="container">
<div class="row text-center">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="heading-count">
<h2>Tickets On Sale Now</h2>
</div>
<div>
<h4>Oct. 26-28, 2023</h4>
<p>Online Only</p>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="row time-countdown justify-content-center">
<div id="clock" class="time-count"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Dates Section End -->
<!-- Schedule Section Start -->
<section id="schedules" class="schedule section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header">
<h1 class="section-title text-center">Speaker Schedule</h1>
<p>
Our Call for Proposals has officially closed. We are still looking for panelists. If you'd like to participate, reach out!
</p>
</div>
</div>
</div>
<div class="row">
<div class="schedule-tab-title col-md-3 col-lg-3 col-xs-12">
<div class="table-responsive">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="tab-0" data-toggle="tab" href="#day-one" role="tab" aria-controls="day-one" aria-expanded="true">
<div class="item-text">
<h4>Typelevel Summit</h4>
<h5>Thursday, Oct. 26</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="tab-1" data-toggle="tab" href="#day-two" role="tab" aria-controls="day-two">
<div class="item-text">
<h4>NE Scala Conference</h4>
<h5>Friday, Oct. 27</h5>
</div>
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="tab-2" data-toggle="tab" href="#day-three" role="tab" aria-controls="day-three">
<div class="item-text">
<h4>The Unconference</h4>
<h5>Saturday, Oct 28</h5>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="schedule-tab-content col-md-9 col-lg-9 col-xs-12 clearfix">
<div class="tab-content">
<div class="tab-pane fade show active" id="day-one" role="tabpanel" aria-labelledby="day-one">
<div id="acc1">
<div class="card">
<div id="head-1-a">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-a" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="" alt="">
</div>
<span class="time">9:00AM ET</span>
<h4>Welcome/Intro</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Justin_du_Coeur.html">Justin du Coeur</a></h5>
</div>
</div>
<div id="tt-1-a" class="collapse" aria-labelledby="head-1-a" data-parent="#acc1">
<div class="card-body">
<p>Welcome and introduction to the Typelevel Summit!</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-5">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-5" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/c9ab1175a6981a2f67ce8d08aa17c15a?s=500" alt="">
</div>
<span class="time">9:15 AM ET</span>
<h4>Functional Programming in Scala in 2023</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Michael_Pilquist.html">Michael Pilquist</a></h5>
</div>
</div>
<div id="tt-1-5" class="collapse" aria-labelledby="head-1-5" data-parent="#acc1">
<div class="card-body">
<p>The Red Book influenced the way we write functional programs in Scala. The second edition of the book was published in 2023, updating the material to take advantage of Scala 3 features. In this talk, we'll look at how Scala 3 has simplified functional programming.</p>
<p class="talk-level">Target: Beginner (30min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-15">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-15" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/8a7e159fad28f672ca794fb7f2bf7f0f?s=500" alt="">
</div>
<span class="time">10:00 AM ET</span>
<h4>Grackle: Functional GraphQL for the Typelevel stack</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Miles_Sabin.html">Miles Sabin</a></h5>
</div>
</div>
<div id="tt-1-15" class="collapse" aria-labelledby="head-1-15" data-parent="#acc1">
<div class="card-body">
<p>GraphQL is a query language for typed APIs. This is a talk about a new GraphQL engine, built for the Typelevel stack, and the techniques drawn from compiler design and implementation that have been used to build it.</p>
<p class="talk-level">Target: Intermediate (30min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-1">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-1" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/3d392a64f3fc4b309b9c5e5f3ce7c2f1?s=500" alt="">
</div>
<span class="time">10:45 AM ET</span>
<h4>No Need for NIH: Leveraging the Typelevel Stack in the Enterprise</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Adam_Rosien.html">Adam Rosien</a></h5>
</div>
</div>
<div id="tt-1-1" class="collapse" aria-labelledby="head-1-1" data-parent="#acc1">
<div class="card-body">
<p>There's a joke that a framework is a product with the business logic removed, but all the assumptions left in. In this talk we'll explore an alternative: solving the most common enterprise issues with the *composable* ecosystem of Typelevel libraries, avoiding not-invented-here (NIH) and lock-in.</p>
<p class="talk-level">Target: All (15min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-3">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-3" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/c22243e05e0b64121d5f858ff35f5f1c?s=500" alt="">
</div>
<span class="time">11:15 AM ET</span>
<h4>Lessons learned from implementing an efficient functional Mutex</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Luis_Miguel_Mejía_Suárez.html">Luis Miguel Mejía Suárez</a></h5>
</div>
</div>
<div id="tt-1-3" class="collapse" aria-labelledby="head-1-3" data-parent="#acc1">
<div class="card-body">
<p>Have you ever heard the phrase "FP or Effect systems make writing concurrent code easier and less prone to bugs”? I painfully remembered that during my journey implementing a more efficient Mutex for cats-effect.
Come and join me to revive the story and learn together the lessons from experience.</p>
<p class="talk-level">Target: All (45min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-b">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-b" aria-expanded="false" aria-controls="tt-b">
<div class="images-box">
<img class="img-fluid" src="" alt="">
</div>
<span class="time">Noon ET</span>
<h4>Lunch</h4>
<h5 class="name">Everyone</h5>
</div>
</div>
<div id="tt-1-b" class="collapse" aria-labelledby="head-1-b" data-parent="#acc1">
<div class="card-body">
<p>An hour long break for those of us who eat lunch at this time.</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-14">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-14" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/af3126cbd4b235eb4daa2d6ac95f429a?s=500" alt="">
</div>
<span class="time">1:00 PM ET</span>
<h4>Perspective: Generic programming using higher kinded data</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Kathryn_Frid.html">Kathryn Frid</a></h5>
</div>
</div>
<div id="tt-1-14" class="collapse" aria-labelledby="head-1-14" data-parent="#acc1">
<div class="card-body">
<p>Perspective demonstrates a new way of doing generic programming that is intuitive, type safe, and extensible. Perspective attains simplicity by using features like first-class typeclasses and higher kinded data to express its transformations.</p>
<p class="talk-level">Target: Advanced (45min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-0">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-0" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/3f4b023f47248cbc43b6b71fe4062d38?s=500" alt="">
</div>
<span class="time">2:00 PM ET</span>
<h4>Improving Java Library Ergonomics with Typeclasses</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Paul_Thordarson.html">Paul Thordarson</a></h5>
</div>
</div>
<div id="tt-1-0" class="collapse" aria-labelledby="head-1-0" data-parent="#acc1">
<div class="card-body">
<p>Typeclasses are one of the distinguishing features of Scala. This talk breaks down a practical application of typeclasses through an example of taking a Java library one might use in a Scala project and builds up a more Scala-like interface for interacting with it in the rest of the project.</p>
<p class="talk-level">Target: Intermediate (30min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-7">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-7" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/3b90c9fa5c515daf192adfde6faffdbb?s=500" alt="">
</div>
<span class="time">2:45 PM ET</span>
<h4>Traversing DNA with probability monads and Typelevel Native</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Arman_Bilge.html">Arman Bilge</a></h5>
</div>
</div>
<div id="tt-1-7" class="collapse" aria-labelledby="head-1-7" data-parent="#acc1">
<div class="card-body">
<p>In this talk I share my personal journey to Typelevel as a computational biologist. We'll learn how to model evolution with probability, express those as probabilistic programs, and interpret them with probability monads, then look at why Cats Effect Native is a compelling runtime for this usecase.</p>
<p class="talk-level">Target: Intermediate (30min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-1-11">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-1-11" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="assets/img/typelevel.png" alt="Typelevel logo">
</div>
<span class="time">3:30 PM ET</span>
<h4>How Typelevel Works</h4>
<h5 class="name">Members of the Typelevel Steering Committee</h5>
</div>
</div>
<div id="tt-1-11" class="collapse" aria-labelledby="head-1-11" data-parent="#acc1">
<div class="card-body">
<p>A roundtable panel discussion of members of the Typelevel Steering Committee, talking about our priorities, how things work day-to-day, and how it has changed over the years.</p>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="day-two" role="tabpanel" aria-labelledby="day-two">
<div id="acc2">
<div class="card">
<div id="head-2-a">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-a" aria-expanded="false" aria-controls="tt-2-a">
<div class="images-box">
<img class="img-fluid" src="" alt="">
</div>
<span class="time">9:00AM ET</span>
<h4>Welcome/Intro</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Justin_du_Coeur.html">Justin du Coeur</a></h5>
</div>
</div>
<div id="tt-2-a" class="collapse" aria-labelledby="head-2-a" data-parent="#acc2">
<div class="card-body">
<p>Welcome and introduction to the North East Scala Symposium!</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-12">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-12" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/0db18e72e1d2a0d42b0d96c8730dd458?s=500" alt="">
</div>
<span class="time">9:15 AM ET</span>
<h4>Building a concurrency library on top of Loom</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Adam_Warski.html">Adam Warski</a></h5>
</div>
</div>
<div id="tt-2-12" class="collapse" aria-labelledby="head-2-12" data-parent="#acc2">
<div class="card-body">
<p>Everybody's talking about Project Loom, but how to best use it in practice? Does it replace the reactive libraries and functional effects? We'll try to answer some of these questions during a live-coding session!</p>
<p class="talk-level">Target: Intermediate (45min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-9">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-9" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/41992d2969009191f2393d210b681744?s=500" alt="">
</div>
<span class="time">10:15 AM ET</span>
<h4>ScalaBridge London: The Plan</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Noel_Welsh.html">Noel Welsh</a></h5>
</div>
</div>
<div id="tt-2-9" class="collapse" aria-labelledby="head-2-9" data-parent="#acc2">
<div class="card-body">
<p>ScalaBridge London has restarted. What we're trying to do, and how we're planning to do it, is quite unique. This talk will give a quick overview of our plans, what we've done so far, and what remains to be done.</p>
<p class="talk-level">Target: All (15min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-8">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-8" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/3b90c9fa5c515daf192adfde6faffdbb?s=500" alt="">
</div>
<span class="time">10:45 AM ET</span>
<h4>Scala Summer of Code 2023</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Arman_Bilge.html">Arman Bilge</a></h5>
</div>
</div>
<div id="tt-2-8" class="collapse" aria-labelledby="head-2-8" data-parent="#acc2">
<div class="card-body">
<p>The Scala Center was a mentor organization in Google Summer of Code 2023, which funds students to work on open source projects. In this series of lightning talks, our students will share their projects, which spanned data visualization, networking, the Scala 3 compiler, and educational materials.</p>
<p class="talk-level">Target: All (45min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-13">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-13" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/2231b0d76dfc23d27fd0c06115177006?s=500" alt="">
</div>
<span class="time">11:45AM ET</span>
<h4>The Power of Scala with Large Language Models</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Sisir_Koppaka.html">Sisir Koppaka</a></h5>
</div>
</div>
<div id="tt-2-13" class="collapse" aria-labelledby="head-2-13" data-parent="#acc2">
<div class="card-body">
<p>Scala is an incredibly powerful, type safe language. Large Language Models (LLMs) are the starting point of AI applications today. Integrating Scala with LLMs provides a powerful toolkit that can abstract over a larger variety of data and still retain the benefits of type safety.</p>
<p class="talk-level">Target: All (15min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-b">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-b" aria-expanded="false" aria-controls="tt-b">
<div class="images-box">
<img class="img-fluid" src="" alt="">
</div>
<span class="time">Noon ET</span>
<h4>Lunch</h4>
<h5 class="name">Everyone</h5>
</div>
</div>
<div id="tt-2-b" class="collapse" aria-labelledby="head-2-b" data-parent="#acc2">
<div class="card-body">
<p>An hour long break for those of us who eat lunch at this time.</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-2">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-2" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/3d392a64f3fc4b309b9c5e5f3ce7c2f1?s=500" alt="">
</div>
<span class="time">1:00 PM ET</span>
<h4>I-Don't-Know-Driven Development</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Adam_Rosien.html">Adam Rosien</a></h5>
</div>
</div>
<div id="tt-2-2" class="collapse" aria-labelledby="head-2-2" data-parent="#acc2">
<div class="card-body">
<p>Programming with hubris brings doom upon us: compiler and runtime errors. Instead, we can leverage humility by precisely declaring "I don't know" which allows us to defer decisions and implementation details until later. We'll teach this method in Scala for you to employ anywhere.</p>
<p class="talk-level">Target: All (15min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-10">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-10" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/cba22fdf00b7ddc09240b582e1433c47?s=500" alt="">
</div>
<span class="time">1:15 PM ET</span>
<h4>Implementing Real-time Sentiment Analysis Tools with Scala and GPT-4</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Renaldi_Gondosubroto.html">Renaldi Gondosubroto</a></h5>
</div>
</div>
<div id="tt-2-10" class="collapse" aria-labelledby="head-2-10" data-parent="#acc2">
<div class="card-body">
<p>Discover how to foster stronger communities with a Scala-powered sentiment analysis tool. Join this session to learn and build an AI integrated tool that responds dynamically to the pulse of virtual discussions, enhancing empathy and understanding in real-time.</p>
<p class="talk-level">Target: Intermediate (45min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-16">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-16" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="" alt="">
</div>
<span class="time">2:15 PM ET</span>
<h4>Roundtable: Improving Diversity in the Scala Community</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/DIPanelists.html">Members of the Scala Community</a></h5>
</div>
</div>
<div id="tt-2-16" class="collapse" aria-labelledby="head-2-16" data-parent="#acc2">
<div class="card-body">
<p>Like so much of the programming world today, Scala has something of an overabundance of cishet white men. This roundtable will discuss how to expand beyond that stereotype: how we might improve recruitment and retention of under-represented communities within the community, and how we can better support the folks we already have.</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-4">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-4" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/f13af12d1c3ed9cc7d39381305df90c0?s=500" alt="">
</div>
<span class="time">3:15 PM ET</span>
<h4>Diagrams Over Time and the Lessons Within</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/Mark_Canlas.html">Mark Canlas</a></h5>
</div>
</div>
<div id="tt-2-4" class="collapse" aria-labelledby="head-2-4" data-parent="#acc2">
<div class="card-body">
<p>Architecture diagrams often describe too many things at once and also go stale. What if it were possible to generate multiple variants of one diagram and easily evolve them? With the `temporal-diagrams` meta-DSL, you can! This talk will cover the library and lessons learned during its creation.</p>
<p class="talk-level">Target: Intermediate (45min)</p>
</div>
</div>
</div>
<div class="card">
<div id="head-2-6">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-2-6" aria-expanded="false" aria-controls="tt-1">
<div class="images-box">
<img class="img-fluid" src="https://secure.gravatar.com/avatar/dd752f65e8b57bc8df6358b7235446b8?s=500" alt="">
</div>
<span class="time">4:00 PM ET</span>
<h4>Scala on the Ev3 for FIRST Lego League</h4>
<h5 class="name"><a href="https://nescalas.github.io/2023/speakers/David_Walend.html">David Walend</a></h5>
</div>
</div>
<div id="tt-2-6" class="collapse" aria-labelledby="head-2-6" data-parent="#acc2">
<div class="card-body">
<p>The Firefly Coders use Scala to program Lego Ev3 robots for a FLL competitions. We will introduce FLL, show a robot completing some missions, and show two abstractions that work well for 5th graders. We will talk about the good, bad, and ugly of being young programmers using Scala for robotics.</p>
<p class="talk-level">Target: All (15min)</p>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="day-three" role="tabpanel" aria-labelledby="day-three">
<div id="accordion3">
<div class="card">
<div id="head-3-a">
<div class="collapsed card-header" data-toggle="collapse" data-target="#tt-3-a" aria-expanded="false" aria-controls="tt-3-a">
<div class="images-box">
<img class="img-fluid" src="" alt="">
</div>
<span class="time">10:00AM - 1:00PM ET</span>
<h4>The Scala Unconference</h4>
<h5 class="name">Everybody!</h5>
</div>
</div>
<div id="tt-3-a" class="collapse" aria-labelledby="head-3-a" data-parent="#acc3">
<div class="card-body">
<p>A free-form collection of talks, which we'll set up on the spur of the moment!</p>
<p>Everyone meet in the Auditorium at 10am. We'll work together to put together a few hours of talks, meetups and discussions, about whatever Scala or Scala-community topics you're interested in.</p>
<p>Bring your passion projects, your related technical topics, your thoughts on what would make a good roundtable. Everyone is welcome and encouraged to organize a session.</p>
<p>We will run until about 1pm, depending on number of people and ideas.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Schedule Section End -->
<!-- Tickets Start -->
<section id="tickets" class="section-padding tickets">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title">Tickets</h1>
<p>Tickets are now on sale and will be available for purchase until the end of the conference. </p>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div id="tl-widget-wrapper-e8702f48-fe06-47ed-8ea0-940a56827aab">
<!--[if IE 6]><div style="display:none"><![endif]-->
<div style="width: 100%; display: table; height: 200px;">
<div style="display: table-cell; vertical-align: middle; text-align: center;">
<img src="https://widgets.ticketleap.com/v2/loading.gif" />
</div>
</div>
<!--[if IE 6]></div><![endif]-->
</div>
<input type="hidden" id="tl-affiliate-url-e8702f48-fe06-47ed-8ea0-940a56827aab" name="tl-affiliate-url-e8702f48-fe06-47ed-8ea0-940a56827aab" value="https://www.ticketleap.com/solutions/sell-tickets-online?rc=WIDGET-STO">
<input type="hidden" id="tl-show-event-name-e8702f48-fe06-47ed-8ea0-940a56827aab" name="tl-show-event-name-e8702f48-fe06-47ed-8ea0-940a56827aab" value="true">
<input type="hidden" id="tl-show-event-location-e8702f48-fe06-47ed-8ea0-940a56827aab" name="tl-show-event-location-e8702f48-fe06-47ed-8ea0-940a56827aab" value="true">
<input type="hidden" id="tl-show-event-dates-e8702f48-fe06-47ed-8ea0-940a56827aab" name="tl-show-event-dates-e8702f48-fe06-47ed-8ea0-940a56827aab" value="true">
</div>
</div>
</div>
</section>
<!-- Tickets End -->
<!-- Code of Conduct Start -->
<section id="coc" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header">
<h1 class="section-title text-center">Code of Conduct</h1>
<p>The Northeast Scala Symposium is committed to providing an environment that encourages and empowers its
members to teach, learn, and collaborate. We welcome every skill level – from beginners to experts – to participate in and advance the Scala community with us.
</p>
<p>To foster an inclusive, equitable, safe, diverse, and thriving community, should you choose to engage with our community as a participant or speaker, you agree to our Code of Conduct outlined <a href="coc.html" alt="Full Code of Conduct">here</a>.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Code of Conduct End -->
<!-- Footer Section Start -->
<footer class="footer-area section-padding">
<div class="container align-center text-center text-white">
<p>
Made possible by
<a target="_blank" href="https://scala-phase.org">Philadelphia</a>,
<a target="_blank" href="http://www.meetup.com/ny-scala/">New York</a>,
and <a target="_blank" href="http://www.meetup.com/boston-scala/">Boston</a>
Scala Enthusiasts.
</p>
<div>
<a href="2020/">2020</a> | <a href="2019/">2019</a> |<a href="2018/">2018</a> | <a href="2017/">2017</a> | <a href="2016/">2016</a> | <a href="2015/">2015</a> | <a href="2014/">2014</a> | <a href="2013/">2013</a> | <a href="2012/">2012</a> | <a href="2011/">2011</a>
</div>
</div>
</footer>
<!-- Footer Section End -->
<!-- JS Start -->
<script src="assets/js/jquery-min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.countdown.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="https://widgets.ticketleap.com/v2/widget.js" type="text/javascript"></script>
<script type="text/javascript">tl_widget.update_widget("https://nescala.ticketleap.com/widget/v2/", "e8702f48-fe06-47ed-8ea0-940a56827aab", "accent_color=#e91e63");</script>
<!-- JS End -->
</body>
</html>