-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex_en.html
executable file
·859 lines (820 loc) · 38.2 KB
/
index_en.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
---
layout: null
---
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ScalaMatsuri 2016 | The largest international Scala conference in Asia</title>
<meta name="description" content="The largest international Scala conference in Asia">
<meta name="keywords" content="Scala, conference">
<link rel="shortcut icon" href="/img/favicons/favicon.ico" type="image/vnd.microsoft.icon">
<link rel="icon" href="/img/favicons/favicon.ico" type="image/vnd.microsoft.icon">
<link rel="apple-touch-icon" sizes="57x57" href="/img/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/img/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/img/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/img/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/img/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/img/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/img/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/img/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/img/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/img/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/img/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/img/favicons/favicon-48x48.png" sizes="48x48">
<link rel="icon" type="image/png" href="/img/favicons/favicon-96x96.png" sizes="96x96">
<link rel="manifest" href="/img/favicons/manifest.json">
<meta name="msapplication-TileColor" content="#2d88ef">
<meta name="msapplication-TileImage" content="/img/favicons/mstile-144x144.png">
<meta property="og:title" content="ScalaMatsuri 2016 | The largest international Scala conference in Asia" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://scalamatsuri.org/index_en.html" />
<meta property="og:image" content="http://scalamatsuri.org/img/common/img_repre2_en.png" />
<meta property="og:site_name" content="ScalaMatsuri 2016|The largest international Scala conference in Asia" />
<meta property="og:locale" content="en_US" />
<meta property="og:description" content="The largest international Scala conference in Asia" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="">
<meta name="twitter:creator" content="">
<meta name="twitter:url" content="http://scalamatsuri.org/">
<meta name="twitter:title" content="ScalaMatsuri 2016|The largest international Scala conference in Asia">
<meta name="twitter:description" content="The largest international Scala conference in Asia">
<meta name="twitter:image" content="http://scalamatsuri.org/img/common/img_repre2_en.png">
<link href="css/common.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery.js"></script>
<script src="js/respond.src.js"></script>
<script src="js/shuffle.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script type="text/javascript">
if ((navigator.userAgent.indexOf('iPhone') > 0) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
document.write('<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">');
}else{
document.write('<meta name="viewport" content="width=device-width" />');
}
</script>
<!--[if lt IE 9]>
<script src="js/html5shiv-printshiv.js"></script>
<![endif]-->
<script type="text/javascript" src="js/scalamatsuri2016.js?v=v{{ site.time | date_to_xmlschema }}"></script>
<script>
var lang = 'en';
</script>
</head>
<body id="top">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3&appId=563078517069914";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div id="wrapper" class="clearfix">
<header class="mainHeader">
<nav class="gnav pcVer">
<ul class="clearfix">
<li><a href="#top">Top</a></li>
{% for item in site.data.nav_en %}
<li><a href="{{ item.href }}">{{ item.title }}</a></li>
{% endfor %}
<li><a href="/">日本語</a></li>
</ul>
</nav>
<nav class="gnav smVer">
<p class="gnavSmClick"><img src="img/common/icon_menu.png"></p>
<ul class="clearfix smVerGnav">
<li><a href="#top">Top</a></li>
{% for item in site.data.nav_en %}
<li><a href="{{ item.href }}">{{ item.title }}</a></li>
{% endfor %}
</ul>
</nav>
</header>
<section class="mainVis">
<p class="smVer linkLang"><a href="/">» 日本語</a></p>
<ul class="snsBtnArea clearfix">
<li class="btnpocket">
<a data-pocket-label="pocket" data-pocket-count="none" class="pocket-btn" data-lang="en"></a>
<script type="text/javascript">!function(d,i){if(!d.getElementById(i)){var j=d.createElement("script");j.id=i;j.src="https://widgets.getpocket.com/v1/j/btn.js?v=1";var w=d.getElementById(i);d.body.appendChild(j);}}(document,"pocket-btn-js");</script>
</li>
<li class="gplusBtn">
<!-- +1 ボタン を表示したい位置に次のタグを貼り付けてください。 -->
<div class="g-plusone" data-size="medium" data-annotation="none"></div>
<!-- 最後の +1 ボタン タグの後に次のタグを貼り付けてください。 -->
<script type="text/javascript">
window.___gcfg = {lang: 'en-US'};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/platform.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</li>
<li>
<a href="https://twitter.com/share" class="twitter-share-button" data-via="{{ site.en.twitter }}" data-related="{{ site.en.twitter }}" data-hashtags="ScalaMatsuri" data-count="none">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</li>
<li><div class="fb-like" data-href="http://scalamatsuri.org/" data-layout="button" data-action="like" data-show-faces="true" data-share="false"></div></li>
</ul>
<div class="mainVisInner">
<h1><img src="img/common/img_main_txt.png" alt="ScalaMatsuri 2014" /></h1>
<p class="timeData">
30th - 31st January, in Tokyo</p>
<p class="txtData">
The largest international Scala conference in Asia</p>
<div class="logoArea">
<h2 class="clearfix">
<span class="ttlSpAreaTop">Shogun sponsor</span>
<span class="linelSpAreaTop"><img src="img/common/ttl_main_line.png" alt="" /></span>
<span class="linerSpAreaTop"><img src="img/common/ttl_main_line.png" alt="" /></span>
</h2>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.shogun %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</div>
</div>
</section>
<section class="sectionStyle7 smVer topBannerArea">
<div class="sectionStyle7Inner">
<article class="spBox">
<h3 class="ttlspBox1">Shogun sponsor</h3>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.shogun %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</article>
</div>
</section>
<!--
<section class="sectionStyle1" id="intro">
<div class="sectionStyle1Inner">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">開催趣旨</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dots_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dots_right.png"></span>
</h2>
<p class="subTtlSm">Goals</p>
</header>
<div class="txtBlock">
<p>Scala は 2003 年に Martin Odersky 教授(当時)らによって開発されたプログラミング言語です。Twitter や LinkedIn、Foursquare などの著名サービスが Scala を採用しており、海外での採用事例は着々と増えてきています。Scala コミュニティもそれに伴い成長し、世界中の開発者が Scala や周辺ツールの開発に貢献しています。</p>
<p>日本国内でも Twitter が Scala を採用したことをきっかけに注目を集めはじめ、国内の Scala 関連書籍は10冊以上出版されています。 昨年は、日本国内から Scala への貢献が少ないことや、Scala の実用事例が十分にまとまっていないことを考え、「海外コミュニティとの交流促進」「実用言語としての Scala」をテーマに、ScalaMatsuri 2013 を開催しました。</p>
<p>幸いにして、200 名分のチケットが1週間も経たずに売り切れ、カンファレンスも大盛況の内に幕を閉じました。また、このカンファレンスのおかげかどうか、日本国内からの Scala への貢献もだいぶ増えているように思えます。</p>
<p>今年は、Scala を学び始めた原点に立ち返って「Enjoy.scala」をテーマにしたいと思います。名称も ScalaMatsuri に変更してイベントを開催します。実用にとどまらず、実験的な試みや、ただ楽しむだけのための発表も含めて様々な発表が行われることを願っています。</p>
</div>
</div>
</section>
-->
<section class="sectionStyle2" id="info">
<div class="sectionStyle2Inner">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">Event Info</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dots_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dots_right.png"></span>
</h2>
</header>
<div class="contArea">
<!--
<p>Scala に関する海外からのゲストスピーカーも招いた大規模な有料イベントです。 パラレルに 2 セッションで進行する予定です。一般募集のセッションや LT 大会も行う予定です。 懇親会についても行う予定ですが、現在調整中です。</p>
-->
<br/>
<p style="font-weight: bold;font-size: large;">
NEW!! <a href="https://docs.google.com/spreadsheets/d/1Q47RwJS7sKw9FHp1X5PLflwnRPkHQRkpHC-LQec_94Q">2nd day, unconference timetable</a>
</p>
<p>
We announce the news at <a href="https://twitter.com/scala_jp">twitter</a> and <a href="https://www.facebook.com/ScalaMatsuri">facebook</a>.Please follow/like.
</p>
<table>
<tr>
<th>Dates</th>
<td>30th(Sat.) - 31st(Sun.) January in 2016</td>
</tr>
<tr>
<th>Venue</th>
<td>
<a href="http://www.jasso.go.jp/tiec/index_e.html" target="_blank">
Tokyo International Exchange Center
</a>
</td>
</tr>
<!--
<tr>
<th>参加者数</th>
<td>300 名</td>
</tr>
<tr>
<th>参加者費(2日間共通チケット)</th>
<td>一般6000円 学生3000円</td>
</tr>
-->
</table>
</div>
</div>
</section>
<!--
<section class="sectionStyle3" id="gues">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">招待講演者</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dots_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dots_right.png"></span>
</h2>
<p class="subTtlSm">Invited Speakers</p>
</header>
<div class="isList clearfix">
<article>
<figure><img src="img/common/img_person1.png" alt="" /></figure>
<h3>Martin Odersky </h3>
<p>Scala 設計者, Typesafe 創業者</p>
</article>
<article>
<figure><img src="img/common/img_person2.png" alt="" /></figure>
<h3>Martin Odersky </h3>
<p>Scala 設計者, Typesafe 創業者</p>
</article>
<article>
<figure><img src="img/common/img_person3.png" alt="" /></figure>
<h3>Martin Odersky </h3>
<p>Scala 設計者, Typesafe 創業者</p>
</article>
<article>
<figure><img src="img/common/img_person4.png" alt="" /></figure>
<h3>Martin Odersky </h3>
<p>Scala 設計者, Typesafe 創業者</p>
</article>
</div>
</section>
-->
<section class="sectionStyle4" id="schedule">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">Schedule</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dotsw_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dotsw_right.png"></span>
</h2>
</header>
<p class="contTxtArea">
By courtesy of our sponsor Dwango, the sessions in International Conference Hall on January 30th will be broadcasted via Niconico Live. Broadcasting on other rooms are to be determined.
</p>
<div class="progrumTableArea">
<div class="progrumTableOutSide">
<div class="prog1table">
<h3 style="padding: 1em;">Saturday, January 30th</h3>
<p style="padding-top: 0em;">
Day 1 is in conference format (3 parallel sessions). Doors open at 9:00, scheduled to end at 20:00. Lunch and light refreshment will be served at the party.</p>
<nav class="navLinks day1roomswitch" style="display: none;">
<ul class="clearfix">
<li class="btn1space"><span>International Conference Hall</span></li>
<li class="btn2space"><span>Media Hall</span></li>
<li class="btn3space"><span>Conference Room 1</span></li>
</ul>
</nav>
<table class="progrumTable space1area">
<tr>
<th style="width:150px;">Time</th>
<th style="width:350px;" class="roomA">International Conference Hall (400 seats; live interpreters)</td>
<th style="width:350px;" class="roomB">Media Hall (100 seats; live interpreters)</td>
<th style="width:350px;" class="roomC">Conference Room 1</td>
</tr>
<tr>
<th>9:00 - 9:40</th>
<td colspan="3">Registration open</td>
</tr>
<tr>
<th>9:40 - 10:00</th>
<td class="roomA">Opening</td>
<td class="roomB"> </td>
<td class="roomC"> </td>
</tr>
<tr>
<th>10:00 - 10:40</th>
<td class="roomA">
<span class="session_id">A-1</span>
{% include schedule_en.html id="ManabuNakamura_1" %}
<li><a href="http://gakuzzzz.github.io/slides/refactoring_in_scala">slide</a></li>
</td>
<td class="roomB"> </td>
<td class="roomC"> </td>
</tr>
<tr>
<th>10:40 - 11:00</th>
<td colspan="3">Break (Lightning Talk by CyberAgent shogun sponsor 10:40-10:45)</td>
</tr>
<tr>
<th>11:00 - 11:40</th>
<td class="roomA">
<span class="session_id">A-2</span>
{% include schedule_en.html id="YutaOkamoto_1" %}
<li><a href="http://www.slideshare.net/okapies/why-reactive-matters">slide</a></li>
<td class="roomB">
<span class="session_id">B-2</span>
{% include schedule_en.html id="ChrisBirchall_1" %}
<li><a href="http://slides.com/cb372/scalac-scalamatsuri-2016#">slide</a></li>
</td>
<td class="roomC">
<span class="session_id">C-2</span>
{% include schedule_en.html id="TaisukeOe_1" %}
<li><a href="http://www.slideshare.net/oeuia/getting-started-with-deep-learning-using-scala">slide</a></li>
</td>
</tr>
<tr>
<th>11:40 - 12:00</th>
<td colspan="3">Break (Lightning Talk by Septeni Original shogun sponsor 11:40-11:45)</td>
</tr>
<tr>
<th>12:00 - 12:40</th>
<td class="roomA">
<span class="session_id">A-3</span>
{% include schedule_en.html id="ChristopherHunt_1" %}
<li><a href="http://www.slideshare.net/scalaconfjp/reactive-microservices-with-play-and-akka">slide</a></li>
</td>
<td class="roomB">
<span class="session_id">B-3</span>
{% include schedule_en.html id="TomerGabel_1" %}
<li><a href="http://www.slideshare.net/holograph/scala-refactoring-for-fun-and-profit-japanese-subtitles">slide</a></li>
</td>
<td class="roomC">
<span class="session_id">C-3</span>
{% include schedule_en.html id="EugeneYokota_1" %}
<li><a href="http://www.slideshare.net/EugeneYokota/thinking-in-cats">slide</a></li>
</td>
</tr>
<tr>
<th>12:40 - 13:40</th>
<td colspan="3">
Lunch time LT
<ul>
<li><a href="https://github.com/dwango/scala_text">Scala Text @pocketberserker</a></li>
<li><a href="http://xuwei-k.github.io/slides/scala-js-matsuri/#1">Scala.js cross build @xuwei_k</a></li>
<li><a href="http://tayama0324.github.io/slides/20160130-scala-matsuri-lt.html#/">ScalaPB + gRPC @tayama0324</a></li>
<li><a href="http://niconare.nicovideo.jp/watch/kn1051">5分で導入! Failurewallで障害対策 @okumin</a></li>
<li><a href="http://niconare.nicovideo.jp/watch/kn1057">Introduction of realtime processing engine Gearpump @kimutansk</a></li>
<li><a href="http://www.slideshare.net/RyoOhki1/3-scala">Growth obtained in the 3 weeks of Scala development @r_ohki</a></li>
</ul>
</td>
</tr>
<tr>
<th>13:40 - 13:55</th>
<td class="roomA">
<span class="session_id">S-1</span>
{% include schedule_en.html id="KazukiNegoro_1" %}
<li><a href="http://www.slideshare.net/kazukinegoro5/akka-streams-100-scalamatsuri">slide</a></li>
</td>
<td class="roomB">
<span class="session_id">T-1</span>
{% include schedule_en.html id="NaokiAinoya_1" %}
<li><a href="https://speakerdeck.com/ainoya/how-to-play-scala-on-dockerized-infrastructure">slide</a></li>
</td>
<td class="roomC"> </td>
</tr>
<tr>
<th>14:05 - 14:20</th>
<td class="roomA">
<span class="session_id">S-2</span>
{% include schedule_en.html id="JunichiKato_1" %}
<li><a href="https://docs.google.com/presentation/d/1fA5xNLLFHvtvVU6ptdXMHRHSjC7UlSwAMqWO5qANK_4/pub?start=false&loop=false&delayms=3000&slide=id.g1076c6f987_3_0">slide</a></li>
<td class="roomB">
<span class="session_id">T-2</span>
{% include schedule_en.html id="KazuhiroSera_1" %}
<li><a href="http://www.slideshare.net/seratch/contributing-to-scala-oss-from-east-asia-scalamatsuri">slide</a></li>
<td class="roomC"> </td>
</tr>
<tr>
<th>14:30 - 14:45</th>
<td class="roomA">
<span class="session_id">S-3</span>
{% include schedule_en.html id="KoichiSakata_1" %}
<li><a href="http://www.slideshare.net/jyukutyo/how-scala-code-is-expressed-in-the-jvm">slide</a></li>
</td>
<td class="roomB">
<span class="session_id">T-3</span>
{% include schedule_en.html id="ZachMcCoy_1" %}
<li><a href="http://www.slideshare.net/brocksams0n/functional-programming-for-all-scala-matsuri-2016">slide</a></li>
</td>
<td class="roomC"> </td>
</tr>
<tr>
<th>14:45 - 15:00</th>
<td colspan="3">Break (Lightning Talk by ChatWork shogun sponsor 14:45 - 14:50)</td>
</tr>
<tr>
<th>15:00 - 15:40</th>
<td class="roomA">
<span class="session_id">A-4</span>
{% include schedule_en.html id="RaulRaja_1" %}
<li><a href="https://speakerdeck.com/raulraja/functional-programming-patterns-v3">slide</a></li>
</td>
<td class="roomB">
<span class="session_id">B-4</span>
{% include schedule_en.html id="JonasBoner_2" %}
<li><a href="http://www.slideshare.net/jboner/without-resilience-nothing-else-matters-56053062">slide</a></li>
</td>
<td class="roomC">
<span class="session_id">C-4</span>
{% include schedule_en.html id="YuriInoue_1" %}
<li><a href="http://www.slideshare.net/x1ichi/scala-57669846">slide</a></li>
</td>
</tr>
<tr>
<th>15:40 - 16:00</th>
<td colspan="3">Break (Lightning Talk by Maverick shogun sponsor 15:40-15:45)
<a href="http://www.slideshare.net/AoiroAoino/maverick-sponsor-lt">slide</a>
</td>
</tr>
<tr>
<th>16:00 - 16:40</th>
<td class="roomA">
<span class="session_id">A-5</span>
{% include schedule_en.html id="DebasishGhosh_1" %}
<li><a href="http://www.slideshare.net/debasishg/functional-and-algebraic-domain-modeling">slide</a></li>
</td>
<td class="roomB">
<span class="session_id">B-5</span>
{% include schedule_en.html id="KonradMalawski_2" %}
<li><a href="http://www.slideshare.net/ktoso/zen-of-akka">slide</a></li>
</td>
<td class="roomC">
<span class="session_id">C-5</span>
{% include schedule_en.html id="TakahashiToshiyuki_1" %}
<li><a href="https://speakerdeck.com/tototoshi/steps-to-master-the-play-source-code">slide</a></li>
</td>
</tr>
<tr>
<th>16:40 - 17:10</th>
<td colspan="3">Coffee break</td>
</tr>
<tr>
<th>17:10 - 17:50</th>
<td class="roomA">
<span class="session_id">A-6</span>
{% include schedule_en.html id="SeitaroYuuki_1" %}
<li><a href="http://niconare.nicovideo.jp/watch/kn1052">slide</a></li>
</td>
<td class="roomB">
<span class="session_id">B-6</span>
{% include schedule_en.html id="MathiasSulser_1" %}
<li><a href="https://speakerdeck.com/suls/scalamatsuri-2016-scalaz-stream-a-worked-example">slide</a></li>
</td>
<td class="roomC">
<span class="session_id">C-6</span>
{% include schedule_en.html id="YoshitakaFujii_1" %}
<li><a href="http://www.slideshare.net/yoshiyoshifujii/scalamatsuri-2016">slide</a></li>
</td>
</tr>
<tr>
<th>17:50 - 18:05</th>
<td colspan="3">Break</td>
</tr>
<tr>
<th>18:05 - 20:00</th>
<td class="roomA">Day 1 closing + party</td>
<td class="roomB"> </td>
<td class="roomC"> </td>
</tr>
</table>
</div>
<div class="prog2table">
<h3 style="padding: 1em; margin-top: 2em">Sunday, January 31st</h3>
<p style="padding-top: 0em;">
Day 2 is in unconference format. Doors open at 9:00, and scheduled to end at 18:00. Breakfast and lunch will be served.</p>
<nav class="navLinks day2roomswitch" style="display: none;">
<ul class="clearfix">
<li class="btn1space"><span>International Conference Hall</span></li>
<li class="btn2space"><span>Media Hall</span></li>
<li class="btn3space"><span>Conference Room 1</span></li>
<li class="btn4space"><span>Conference Room 2</span></li>
<li class="btn5space"><span>Conference Room 4</span></li>
<li class="btn6space"><span>Conference Room 5</span></li>
</ul>
</nav>
<table class="progrumTable space1area">
<tr>
<th style="width:150px;">Time</th>
<th style="width:200px;" class="roomA">International Conference Hall<br>(400 seats; live interpreters)</td>
<th style="width:200px;" class="roomB">Media Hall<br>(100 seats; live interpreters)</td>
<th style="width:200px;" class="roomC">Conference Room 1</td>
<th style="width:200px;" class="roomD">Conference Room 2</td>
<th style="width:200px;" class="roomE">Conference Room 4</td>
<th style="width:200px;" class="roomF">Conference Room 5</td>
</tr>
<tr>
<th>9:00 - 10:00</th>
<td colspan="6">Breakfast</td>
</tr>
<tr>
<th>10:00 - 11:00</th>
<td class="roomA">Morning assembly</td>
<td class="roomB"> </td>
<td class="roomC"> </td>
<td class="roomD"> </td>
<td class="roomE"> </td>
<td class="roomF"> </td>
</tr>
<tr>
<th>11:00 - 11:50</th>
<td class="roomA">Domain Specific Language</td>
<td class="roomB">Kafka Tuning
<li><a href="http://xuwei-k.github.io/slides/kafka-matsuri/">slide</a></li>
<div>
{% include youtube.html url="https://youtu.be/64HNeksRx5I?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
</div>
</td>
<td class="roomC">
Kotlin Hands on
<div>
{% include youtube.html url="https://youtu.be/VWdvmClLfww" %}
</div>
</td>
<td class="roomD"> </td>
<td class="roomE"> </td>
<td class="roomF"> </td>
</tr>
<tr>
<th>11:50 - 12:10</th>
<td colspan="6">Break</td>
</tr>
<tr>
<th>12:10 - 13:00</th>
<td class="roomA">Scalaz Hands on</td>
<td class="roomB">
<span class="session_id">B-2</span>
{% include schedule_en.html id="CommunitySession" %}
<li><a href="https://speakerdeck.com/eiel/guang-dao-karascala-matsuri">Hiroshima</a></li>
<li><a href="http://www.slideshare.net/noconoasami/scalamatsuri2016scala">Kansai</a></li>
<li><a href="http://www.slideshare.net/hirotakanosato/scalamatsuri2016">MOTEX</a></li>
<div>
{% include youtube.html url="https://youtu.be/f22ZcBBFkN8?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
{% include youtube.html url="https://youtu.be/mlShYnJkLmk?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
{% include youtube.html url="https://youtu.be/V_1aLZ6HVUU?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
{% include youtube.html url="https://youtu.be/kmRn2ClQArg?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
{% include youtube.html url="https://youtu.be/kB2LUKA_O5g?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
{% include youtube.html url="https://youtu.be/DzFuJ7ED6QM?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
{% include youtube.html url="https://youtu.be/Hr2hJDFoioU?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
</div>
</td>
<td class="roomC">
DDD Hands on
<div>
{% include youtube.html url="https://youtu.be/PRmtMEJJBoY?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
</div>
</td>
<td class="roomD">Spark Hands on</td>
<td class="roomE"> </td>
<td class="roomF"> </td>
</tr>
<tr>
<th>13:00 - 14:00</th>
<td colspan="6">Lunch</td>
</tr>
<tr>
<th>14:00 - 14:50</th>
<td class="roomA">Async Testing in ScalaTest 3.0</td>
<td class="roomB">
<span class="session_id">B-3</span>
{% include schedule_en.html id="EduardoGonzalez_1" %}
<li><a href="http://www.slideshare.net/wmeddie/scala-matsuri-2016-japanese-text-mining-with-scala-and-spark">slide</a></li>
</td>
<td class="roomC">
Reactive System Hands on
<div>
{% include youtube.html url="https://youtu.be/0qEwWhcd1jU?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
</div>
</td>
<td class="roomD">SBT People</td>
<td class="roomE"> </td>
<td class="roomF"> </td>
</tr>
<tr>
<th>14:50 - 15:00</th>
<td colspan="6">Break</td>
</tr>
<tr>
<th>15:00 - 15:50</th>
<td class="roomA">Reactive adoption with Typesafe members</td>
<td class="roomB">
<span class="session_id">B-4</span>
{% include schedule_en.html id="AlexanderPodkhalyuzin_1" %}
</td>
<td class="roomC">Review of Scala Matsuri 2016
<li><a href="http://slides.com/lyrical_logical/scalamatsuri2016#/">slide</a></li>
<div>
{% include youtube.html url="https://youtu.be/pk4oAH_4AfM?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
</div>
</td>
<td class="roomD"> </td>
<td class="roomE"> </td>
<td class="roomF"> </td>
</tr>
<tr>
<th>15:50 - 16:00</th>
<td colspan="6">Break</td>
</tr>
<tr>
<th>16:00 - 16:50</th>
<td class="roomA">Akka Performance Tuning</td>
<td class="roomB">
<span class="session_id">B-5</span>
{% include schedule_en.html id="TobiasSchlatter_1" %}
</td>
<td class="roomC">
Machine Learning using Scala
<div>
{% include youtube.html url="https://youtu.be/Dmaszf6ehwQ?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
</div>
</td>
<td class="roomD"> </td>
<td class="roomE">Scala Code Clinic</td>
<td class="roomF">Scala Education in Univ.
<li><a href="http://www.slideshare.net/micchon/scala-and-education-in-univ-57717923">slide</a></li>
</td>
</tr>
<tr>
<th>16:50 - 17:00</th>
<td colspan="6">Break</td>
</tr>
<tr>
<th>17:00 - 17:50</th>
<td class="roomA">Discussion Forum: Scala Education in Companies</td>
<td class="roomB">Freer Monad Extensible Effect in Scala
<li><a href="http://halcat.org/scala/extensible/index.html">article</a></li>
<div>
{% include youtube.html url="https://youtu.be/xXM30PuU_bY?list=PL39pyF64-WFI907MMYY44QW5ON-re-atv" %}
</div>
</td>
<td class="roomC"> </td>
<td class="roomD">Android x Scala
<li><a href="http://www.slideshare.net/yasuyukisugitani/2016-android-slaca-scalamatsuri2016">slide</a></li>
</td>
<td class="roomE">Scala Puzzle</td>
<td class="roomF">Salary & Job Hunting for Scala Programmer</td>
</tr>
</table>
</div>
<p class="pdogTop"><a href="#schedule">> Back to Schedule top</a></p>
</div>
</div>
</section>
<!--
<section class="sectionStyle5">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">Call for Proposal</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dots_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dots_right.png"></span>
</h2>
</header>
<div class="sectionStyle1Inner">
<div class="txtBlock">
<p> </p>
<p>Come share your stories at Scala Matsuri 2016!</p>
<p>
We are looking for topics that you think Scala community would be interested. We have two session length: 40 minutes and 15 minutes. Prepare an abstract of your talk (600 characters or less), and submit your proposal. The sessions will be decided by votes by your fellow Matsuri goers. Travel support is also available for highly voted speakers (up to $2,000).
</p>
<p>Please submit your proposal via <a href="/en/cfp/">Application Form</a>.This CFP will close on October 15th 00:00 JST.</p>
<p><a href="/en/candidates/">See proposal list so far.</a></p>
</div>
</div>
</section>
-->
<section class="sectionStyle5">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">Share ScalaMatsuri</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dots_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dots_right.png"></span>
</h2>
</header>
<br/>
<div>
<ul class="snsBtnArea snsBtnAreaMiddle clearfix">
<li><div class="fb-like" data-href="http://scalamatsuri.org/" data-layout="box_count" data-action="like" data-show-faces="true" data-share="false"></div></li>
<li>
<!-- +1 ボタン を表示したい位置に次のタグを貼り付けてください。 -->
<div class="g-plusone" data-size="tall"></div>
<!-- 最後の +1 ボタン タグの後に次のタグを貼り付けてください。 -->
<script type="text/javascript">
window.___gcfg = {lang: 'en-US'};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/platform.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</li>
<li>
<a href="https://twitter.com/share" class="twitter-share-button" data-via="{{ site.en.twitter }}" data-related="{{ site.en.twitter }}" data-hashtags="ScalaMatsuri" data-lang="en" data-count="vertical">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</li>
<li>
<a data-pocket-label="pocket" data-pocket-count="vertical" class="pocket-btn" data-lang="en"></a>
<script type="text/javascript">!function(d,i){if(!d.getElementById(i)){var j=d.createElement("script");j.id=i;j.src="https://widgets.getpocket.com/v1/j/btn.js?v=1";var w=d.getElementById(i);d.body.appendChild(j);}}(document,"pocket-btn-js");</script>
</li>
</ul>
</div>
<div class="widgets">
<div class="widget">
{% include twitter_widget.html %}
</div>
<div class="widget">
{% include freewind.html rss="http://blog-en.scalamatsuri.org/feed" %}
</div>
</div>
</section>
<section class="sectionStyle6" id="tickets">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">Tickets</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dotsw_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dotsw_right.png"></span>
</h2>
<p class="subTtlSm"></p>
</header>
<div class="inqBox">
<a href="https://scalaconfjp.doorkeeper.jp/events/31702">ScalaMatsuri 2016</a>
</div>
</section>
<section class="sectionStyleCoC">
<div class="sectionStyle1Inner">
<div class="txtBlock">
<p>
Scala Matsuri is dedicated to providing an open conference for all technologists from various regions and communities. We want to make it a fun experience for everyone, regardless of gender, race, and many different backgrounds. All participants, including speakers and sponsors, are asked to be respectful to each other and follow the <a href="/en/code-of-conduct/">Code of conduct</a>.
</p>
<p>
Conference participants violating these rules may be asked to stop the session or leave the conference at the sole discretion of the conference organizers. If you have any questions about the Code of conduct, please ask for <a href="https://docs.google.com/forms/d/1kVRSxCTTwTPh_o2MGi4p-Zy1BoUARAWdwc2nXVkoi-s/viewform">inquiry form</a>.
</p>
</div>
</div>
</section>
<section class="sectionStyle7" id="sp">
<header class="sectionHeadArea">
<h2 class="clearfix">
<span class="ttlSubLCenter">Sponsors</span>
<span class="ttlSubLLeft"><img src="img/common/ttl_dots_left.png"></span>
<span class="ttlSubLRight"><img src="img/common/ttl_dots_right.png"></span>
</h2>
<p class="subTtlSm"> </p>
</header>
<div class="sectionStyle7Inner">
<article class="spBox">
<h3 class="ttlspBox1">Shogun sponsor</h3>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.shogun %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</article>
<article class="spBox">
<h3 class="ttlspBox1 spLv2">Daimyo sponsor</h3>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.daimyo %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</article>
{% if site.data.logos.hatamoto.size > 0 %}
<article class="spBox">
<h3 class="ttlspBox1 spLv3">Hatamoto sponsor</h3>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.hatamoto %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</article>
{% endif %}
<article class="spBox">
<h3 class="ttlspBox1 spLv4">Samurai sponsor</h3>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.samurai %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</article>
<article class="spBox">
<h3 class="ttlspBox1 spLv5">Ninja sponsor</h3>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.ninja %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</article>
<article class="spBox">
<h3 class="ttlspBox1 spLv6">Kawaraban sponsor</h3>
<ul class="clearfix shuffle">
{% for logo in site.data.logos.kawaraban %}
<li><a href="{{ logo.href }}"><img src="{{ logo.img }}" alt="{{ logo.title }}" /></a></li>
{% endfor %}
</ul>
</article> </div>
</section>
{% include footer.html %}
</div>
{% include ga.html %}
<div id="dialog_message"></div>
</body>
</html>