-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2379 lines (2358 loc) · 146 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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="title" content="LambdaCon - funtastic code and people">
<meta name="description" content="The Italian conference on Functional Programming">
<meta name="keywords" content="FP, functional, programming">
<meta name="author" content="Coders TUG">
<meta property="og:site_name" content="LambdaCon - funtastic code and people" />
<meta property="og:title" content="LambdaCon - funtastic code and people" />
<meta property="og:description" content="The Italian conference on Functional Programming" />
<meta property="og:url" content="http://www.lambdacon.org" />
<meta property="og:image" content="http://www.lambdacon.org/assets/images/social/logo-blue.png" >
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="LambdaCon - funtastic code and people">
<meta name="twitter:description" content="The Italian conference on Functional Programming">
<meta name="twitter:url" content="http://www.lambdacon.org">
<meta name="twitter:image:src" content="http://www.lambdacon.org/assets/images/social/logo-blue.png">
<title>LambdaCon - funtastic code and people</title>
<link rel="shortcut icon" href="/assets/images/favicons/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="/assets/images/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/images/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/images/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/images/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/assets/images/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/assets/images/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/images/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/assets/images/favicons/favicon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/assets/images/favicons/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="/assets/images/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/assets/images/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/assets/images/favicons/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#2d89ef">
<meta name="msapplication-TileImage" content="/assets/images/favicons/mstile-144x144.png">
<meta name="msapplication-config" content="/assets/images/favicons/browserconfig.xml">
<link href="http://fonts.googleapis.com/css?family=Ubuntu:700" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Roboto:200,300,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" type="text/css" media="all" />
<link rel="stylesheet" href="assets/css/animate.css" type="text/css" media="all" />
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/font-lineicons.css" type="text/css" media="all" />
<link rel="stylesheet" href="assets/css/jquery.fancybox.css" type="text/css" media="all" />
<link rel="stylesheet" href="assets/css/flexslider.css" id="flexslider" type="text/css" media="all" />
<link rel="stylesheet" href="assets/css/style.css" id="mainstyle" type="text/css" media="all" />
<!--[if lt IE 9]>
<script src="assets/js/html5.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body id="index">
<div id="mask">
<div id="loader"> </div>
</div>
<header id="mobileheader" class="navigation-bar-header light visible-xs"></header>
<section id="hero" class="light">
<div class="overlay"></div>
<div class="container">
<div class="home-bg">
<div class="hero-content text-center">
<nav class="navigation navigation-social">
<ul class="navigation-bar">
<li>
<a href="http://lanyrd.com/2015/lambdacon/"><span class="evtsiteico lanyrd"> </span></a>
</li>
<li>
<a href="http://lambdacon.eventbrite.com/?aff=site"><span class="evtsiteico eventbrite"> </span></a>
</li>
<li>
<a href="http://twitter.com/LambdaCon"><span class="fa fa-twitter"></span></a>
</li>
<li>
<a href="http://www.facebook.com/LambdaCon"><span class="fa fa-facebook"></span></a>
</li>
<li>
<a href="http://github.com/LambdaCon"><span class="fa fa-github"></span></a>
</li>
<li>
<a href="http://joind.in/event/LambdaCon"><span class="evtsiteico joindin"></span></a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCsxUg7vskxLvnsNE2aGr-xw"><span class="fa fa-youtube"></span></a>
</li>
</ul>
</nav>
<div class="hero-small">
<hr /><span>28 March 2015 - Bologna, Italy</span><hr />
</div>
<div class="hero-big">LambdaCon</div>
<div class="hero-large">
<span class="highlight">fun</span>tastic <span class="highlight">code</span> and <span class="highlight">people</span>
</div>
<div class="hero-normal">
<img src="assets/images/logo-white.png" alt="LambdaCon logo" />
</div>
<!--
<a href="http://lambdacon.eventbrite.com/?aff=site" class="btn btn-sm btn-default"><i class="fa fa-ticket"></i> <span>Get tickets</span></a>
<a href="cfp.html" class="btn btn-lg btn-3d"><i class="fa fa-newspaper-o fa-2x"></i> <span>Call for papers</span></a>
-->
</div>
</div>
</div>
</section>
<header id="header" class="navigation-bar-header light hidden-xs">
<div class="container">
<nav class="navigation">
<div class="navigation-txt visible-xs" data-toggle="dropdown">Home</div>
<button class="navigation-toggle visible-xs" type="button" data-toggle="dropdown">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<ul class="navigation-bar navigation-bar-left">
<li class="active"><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a class="speaker-link" href="#speakers" data-speaker-id="#">Speakers</a></li>
<!--
<li><a href="#stat">Facts</a></li>
<li><a href="#price">Prices</a></li>
-->
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#staff">Staff</a></li>
<li><a href="#map">Location</a></li>
<!--
<li class="featured">
<a href="http://lambdacon.eventbrite.com/?aff=site"><i class="fa fa-ticket"></i>Get tickets</a>
</li>
<li class="featured">
<a href="cfp.html"><i class="fa fa-newspaper-o"></i>Call for papers</a>
</li>
-->
</ul>
</nav>
</div>
</header>
<section id="about" class="section dark">
<div class="container">
<br />
<br />
<br />
<h3><div>The Italian conference on</div><div>Functional Programming</div></h3>
<div class="h4 sub-title"></div>
<br />
<br />
<section class="nav-tabs-simple">
<ul class="nav nav-tabs nav-justified">
<li class="active">
<a href="#lcTopics" data-toggle="tab"><i class="icon icon-text-hierarchy-04"></i> Topics</a>
</li>
<li>
<a href="#lcSessionTypes" data-toggle="tab"><i class="icon icon-chat-messages-01"></i> Session types</a>
</li>
<li>
<a href="#lcAboutUs" data-toggle="tab"><i class="icon icon-faces-users-04"></i> About us</a>
</li>
<li>
<a href="#lcCodeOfConduct" data-toggle="tab"><i class="icon icon-badges-votes-01"></i> COC</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="lcTopics">
<article class="row">
<div class="col-md-5 col-sm-5 animated hiding" data-animation="fadeInLeft" data-delay="300">
<img class="img-responsive" src="assets/images/about/fp-languages-cloud.png" alt="FP languages cloud" />
</div>
<div class="col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInRight" data-delay="300">
<h6><span class="highlight">LambdaCon</span> subjects</h6>
<p>
<div>
Sessions will show how to leverage the power of functional programming languages such as Scala, Haskell, Clojure, Erlang, F#...
</div>
<div>
Nonetheless the conference aims to instill the functional mindset in attendees so that they can use it as a tool even when programming with an object oriented language
</div>
</p>
<p>
Attendees will learn basic and advanced concepts and how to use FP in their everyday life
</p>
<ul class="sub-list">
<li>
<div class="row">
<div class="col-xs-2">
<i class="icon icon-education-science-13"></i>
</div>
<div class="col-xs-10">
immutability, higher order functions, currying, continuation-passing, pattern matching, monads
</div>
</div>
</li>
<li>
<div class="row">
<div class="col-xs-2">
<i class="icon icon-education-science-15"></i>
</div>
<div class="col-xs-10">
DSLs, domain modeling, actor model, machine learning
</div>
</div>
</li>
<li>
<div class="row">
<div class="col-xs-2">
<i class="icon icon-education-science-09"></i>
</div>
<div class="col-xs-10">
multithreading, non-blocking IO, message passing, message queues, microservices, HTTP-based APIs, web applications, high availability, continuous delivery
</div>
</div>
</li>
</ul>
</div>
</article>
</div>
<div class="tab-pane fade" id="lcSessionTypes">
<article class="row">
<div class="col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInLeft" data-delay="300">
<h6>Conference structure</h6>
<p>
The program runs across multiple tracks
<br />
Sessions may be given in the form of a talk or a workshop
</p>
<p>
<span class="highlight">TALK</span>
<br />
A presentation conducted in a lecture format and focused on a single topic:
a language, technique or tool as well as an experience report
<br />
Primarly led by the speaker, a talk should also include some discussion
</p>
<p>
<span class="highlight">WORKSHOP</span>
<br />
A hands-on session, focused around a specific language, technique, tool or issue,
in which participants learn linking theory and practice by coding along with the
speaker and experimenting
</p>
</div>
<div class="col-md-5 col-sm-5 animated hiding" data-animation="fadeInRight" data-delay="300">
<img class="img-responsive" src="assets/images/about/conference-room.jpg" alt="Conference room" />
</div>
</article>
</div>
<div class="tab-pane fade" id="lcAboutUs">
<article class="row">
<div class="col-md-5 col-sm-5 animated hiding" data-animation="fadeInLeft" data-delay="300">
<img class="img-responsive" src="assets/images/about/people-network.jpg" alt="People network" />
</div>
<div class="col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInRight" data-delay="300">
<h6>Learn more on <span class="highlight">LambdaCon</span></h6>
<p>A conference for people eager to know more about <span class="highlight">functional programming</span>, combining talks with hands-on sessions to take your skills to the <span class="highlight">next level</span></p>
<p>LambdaCon is focused on learning the functional approach, understanding in which scenarios it is better to use FP, discovering what can be done with current languages and technologies and exploring current best practices</p>
<p>Network with other <span class="highlight">fun</span>atics, learn something new, share your knowledge and experiences and have a lot of <span class="highlight">fun</span></p>
</div>
</article>
</div>
<div class="tab-pane fade" id="lcCodeOfConduct">
<article class="row">
<div class="col-md-5 col-sm-5 animated hiding" data-animation="fadeInLeft" data-delay="300">
<img class="img-responsive" src="assets/images/about/code-of-conduct.jpg" alt="Ethics" />
</div>
<div class="col-md-6 col-sm-6 text-left animated hiding" data-animation="fadeInRight" data-delay="300">
<h6>Our ethics</h6>
<p><span class="highlight">LambdaCon</span> is dedicated to providing a harassment-free conference experience for everyone, regardless of gender, sexual orientation, disability, physical appearance, body size, race, or religion.</p>
<p>We do not tolerate harassment of conference participants in any form.</p>
<p>Sexual language and imagery is not appropriate for any conference venue, including talks. Conference participants violating these rules may be sanctioned or expelled from the conference without a refund at the discretion of the conference organizers.</p>
</div>
</article>
</div>
</div>
</section>
</div>
</section>
<section id="stat" class="section light">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="0">
<div class="stat"><span class="value" data-from="0" data-to="24">24</span>+</div>
<div class="stat-info">hours</div>
<hr />
<!--
<p class="small">It is a long established fact that a reader will be.</p>
-->
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="500">
<div class="stat"><span class="value" data-from="0" data-to="20">20</span>+</div>
<div class="stat-info">speakers</div>
<hr />
<!--
<p class="small">It is a long established fact that a reader will be.</p>
-->
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1000">
<div class="stat"><span class="value" data-from="0" data-to="10">10</span>+</div>
<div class="stat-info">languages</div>
<hr />
<!--
<p class="small">It is a long established fact that a reader will be.</p>
-->
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1500">
<div class="stat"><span class="value" data-from="0" data-to="6">6</span></div>
<div class="stat-info">conference halls</div>
<hr />
<!--
<p class="small">It is a long established fact that a reader will be.</p>
-->
</div>
</div>
</div>
</div>
</section>
<section id="schedule" class="section dark">
<div class="container">
<div class="icon-wrap"><span class="icon icon-active icon-text-hierarchy-07"></span></div>
<h3>Full schedule</h3>
<div class="sub-title">Shortest way to explore what will happen on LambdaCon</div>
<br />
<div class="btn-wrapper">
<a class="btn btn-xs" href="assets/images/schedule.pdf" target="_blank">
<span class="icon icon-filetypes-11"></span>
<span class="btn-txt">Download schedule</span>
</a>
</div>
<br />
<section class="nav-tabs-default">
<ul class="nav nav-tabs">
<li class="active">
<a href="#talks" data-toggle="tab">
<div class="title">Talks</div>
<div class="subtitle"> </div>
</a>
</li>
<li>
<a href="#workshops" data-toggle="tab">
<div class="title">Workshops</div>
<div class="subtitle">Closure hall</div>
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active talks-tab-pane" id="talks">
<div class="tab-content">
<ul class="nav nav-tabs">
<li class="active">
<a href="#talksTrack1" data-toggle="tab">Currying hall</a>
</li>
<li>
<a href="#talksTrack2" data-toggle="tab">Immutability hall</a>
</li>
<li>
<a href="#talksTrack3" data-toggle="tab">Functor hall</a>
</li>
<li>
<a href="#talksTrack4" data-toggle="tab">Applicative hall</a>
</li>
<li>
<a href="#talksTrack5" data-toggle="tab">Monad hall</a>
</li>
</ul>
<div class="tab-pane fade in active" id="talksTrack1" >
<div class="panel-group timeline-schedule">
<div class="panel panel-default" id="welcomeKeynote">
<div class="speaker-wrapper">
<img src="assets/images/staff/vlad-saftoiu.jpg" class="img-responsive img-circle" alt="Vlad Saftoiu" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i>09:30 - 09:45</div>
<a>
Welcome keynote
</a>
</div>
</div>
<div id="welcomeKeynoteDetails">
<div class="panel-body">
<article>
<div class="session-info">
<a href="#staff"><strong><i class="fa fa-user"></i>Vlad Saftoiu</strong></a>
<a href="http://joind.in/13677"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="openingKeynote">
<div class="speaker-wrapper">
<img src="assets/images/speakers/bartosz-milewski.jpg" class="img-responsive img-circle" alt="Bartosz Milewski" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i>09:45 - 10:30</div>
<a class="collapsed" href="#openingKeynoteDetails" data-toggle="collapse">
Opening keynote - Fun with categories
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="openingKeynoteDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
A category is an embarrassingly simple yet powerful concept.
It's behind Unix pipes, simple arithmetic, programming types, functions, state and side effects.
I will show you how categories can be used to design generic C++ libraries.
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#milewski"><strong><i class="fa fa-user"></i>Bartosz Milewski</strong></a>
<div><strong><i class="fa fa-star-o"></i>Beginner</strong></div>
<a href="http://joind.in/13646"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="clojureRedeployed">
<div class="speaker-wrapper">
<img src="assets/images/speakers/jan-stępień.jpg" class="img-responsive img-circle" alt="Jan Stępień" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o"></i>11:00 - 11:45</div>
<a class="collapsed" href="#clojureRedeployedDetails" data-toggle="collapse">
Clojure redeployed
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="clojureRedeployedDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
At stylefruits we've been using Clojure on production since late 2012.
We've made a lot of mistakes and we've learned a lot.
</div>
<div>
This talk is dedicated to the newest addition to our infrastructure:
a Clojure REST-inspired API.
</div>
<div>
Taught by our previous mistakes in the realm of deployment and scalability
we've set our requirements high: we're aiming for continuous delivery, high
availability, dynamic scaling and pauseless deployments under load.
</div>
<div>
Aside from deployment matters, Clojure proves to be an excellent choice to
build a modular and stateless service.
</div>
<div>
In this talk we're going to share our experiences, both good and bad, gained
while prototyping, deploying and maintaining our newest project.
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#stepien"><strong><i class="fa fa-user"></i>Jan Stępień</strong></a>
<div><strong><i class="fa fa-star-o"></i>Beginner</strong></div>
<div><strong><i class="fa fa-code"></i>Clojure</strong></div>
<a href="http://joind.in/13647"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="persistingPersistentDataStructures">
<div class="speaker-wrapper">
<img src="assets/images/speakers/michael-newton.jpg" class="img-responsive img-circle" alt="Michael Newton" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">12:00 - 12:45</i></div>
<a class="collapsed" href="#persistingPersistentDataStructuresDetails" data-toggle="collapse">
Persisting persistent data structures
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="persistingPersistentDataStructuresDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
Reading and writing to data stores is often a pain point for programmers new to functional programming between the perceived loss of “purity”
and the awkward mismatch between functional APIs and the relational data models or mutable documents in a document store.
</div>
<div>
Event sourcing is a well established alternative that meshes well with functional concepts of immutability and pure functions.
</div>
<div>
Using Event Store and F#, we’ll see how to use simple functional constructs like lists and folds to avoid the object-relational impedance mismatch
and we’ll also investigate what makes for a "good" event to store, using techniques from Domain Driven Design.
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#newton"><strong><i class="fa fa-user"></i>Michael Newton</strong></a>
<div><strong><i class="fa fa-star-o"></i>Beginner</strong></div>
<div><strong><i class="fa fa-code"></i>F#</strong></div>
<a href="http://joind.in/13648"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="dissectingTheRabbit">
<div class="speaker-wrapper">
<img src="assets/images/speakers/alvaro-videla.jpg" class="img-responsive img-circle" alt="Alvaro Videla" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">14:00 - 14:45</i></div>
<a class="collapsed" href="#dissectingTheRabbitDetails" data-toggle="collapse">
Dissecting the Rabbit
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="dissectingTheRabbitDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
The talk aims to show how RabbitMQ uses Erlang/OTP to build a message broker.
We will go through "a day in the life of a message" to explore the different patterns used by RabbitMQ to handle message ingress, routing and message delivery.
</div>
<div>
We are going to cover areas like:
</div>
<ul>
<li>how Erlang Pattern Matching is used to implement the AMQP protocol</li>
<li>RabbitMQ Boot System: how does the broker boots until it's ready to accept messages</li>
<li>a day in the life of a message: the path a message takes while passing across RabbitMQ</li>
<li>flow Control for Erlang Processes and the Credit Flow implementation</li>
<li>supervisor Trees, RabbitMQ own behaviours and more</li>
</ul>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#videla"><strong><i class="fa fa-user"></i>Alvaro Videla</strong></a>
<div><strong><i class="fa fa-star-half-o"></i>Intermediate</strong></div>
<div><strong><i class="fa fa-code"></i>Erlang</strong></div>
<a href="http://joind.in/13649"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="theActorModelInFSharpAndAkkaNet">
<div class="speaker-wrapper">
<img src="assets/images/speakers/riccardo-terrell.jpg" class="img-responsive img-circle" alt="Riccardo Terrell" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">15:00 - 15:45</i></div>
<a class="collapsed" href="#theActorModelInFSharpAndAkkaNetDetails" data-toggle="collapse">
The Actor Model in F# and Akka.NET
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="theActorModelInFSharpAndAkkaNetDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
Writing correct concurrent, fault-tolerant, scalable applications is no simple task.
The struggle is generally the result of using the wrong tools or wrong level of abstraction.
</div>
<div>
The Actor based concurrency model aims to simplify this process.
The actor model is a mathematical model of concurrent computation originated in 1973 by Carl Hewitt, Peter Bishop, and Richard Steiger.
Actors raise the abstraction level and provide a better platform to build correct concurrent and scalable applications.
</div>
<div>
This presentation will introduce concepts in architecture such as immutability, isolation and asynchronous processing
utilizing tools such as Akka.NET which is a .NET port of the popular JVM framework Akka.
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#terrell"><strong><i class="fa fa-user"></i>Riccardo Terrell</strong></a>
<div><strong><i class="fa fa-star-half-o"></i>Intermediate</strong></div>
<div><strong><i class="fa fa-code"></i>F#</strong></div>
<a href="http://joind.in/13650"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="drinkingFromTheFirehoseTheErlangWay">
<div class="speaker-wrapper">
<img src="assets/images/speakers/mahesh-paolini-subramanya.jpg" class="img-responsive img-circle" alt="Mahesh Paolini-Subramanya" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">16:15 - 17:00</i></div>
<a class="collapsed" href="#drinkingFromTheFirehoseTheErlangWayDetails" data-toggle="collapse">
Drinking from the firehose the Erlang way
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="drinkingFromTheFirehoseTheErlangWayDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
Imagine that you have tens of millions of endpoints, each of which is sending you a constant stream of data to the tunes of petabytes per second.
You also have millions of uses who want to monitor and administer them and don't forget all the historical reports that these users insist upon all the time.
And imagine that these users and endpoints are distributed all over the world.
</div>
<div>
This pretty much describes our environment, one that we've implemented with not just Riak, but also ElasticSearch and Cassandra
(because why going with one, when you can have all three), with Erlang tying all the moving pieces together.
</div>
<div>
I will show how we successfully drink from this firehose of data without spilling a drop
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#paolini"><strong><i class="fa fa-user"></i>Mahesh Paolini-Subramanya</strong></a>
<div><strong><i class="fa fa-star-half-o"></i>Intermediate</strong></div>
<div><strong><i class="fa fa-code"></i>Erlang</strong></div>
<a href="http://joind.in/13651"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="fSharpInTheRealWorld">
<div class="speaker-wrapper">
<img src="assets/images/speakers/yan-cui.jpg" class="img-responsive img-circle" alt="Yan Cui" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">17:05 - 17:50</i></div>
<a class="collapsed" href="#fSharpInTheRealWorldDetails" data-toggle="collapse">
F# in the real world
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="fSharpInTheRealWorldDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
F# is an incredibly versatile and expressive language and enables
you to solve a wide array of problems succinctly and efficiently.
</div>
<div>
This talk illustrates, with real-world examples, how the Gamesys social
team is using F# to build the backend services that support around 1
million Daily Active Users (DAU) and 250 million daily requests across
its social games on both mobile and web platforms.
</div>
<div>
Talk objectives:
</div>
<ul>
<li>
demonstrate the use of F# to write clean, concise game logic as well as infrastructure
code, the same techniques and concepts can be easily applied to other domains
</li>
<li>
demonstrate how F# can help tackle recurring business problems such as efficiency,
correctness, complexity and time to market
</li>
</ul>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#cui"><strong><i class="fa fa-user"></i>Yan Cui</strong></a>
<div><strong><i class="fa fa-star-o"></i>Beginner</strong></div>
<div><strong><i class="fa fa-code"></i>F#</strong></div>
<a href="http://joind.in/13652"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="closingKeynote">
<div class="speaker-wrapper">
<img src="assets/images/staff/luigi-berrettini.jpg" class="img-responsive img-circle" alt="Luigi Berrettini" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">18:00 - 18:30</i></div>
<a>
Closing keynote
</a>
</div>
</div>
<div id="closingKeynoteDetails">
<div class="panel-body">
<article>
<div class="session-info">
<a href="#staff"><strong><i class="fa fa-user"></i>Luigi Berrettini</strong></a>
<a href="http://joind.in/13676"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="talksTrack2">
<div class="panel-group timeline-schedule">
<div class="panel panel-default" id="fromImperativeToFunctionalApis">
<div class="speaker-wrapper">
<img src="assets/images/speakers/marek-kubica.jpg" class="img-responsive img-circle" alt="Marek Kubica" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">11:00 - 11:45</i></div>
<a class="collapsed" href="#fromImperativeToFunctionalApisDetails" data-toggle="collapse">
From imperative to functional APIs
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="fromImperativeToFunctionalApisDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
Libraries and APIs often shape how our program looks like.
</div>
<div>
Unfortunately we often have to deal with imperfect libraries with brittle API, partly due lack of care, partly due to language restrictions.
</div>
<div>
In this talk we will explore how we can use features of OCaml, a functional programming language to improve on an interface provided by a C library.
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#kubica"><strong><i class="fa fa-user"></i>Marek Kubica</strong></a>
<div><strong><i class="fa fa-star-half-o"></i>Intermediate</strong></div>
<div><strong><i class="fa fa-code"></i>OCaml</strong></div>
<a href="http://joind.in/13653"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="programmingWithAlgebras">
<div class="speaker-wrapper">
<img src="assets/images/speakers/bartosz-milewski.jpg" class="img-responsive img-circle" alt="Bartosz Milewski" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">12:00 - 12:45</i></div>
<a class="collapsed" href="#programmingWithAlgebrasDetails" data-toggle="collapse">
Programming with algebras
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="programmingWithAlgebrasDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
There are problems in programming that require the use of algebra to solve equations or to transform coordinates.
</div>
<div>
That's not what I'm going to talk about.
</div>
<div>
I want to talk about the algebra of data structures, of defining very general expressions and evaluating them using recursion schemes.
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#milewski"><strong><i class="fa fa-user"></i>Bartosz Milewski</strong></a>
<div><strong><i class="fa fa-star"></i>Advanced</strong></div>
<div><strong><i class="fa fa-code"></i>Haskell</strong></div>
<a href="http://joind.in/13654"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="aLiveCodedAdventureHtml5GamesAndFrp">
<div class="speaker-wrapper">
<img src="assets/images/speakers/joe-nash.jpg" class="img-responsive img-circle" alt="Joe Nash" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">14:00 - 14:45</i></div>
<a class="collapsed" href="#aLiveCodedAdventureHtml5GamesAndFrpDetails" data-toggle="collapse">
A live-coded adventure: HTML5 games and FRP
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="aLiveCodedAdventureHtml5GamesAndFrpDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
This talk will leverage Elm and its powerful toolset to demonstrate how to quickly create HTML5 games and websites.
</div>
<div>
No knowledge of Elm or functional reactive programming is assumed: concepts will be explained through live coding and audience interaction
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#nash"><strong><i class="fa fa-user"></i>Joe Nash</strong></a>
<div><strong><i class="fa fa-star-o"></i>Beginner</strong></div>
<div><strong><i class="fa fa-code"></i>Elm</strong></div>
<a href="http://joind.in/13655"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="lessonsFromErlang">
<div class="speaker-wrapper">
<img src="assets/images/speakers/simon-zelazny.jpg" class="img-responsive img-circle" alt="Simon Zelazny" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">15:00 - 15:45</i></div>
<a class="collapsed" href="#lessonsFromErlangDetails" data-toggle="collapse">
Lessons from Erlang
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="lessonsFromErlangDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
In this talk we will learn how to think when using a concurrent programming language and what problems we have to solve.
</div>
<div>
We will take a look at the real tools Erlang gives you to write highly-available systems that let you sleep through the night: dynamic tracing and remote REPL.
</div>
<div>
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#zelazny"><strong><i class="fa fa-user"></i>Simon Zelazny</strong></a>
<div><strong><i class="fa fa-star-half-o"></i>Intermediate</strong></div>
<div><strong><i class="fa fa-code"></i>Erlang</strong></div>
<a href="http://joind.in/13656"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="whatIsWrongWithOop">
<div class="speaker-wrapper">
<img src="assets/images/speakers/roberto-sasso.jpg" class="img-responsive img-circle" alt="Roberto Sasso" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">16:15 - 17:00</i></div>
<a class="collapsed" href="#whatIsWrongWithOopDetails" data-toggle="collapse">
What’s wrong with OOP
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="whatIsWrongWithOopDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
A deep dive tale about programming and logic.
</div>
<div>
With a critical approach we’re going to walk through the path that brought us to what we know as “Object Oriented Programming”.
</div>
<div>
We will examine the bad and good parts of the paradigm to, maybe, discover that the original idea is not so far from what we call “Functional Programming”.
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#sasso"><strong><i class="fa fa-user"></i>Roberto Sasso</strong></a>
<div><strong><i class="fa fa-star-half-o"></i>Intermediate</strong></div>
<div><strong><i class="fa fa-code"></i>Haskell</strong></div>
<div><strong><i class="fa fa-code"></i>C#</strong></div>
<a href="http://joind.in/13657"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
<div class="panel panel-default" id="tddAsInTypeDirectedDevelopment">
<div class="speaker-wrapper">
<img src="assets/images/speakers/clément-delafargue.jpg" class="img-responsive img-circle" alt="Clément Delafargue" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">17:05 - 17:50</i></div>
<a class="collapsed" href="#tddAsInTypeDirectedDevelopmentDetails" data-toggle="collapse">
TDD as in Type-Directed Development
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="tddAsInTypeDirectedDevelopmentDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
Test-Driven Development is widely accepted as good practice, but can we do better?
</div>
<div>
By specifying your program's behaviour with types, you can go a very long way, with more confidence and with less hassle than with tests.
</div>
<div>
This talk will show how to use types not only for safety but also as guides, as well as a perfect means of communication.
</div>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#delafargue"><strong><i class="fa fa-user"></i>Clément Delafargue</strong></a>
<div><strong><i class="fa fa-star-o"></i>Beginner</strong></div>
<div><strong><i class="fa fa-code"></i>Scala</strong></div>
<div><strong><i class="fa fa-code"></i>Haskell</strong></div>
<a href="http://joind.in/13658"><strong><i class="evtsiteico joindin"></i>Leave your feedback</strong></a>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="talksTrack3">
<div class="panel-group timeline-schedule">
<div class="panel panel-default" id="whyBotherWithFp">
<div class="speaker-wrapper">
<img src="assets/images/speakers/tomek-borek.jpg" class="img-responsive img-circle" alt="Tomek Borek" />
</div>
<div class="panel-heading">
<div class="panel-title">
<div class="time"><i class="fa fa-clock-o">11:00 - 11:45</i></div>
<a class="collapsed" href="#whyBotherWithFpDetails" data-toggle="collapse">
Why bother with FP?
<div class="pull-right fa fa-angle-up collapse-angle"></div>
<div class="pull-right fa fa-angle-down collapse-angle"></div>
</a>
</div>
</div>
<div id="whyBotherWithFpDetails" class="panel-collapse collapse">
<div class="panel-body">
<article>
<p class="session-description">
<div>
Instead of just bashing other paradigms I'll provide real arguments for FP, backed.
</div>
<div>
I’ll talk about:
</div>
<ul>
<li>complexity, accidental and essential</li>
<li>state manipulation / mutation</li>
<li>pure OOP model (Smalltalk, though model is quite language agnostic)</li>
</ul>
</p>
<div class="session-info">
<a class="speaker-link" href="#speakers" data-speaker-id="#borek"><strong><i class="fa fa-user"></i>Tomek Borek</strong></a>