-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1282 lines (973 loc) · 62.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
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" class="layout-default">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Home | Ruby Conference Thailand 2019</title>
<meta name="description" content="The first ever Ruby conference in Thailand" />
<meta itemprop="name" content="Home | Ruby Conference Thailand 2019" />
<meta itemprop="description" content="The first ever Ruby conference in Thailand" />
<meta itemprop="image" content="" />
<meta property="og:title" content="Home | Ruby Conference Thailand 2019" />
<meta property="og:description" content="The first ever Ruby conference in Thailand" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://rubyconfth.com/past/2019" />
<meta property="og:image" content="https://rubyconfth.com/past/2019/public/images/social/opengraph.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="https://rubyconfth.com/past/2019" />
<meta name="twitter:title" content="Home | Ruby Conference Thailand 2019" />
<meta name="twitter:description" content="The first ever Ruby conference in Thailand" />
<meta name="twitter:image" content="https://rubyconfth.com/past/2019/public/images/social/twitter.png" />
<meta name="apple-mobile-web-app-title" content="Ruby Conference Thailand 2019"/>
<meta name="mobile-web-app-capable" content="yes"/>
<meta name="apple-touch-fullscreen" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="#f81c49"/>
<meta name="theme-color" content="#f81c49"/>
<meta http-equiv="Page-Enter" content="RevealTrans(Duration=2.0,Transition=2)">
<meta http-equiv="Page-Exit" content="RevealTrans(Duration=3.0,Transition=12)">
<meta http-equiv="cleartype" content="on">
<meta name="msapplication-TileColor" content="#fff" />
<meta name="msapplication-TileImage" content="public/images/favicon/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="public/images/favicon/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="public/images/favicon/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="public/images/favicon/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="public/images/favicon/mstile-310x310.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="public/images/favicon/apple-icon-144x144.png"/>
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="public/images/favicon/apple-icon-152x152.png"/>
<link rel="icon" type="image/png" sizes="192x192" href="public/images/favicon/android-icon-192x192.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="public/images/favicon/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="public/images/favicon/favicon-16x16.png"/>
<link rel="icon" type="image/x-icon" href="public/images/favicon/favicon.ico">
<link rel="manifest" href="public/manifest.json">
<link rel="stylesheet" href="assets/stylesheets/application.css" type="text/css"/>
</head>
<body class="home">
<div hidden>
<svg xmlns="http://www.w3.org/2000/svg"><symbol id="icon-facebook" viewBox="0 0 32 32"><title>icon-facebook</title><path d="M0 16C0 7.163 7.163 0 16 0s16 7.163 16 16-7.163 16-16 16S0 24.837 0 16zm17.668 9.408v-8.705h2.403l.318-3h-2.721l.004-1.501c0-.783.074-1.202 1.198-1.202h1.502V8h-2.403c-2.887 0-3.903 1.455-3.903 3.902v1.801h-1.8v3h1.8v8.705h3.602z" fill="currentColor"/></symbol><symbol id="icon-instagram" viewBox="0 0 33 33"><title>icon-instagram</title><path fill="currentColor" fill-rule="evenodd" d="M16.5 33C7.387 33 0 25.613 0 16.5S7.387 0 16.5 0 33 7.387 33 16.5 25.613 33 16.5 33zm-.003-24.745c-2.24 0-2.52.01-3.4.05-.878.04-1.477.18-2.002.383a4.043 4.043 0 0 0-1.46.951c-.46.459-.741.919-.952 1.461-.204.525-.343 1.124-.383 2.002-.04.88-.05 1.16-.05 3.4s.01 2.521.05 3.401c.04.878.18 1.477.383 2.002.21.542.493 1.002.951 1.46.459.46.919.741 1.461.952.525.204 1.124.343 2.002.383.88.04 1.16.05 3.4.05s2.521-.01 3.4-.05 1.478-.18 2.003-.383a4.043 4.043 0 0 0 1.46-.951c.46-.459.741-.919.952-1.461.204-.525.343-1.124.383-2.002.04-.88.05-1.16.05-3.4s-.01-2.521-.05-3.4-.18-1.478-.383-2.003a4.043 4.043 0 0 0-.951-1.46 4.043 4.043 0 0 0-1.461-.952c-.525-.204-1.124-.343-2.002-.383-.88-.04-1.16-.05-3.4-.05zm0 1.486c2.203 0 2.463.009 3.333.048.804.037 1.24.171 1.531.284.385.15.66.329.949.617.288.289.467.564.617.949.113.29.247.727.284 1.53.04.87.048 1.131.048 3.334 0 2.202-.009 2.463-.048 3.332-.037.804-.171 1.241-.284 1.532-.15.385-.329.66-.617.948a2.555 2.555 0 0 1-.949.617c-.29.113-.727.247-1.53.284-.87.04-1.131.048-3.334.048-2.202 0-2.463-.008-3.332-.048-.804-.037-1.241-.171-1.532-.284a2.555 2.555 0 0 1-.948-.617 2.555 2.555 0 0 1-.617-.948c-.113-.29-.247-.728-.284-1.532-.04-.87-.048-1.13-.048-3.332 0-2.203.008-2.463.048-3.333.037-.804.171-1.24.284-1.531.15-.385.328-.66.617-.949a2.57 2.57 0 0 1 .948-.617c.29-.113.728-.247 1.532-.284.87-.04 1.13-.048 3.332-.048zm-.134 9.663a2.767 2.767 0 1 1 0-5.533 2.767 2.767 0 0 1 0 5.533zm0-7.029a4.262 4.262 0 1 0 0 8.525 4.262 4.262 0 0 0 0-8.525zm5.362-.137a.963.963 0 1 0-1.925 0 .963.963 0 0 0 1.925 0z"/></symbol><symbol id="icon-logo" viewBox="0 0 550 385"><title>icon-logo</title><g fill="none" fill-rule="evenodd"><path fill="#000006" d="M113.674 26.012H90.159c-4.65 0-8.357.943-11.115 2.818-2.758 1.88-4.938 4.485-6.526 7.807-1.6 3.326-2.615 7.008-3.054 11.05-.43 4.05-.652 8.24-.652 12.578v76.304c0 9.83-1.453 18.14-4.351 24.93-2.91 6.796-6.395 12.358-10.458 16.695-4.068 4.333-8.205 7.585-12.412 9.752-4.212 2.167-7.618 3.543-10.237 4.116v.868c2.619.295 6.025 1.38 10.237 3.252 4.207 1.885 8.344 4.924 12.412 9.11 4.063 4.19 7.548 9.825 10.458 16.907 2.898 7.081 4.35 15.973 4.35 26.663v75.874c0 4.333.222 8.519.653 12.57.44 4.046 1.453 7.659 3.054 10.84 1.588 3.18 3.768 5.78 6.526 7.803 2.758 2.02 6.465 3.035 11.115 3.035h23.515V385H83.18c-5.512 0-10.959-1.159-16.327-3.469-5.377-2.318-10.237-5.787-14.592-10.407-4.355-4.628-7.913-10.334-10.671-17.124-2.759-6.795-4.134-14.52-4.134-23.194v-75.874c0-7.807-1.087-14.745-3.267-20.81-2.18-6.07-5.011-11.272-8.496-15.61-3.48-4.333-7.474-7.585-11.977-9.751-4.502-2.171-9.07-3.253-13.717-3.253v-26.012c4.646 0 9.215-1.159 13.717-3.477 4.503-2.306 8.496-5.558 11.977-9.752 3.485-4.186 6.317-9.322 8.496-15.392 2.18-6.07 3.267-12.852 3.267-20.376V54.195c0-8.67 1.445-16.403 4.355-23.198 2.894-6.787 6.53-12.496 10.89-17.124 4.35-4.62 9.214-8.085 14.587-10.403C72.662 1.16 77.96 0 83.18 0h30.493v26.012zM436.328 0h30.488c5.221 0 10.52 1.16 15.897 3.47 5.368 2.317 10.232 5.782 14.587 10.402 4.355 4.628 7.983 10.338 10.893 17.125 2.894 6.799 4.351 14.527 4.351 23.198v76.304c0 7.524 1.092 14.306 3.267 20.376 2.18 6.07 5.008 11.206 8.493 15.392 3.48 4.194 7.474 7.446 11.98 9.756 4.495 2.314 9.067 3.473 13.714 3.473v26.012c-4.647 0-9.22 1.081-13.714 3.252-4.506 2.167-8.5 5.419-11.98 9.752-3.485 4.337-6.313 9.54-8.493 15.609-2.175 6.07-3.267 13.004-3.267 20.81v75.874c0 8.675-1.383 16.4-4.133 23.194-2.766 6.791-6.32 12.496-10.676 17.125-4.355 4.62-9.223 8.089-14.587 10.407-5.377 2.31-10.824 3.469-16.332 3.469h-30.488v-26.016h23.515c4.642 0 8.344-1.016 11.11-3.035 2.755-2.023 4.86-4.624 6.313-7.803 1.45-3.182 2.463-6.794 3.054-10.84.57-4.052.87-8.237.87-12.57v-75.874c0-10.69 1.445-19.582 4.35-26.664 2.899-7.081 6.383-12.717 10.455-16.907 4.06-4.186 8.197-7.225 12.416-9.109 4.203-1.872 7.618-2.957 10.232-3.252v-.864c-2.614-.578-6.029-1.954-10.232-4.12-4.22-2.167-8.357-5.42-12.416-9.752-4.072-4.338-7.556-9.9-10.454-16.695-2.906-6.79-4.35-15.1-4.35-24.93V60.265c0-4.338-.3-8.528-.871-12.574-.591-4.047-1.605-7.729-3.054-11.055-1.453-3.321-3.558-5.922-6.312-7.806-2.767-1.872-6.47-2.818-11.111-2.818h-23.515V0zm-75.28 241.737c-21.248 16.915-46.692 26.213-71.491 26.213-1.326 0-2.643-.094-3.973-.148 10.996 13.254 25.821 24.206 43.179 31.382 28.78 11.898 60.053 11.624 84.7-.537-8.07-23.812-27.147-44.459-52.414-56.91"/><path fill="#000006" d="M370.929 232.977c12.556 6.8 23.593 15.511 32.643 25.554 14.234-8.09 25.953-18.96 34.071-31.537-10.983-11.85-25.76-20.983-42.723-26.373-6.013 11.673-14.079 22.666-23.991 32.356m-110.488 34.974c-24.8 0-50.243-9.301-71.492-26.212-25.263 12.45-44.345 33.101-52.41 56.906 24.648 12.164 55.92 12.435 84.7.54 17.358-7.175 32.183-18.131 43.175-31.381-1.322.053-2.643.147-3.973.147m14.606 6.252c-6.81 8.482-14.977 16.141-24.266 22.682 6.456 11.427 14.768 21.236 24.45 28.728 9.621-7.442 17.875-17.166 24.315-28.49a118.739 118.739 0 0 1-24.5-22.92m-128.62-15.671c9.054-10.043 20.095-18.75 32.646-25.553-9.916-9.69-17.982-20.684-23.995-32.36-16.96 5.393-31.735 14.527-42.723 26.376 8.123 12.578 19.841 23.444 34.071 31.537M375.43 148.507l-93.688 106.796c27.344 2.56 56.658-8.384 79.261-29.788 22.6-21.408 35.06-50.025 33.948-77.442-6.436-.594-12.982-.418-19.52.434"/><path fill="#ED1944" d="M275.231 208.447l27.62-82.398h-55.239z"/><path fill="#ED1944" d="M234.623 126.048h-45.017v-12.287h40.901l-14.14-42.186 11.677-3.895 13.36 39.851 33.829-43.451 33.837 43.464 13.348-39.827 11.677 3.895-14.123 42.149h40.885v12.287h-45.018L276.92 242.142l106.035-120.865-51.741-61.887H219.252l-51.741 61.887 106.031 120.865z"/><path fill="#ED1944" d="M252.152 113.761h46.159l-23.08-29.653z"/><path fill="#000006" d="M175.088 148.567c-6.71-.914-13.43-1.106-20.042-.496-1.112 27.417 11.35 56.038 33.948 77.442 22.604 21.4 51.906 32.353 79.266 29.793.008-.172 0-.348.004-.52l-93.176-106.22z"/></g></symbol><symbol id="icon-twitter" viewBox="0 0 32 32"><title>icon-twitter</title><path d="M0 16C0 7.163 7.163 0 16 0s16 7.163 16 16-7.163 16-16 16S0 24.837 0 16zm15.52-2.995l.034.554-.56-.068c-2.036-.26-3.816-1.141-5.326-2.621l-.74-.735-.19.542c-.402 1.21-.145 2.486.695 3.345.447.474.346.542-.426.26-.268-.09-.503-.158-.526-.125-.078.08.19 1.108.403 1.514.291.565.884 1.12 1.533 1.447l.549.26-.65.01c-.626 0-.648.012-.581.25.224.734 1.108 1.513 2.093 1.852l.693.238-.604.361a6.301 6.301 0 0 1-3 .836c-.503.012-.917.057-.917.09 0 .114 1.365.746 2.16.995 2.384.734 5.215.418 7.342-.836 1.51-.893 3.021-2.667 3.727-4.384.38-.915.76-2.587.76-3.39 0-.52.034-.587.66-1.209.37-.361.717-.757.784-.87.112-.214.101-.214-.47-.022-.951.339-1.085.294-.615-.215.347-.361.76-1.017.76-1.209 0-.034-.167.023-.357.125-.202.113-.65.282-.985.384l-.605.192-.548-.373c-.302-.203-.727-.43-.951-.497-.571-.158-1.444-.136-1.959.045-1.399.508-2.283 1.82-2.182 3.254z" fill="currentColor"/></symbol></svg>
</div>
<header id="archive" style="background-color:#f81c49; color:white; text-align:center; padding:4px;">
This is an archived site from our 2019 event. For the latest news, visit <a style="color:white; text-decoration:underline;" href="/">rubyconfth.com</a>
</header>
<header id="home" class="app-header">
<div class="container">
<div class="app-header__event">
<div class="app-header__logo logo logo--text-icon">
<span class="sr-only">RubyConf TH {💎}</span>
</div>
<div class="app-header__logistic">
<div class="app-header__date">
September <strong>6-7, 2019</strong>
</div>
<div class="app-header__venue">
<a href="#venue">Venue: <strong>Pullman Bangkok King Power</strong></a>
</div>
</div>
</div>
<nav class="app-navigation app-header__navigation">
<button type="button" class="app-navigation__btn-toggle-menu btn btn--link" data-target="app-navigation__pane">
<i class="icon-hamburger"></i>
<span class="sr-only">Toggle Menu</span>
</button>
<div class="app-navigation__pane">
<div class="app-navigation__event">
<a href="#home" class="app-navigation__logo app-navigation__link">
<div class="logo logo--icon"><span class="sr-only">{💎}</span></div>
<div class="logo logo--text"><span class="sr-only">RubyConf TH</span></div>
</a>
</div>
<ul class="app-navigation__menu list--unstyled">
<li class="app-navigation__menu-item">
<a href="#about" class="app-navigation__menu-link app-navigation__link">About</a>
</li>
<li class="app-navigation__menu-item">
<a href="#speakers" class="app-navigation__menu-link app-navigation__link">Speakers</a>
</li>
<li class="app-navigation__menu-item">
<a href="#schedule" class="app-navigation__menu-link app-navigation__link">Schedule</a>
</li>
<li class="app-navigation__menu-item">
<a href="#venue" class="app-navigation__menu-link app-navigation__link">Venue</a>
</li>
<li class="app-navigation__menu-item">
<a href="#sponsors" class="app-navigation__menu-link app-navigation__link">Sponsors</a>
</li>
</ul>
<hr/>
<ul class="list-social-platform list--unstyled">
<li class="list-social-platform__item">
<a href="https://www.facebook.com/rubyconfth" target="_blank" class="list-social-platform__link">
<svg class="icon list-social-platform__icon list-social-platform__icon--facebook icon--xs" viewBox="0 0 32 32">
<use xlink:href="#icon-facebook"></use>
</svg>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-social-platform__item">
<a href="https://twitter.com/rubyconfth" target="_blank" class="list-social-platform__link">
<svg class="icon list-social-platform__icon list-social-platform__icon--twitter icon--xs" viewBox="0 0 32 32">
<use xlink:href="#icon-twitter"></use>
</svg>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="list-social-platform__item">
<a href="https://www.instagram.com/rubyconfth" target="_blank" class="list-social-platform__link">
<svg class="icon list-social-platform__icon list-social-platform__icon--instagram icon--xs" viewBox="0 0 32 32">
<use xlink:href="#icon-instagram"></use>
</svg>
<span class="sr-only">Instagram</span>
</a>
</li>
</ul>
</div>
</nav>
<div class="app-header__social">
<ul class="list-social-platform list--unstyled">
<li class="list-social-platform__item">
<a href="https://www.facebook.com/rubyconfth" target="_blank" class="list-social-platform__link">
<svg class="icon list-social-platform__icon list-social-platform__icon--facebook icon--xs" viewBox="0 0 32 32">
<use xlink:href="#icon-facebook"></use>
</svg>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-social-platform__item">
<a href="https://twitter.com/rubyconfth" target="_blank" class="list-social-platform__link">
<svg class="icon list-social-platform__icon list-social-platform__icon--twitter icon--xs" viewBox="0 0 32 32">
<use xlink:href="#icon-twitter"></use>
</svg>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="list-social-platform__item">
<a href="https://www.instagram.com/rubyconfth" target="_blank" class="list-social-platform__link">
<svg class="icon list-social-platform__icon list-social-platform__icon--instagram icon--xs" viewBox="0 0 32 32">
<use xlink:href="#icon-instagram"></use>
</svg>
<span class="sr-only">Instagram</span>
</a>
</li>
</ul>
</div>
</div>
</header>
<main class="app-content">
<div class="container">
<section id="about" class="home-hero">
<div class="home-hero__content">
<h1 class="home-hero__heading display-heading">Thank you for attending the <strong>first</strong> Ruby Conference in Bangkok</h1>
</div>
</section>
<section id="speakers" class="home-speaker">
<h2>Speakers</h2>
<ul class="list-speaker list-speaker--keynote list--unstyled">
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/tim-riley.jpg" alt="Photo of Tim Riley" class="list-speaker__photo" />
<span class="list-speaker__tag">Keynote</span>
<figcaption class="list-speaker__name text-branded">
<span>Tim</span> Riley
</figcaption>
<a href="https://twitter.com/@timriley" class="list-speaker__link link link--secondary">@timriley</a>
<p class="list-speaker__bio">
Tim is a partner at <a href="https://www.icelab.com.au/" target="_blank">Icelab</a>, an Australian design agency, and a committed open source software contributor. He’s a co-founder and core team member of <a href="https://dry-rb.org/" target="_blank">dry-rb</a>, core team member of <a href="https://rom-rb.org/" target="_blank">rom-rb</a>, and part of the team building <a href="https://hanamirb.org/" target="_blank">Hanami</a> 2.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/richard-schneeman.jpg" alt="Photo of Richard Schneeman" class="list-speaker__photo" />
<span class="list-speaker__tag">Keynote</span>
<figcaption class="list-speaker__name text-branded">
<span>Richard</span> Schneeman
</figcaption>
<a href="https://twitter.com/@schneems" class="list-speaker__link link link--secondary">@schneems</a>
<p class="list-speaker__bio">
Richard codes for Heroku & is married to Ruby, literally. He built <a href="https://www.codetriage.com/" target="_blank">CodeTriage.com</a>, the easiest way to get started contributing to Open Source. He also runs a quirky conf in Austin, Texas <a href="https://twitter.com/keeprubyweird" target="_blank">@keeprubyweird</a>.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/saron-yitbarek.jpg" alt="Photo of Saron Yitbarek" class="list-speaker__photo" />
<span class="list-speaker__tag">Keynote</span>
<figcaption class="list-speaker__name text-branded">
<span>Saron</span> Yitbarek
</figcaption>
<a href="https://twitter.com/@saronyitbarek" class="list-speaker__link link link--secondary">@saronyitbarek</a>
<p class="list-speaker__bio">
Saron is the CEO and founder of <a href="https://twitter.com/CodeNewbies" target="_blank">CodeNewbie</a>, the most supportive community of programmers and people learning to code. She's also a developer, speaker, and podcaster.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/charles-nutter.jpg" alt="Photo of Charles Nutter" class="list-speaker__photo" />
<span class="list-speaker__tag">Keynote</span>
<figcaption class="list-speaker__name text-branded">
<span>Charles</span> Nutter
</figcaption>
<a href="https://twitter.com/@headius" class="list-speaker__link link link--secondary">@headius</a>
<p class="list-speaker__bio">
Charles is one of the JRuby guys. He is a Ruby Hero and Java Champion too! He works every day to make JRuby the best JVM-based Ruby possible while pushing JVM folks and other language authors to keep improving the platform.
</p>
</figure>
</li>
</ul>
<ul class="list-speaker list--unstyled">
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/radoslav-stankov.jpg" alt="Photo of Radoslav Stankov" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Radoslav</span> Stankov
</figcaption>
<a href="https://twitter.com/@rstankov" class="list-speaker__link link link--secondary">@rstankov</a>
<p class="list-speaker__bio">
Radoslav is currently the Head of Engineering at <a href="https://www.producthunt.com/" target="_blank">Product Hunt</a> (by <a href="https://angel.co/" target="_blank">AngelList</a>). Lately, juggling between Ruby and JavaScript projects. Organizer of <a href="http://react-not-a-conf.com/" target="_blank">React.NotAConf</a> conference and <a href="https://www.meetup.com/React-Sofia/" target="_blank">React.Sofia</a> meetup.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/piotr-murach.jpg" alt="Photo of Piotr Murach" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Piotr</span> Murach
</figcaption>
<a href="https://twitter.com/@piotr_murach" class="list-speaker__link link link--secondary">@piotr_murach</a>
<p class="list-speaker__bio">
Piotr is a Software Engineer with an interest in tooling, automation, and testing. A creator of over 50 Ruby gems including the <a href="https://ttytoolkit.org/" target="_blank">TTY toolkit</a> for building sleek command line apps. He writes about software, technology and more on <a href="https://piotrmurach.com" target="_blank">piotrmurach.com</a>.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/giovanni-sakti.jpg" alt="Photo of Giovanni Sakti" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Giovanni</span> Sakti
</figcaption>
<a href="https://twitter.com/@giosakti" class="list-speaker__link link link--secondary">@giosakti</a>
<p class="list-speaker__bio">
Gio comes from Jakarta where he works for <a href="https://www.go-jek.com/" target="_blank">Go-Jek</a> as a Systems Engineer. He organizes various meetups, including <a href="https://ruby.id/">ruby.id</a> and <a href="https://www.jakartajs.org/" target="_blank">jakartajs.org</a>. His interests include programming languages and developer automation.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/vishal-chandnani.jpg" alt="Photo of Vishal Chandnani" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Vishal</span> Chandnani
</figcaption>
<a href="https://twitter.com/" class="list-speaker__link link link--secondary"></a>
<p class="list-speaker__bio">
Vishal is the Head of Engineering (Astral) at IEX in New York City. Prior to IEX, he worked as a Senior Software Consultant at Def Method. At The Boeing Company, he developed software for the US Government Intelligence Community.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/tae-wongsrinoppakun.jpg" alt="Photo of Tae Noppakun Wongsrinoppakun" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Tae Noppakun</span> Wongsrinoppakun
</figcaption>
<a href="https://twitter.com/@tae8838" class="list-speaker__link link link--secondary">@tae8838</a>
<p class="list-speaker__bio">
Tae is originally from Bangkok, but lives in Tokyo. Currently, he is a Software Engineer at <a href="https://wovn.io/" target="_blank">Wovn Technologies</a> building a platform to localize the internet. If he is not in front of his laptop or Nintendo Switch, he is probably on a mountain somewhere.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/kazuma-furuhashi.jpg" alt="Photo of Kazuma Furuhashi" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Kazuma</span> Furuhashi
</figcaption>
<a href="https://twitter.com/@284km" class="list-speaker__link link link--secondary">@284km</a>
<p class="list-speaker__bio">
Kazuma is a Programmer and the Creator of a visualization library named <a href="https://github.com/red-data-tools/charty" target="_blank">Charty</a>. A member of <a href="https://asakusarb.esa.io/" target="_blank">Asakusa.rb</a> and <a href="https://red-data-tools.github.io/" target="_blank">Red Data Tools</a>. Working at <a href="https://speee.jp/" target="_blank">Speee Inc</a>.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/gabriel-fortuna.jpg" alt="Photo of Gabriel Fortuna" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Gabriel</span> Fortuna
</figcaption>
<a href="https://twitter.com/@gee_forr" class="list-speaker__link link link--secondary">@gee_forr</a>
<p class="list-speaker__bio">
Gabriel is the Founder of <a href="https://www.zero-one.io/" target="_blank">Zero One Bespoke Software Development</a>, a South African Ruby consultancy that specialises in software for the Telecom industry. In his day job, he tells computers what to do. Sometimes they listen.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/rodrigo-urubatan.jpg" alt="Photo of Rodrigo Urubatan" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Rodrigo</span> Urubatan
</figcaption>
<a href="https://twitter.com/@urubatan" class="list-speaker__link link link--secondary">@urubatan</a>
<p class="list-speaker__bio">
Rodrigo is a experienced polyglot Software Developer since 1997. He currently works for <a href="https://www.brightwire.com/" target="_blank">Brightwire</a> and has the goal to help Ruby developers to use the best tools for each job, so they can solve hard problems, with less bugs and have more free time.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/sergey-dolganov.jpg" alt="Photo of Sergey Dolganov" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Sergey</span> Dolganov
</figcaption>
<a href="https://twitter.com/@ss_dolganov" class="list-speaker__link link link--secondary">@ss_dolganov</a>
<p class="list-speaker__bio">
Sergey is an experienced Software Developer interested in building a strong and sustainable community around OSS and likes to discuss different ways to profile, debug and optimize applications. He also loves dogs and is a drummer and musician.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/jaroslava-kosanova.jpg" alt="Photo of Jaroslava Košanová" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Jaroslava</span> Košanová
</figcaption>
<a href="https://twitter.com/@jajina_k" class="list-speaker__link link link--secondary">@jajina_k</a>
<p class="list-speaker__bio">
Jarka is Ruby Backend Engineer working on <a href="https://about.gitlab.com/" target="_blank">GitLab</a>, a single application with features for the entire DevOps lifecycle. She really enjoys working for the remote-only company because she has an active lifestyle and takes care of her 1.5 year old daughter.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/harley-davidson-karel.jpg" alt="Photo of Harley Davidson Karel" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Harley Davidson</span> Karel
</figcaption>
<a href="https://twitter.com/@harleydavidkar1" class="list-speaker__link link link--secondary">@harleydavidkar1</a>
<p class="list-speaker__bio">
Harley is an Application Security Consultant for <a href="https://www.vantagepoint.sg/" target="_blank">Vantage Point Security</a>. Certified Ethical Hacker, speaker for several conferences in Jakarta, Kuala Lumpur, Singapore, Tokyo and Bangkok with topics related to application security.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/shweta-kale.jpg" alt="Photo of Shweta Kale" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Shweta</span> Kale
</figcaption>
<a href="https://twitter.com/@shwetakale13" class="list-speaker__link link link--secondary">@shwetakale13</a>
<p class="list-speaker__bio">
Shweta is an avid Rubyist and Gopher working with <a href="https://www.joshsoftware.com/" target="_blank">Josh Software</a> from past 5 years. She co-organises <a href="https://www.rubyconfindia.org/" target="_blank">RubyConf India</a>, <a href="https://www.deccanrubyconf.org/" target="_blank">Deccan RubyConf</a>, RailsGirls Pune and GoLang Girls Pune.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/phil-nash.jpg" alt="Photo of Phil Nash" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Phil</span> Nash
</figcaption>
<a href="https://twitter.com/@philnash" class="list-speaker__link link link--secondary">@philnash</a>
<p class="list-speaker__bio">
<a href="https://philna.sh">Phil</a> is a Developer Evangelist for <a href="https://twilio.com/" target="_blank">Twilio</a> and a Google Developer Expert. 10 years of experience building with JavaScript, Ruby and Swift. Sometimes he makes his own beer, but he is more likely to be found discovering new ones around the world.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/vipul-am.jpg" alt="Photo of Vipul Am" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Vipul</span> Am
</figcaption>
<a href="https://twitter.com/@vipulnsward" class="list-speaker__link link link--secondary">@vipulnsward</a>
<p class="list-speaker__bio">
Vipul is the Founder of <a href="https://www.saeloun.com/" target="_blank">Saeloun Inc</a>, a Ruby on Rails Consultancy. Part of the Rails team. Author of ReactJS by Example. He helps run the Pune Ruby and ReactJS Pune communities. He also organizes <a href="https://www.deccanrubyconf.org/" target="_blank">Deccan RubyConf</a> in Pune.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/melvrick-chun.jpg" alt="Photo of Melvrick Goh" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Melvrick</span> Goh
</figcaption>
<a href="https://twitter.com/" class="list-speaker__link link link--secondary"></a>
<p class="list-speaker__bio">
Melvrick is a Senior Engineer at <a href="https://www.ascendaloyalty.com/" target="_blank">Ascenda Loyalty</a> and currently leads TransferConnect. He likes coding an Ruby makes it even more joyful. Outside of work, he likes reading, an occasional jog and writing in the 3rd person for conference intros.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/enrique-mogollan.jpg" alt="Photo of Enrique Mogollan" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Enrique</span> Mogollan
</figcaption>
<a href="https://twitter.com/@mogox" class="list-speaker__link link link--secondary">@mogox</a>
<p class="list-speaker__bio">
Enrique has been writing code passionately for more than 12 years. He is a big fan of pair programming and believes that collaborative environments are the key to promote quality code and improve software design.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/anton-davydov.jpg" alt="Photo of Anton Davydov" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Anton</span> Davydov
</figcaption>
<a href="https://twitter.com/@anton_davydov" class="list-speaker__link link link--secondary">@anton_davydov</a>
<p class="list-speaker__bio">
Anton is a <a href="https://hanamirb.org/" target="_blank">Hanami</a> and <a href="https://dry-rb.org/" target="_blank">dry-rb</a> Core Developer and an indie developer from Moscow. He works on different open source projects and builds space-rocket ships at night.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/elle-meredith.jpg" alt="Photo of Elle Meredith" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Elle</span> Meredith
</figcaption>
<a href="https://twitter.com/@aemeredith" class="list-speaker__link link link--secondary">@aemeredith</a>
<p class="list-speaker__bio">
Elle is a Web Developer with over ten years experience writing Ruby and Rails. Currently at <a href="https://blackmill.co/" target="_blank">Blackmill</a>, previously Development Director at <a href="https://thoughtbot.com/" target="_blank">Thoughtbot</a> New York. When not immersed in the Ruby community, she is likely immersed in water, or lately, in bread flour.
</p>
</figure>
</li>
<li class="list-speaker__item">
<figure class="list-speaker__profile">
<img src="assets/images/pages/home/speakers/janko-marohnic.jpg" alt="Photo of Janko Marohnić" class="list-speaker__photo" />
<figcaption class="list-speaker__name text-branded">
<span>Janko</span> Marohnić
</figcaption>
<a href="https://twitter.com/@jankomarohnic" class="list-speaker__link link link--secondary">@jankomarohnic</a>
<p class="list-speaker__bio">
Janko is a Ruby off Rails evangelist and a frequent open source contributor. He firmly believes the future of the Ruby ecosystem lies outside of Rails, and frequently blogs about it. He is the Creator of <a href="https://github.com/shrinerb/shrine" target="_blank">Shrine</a>, a modern file attachment library for Ruby.
</p>
</figure>
</li>
</ul>
</section>
<section id="schedule" class="home-schedule">
<h2>Schedule</h2>
<div class="schedule">
<div class="schedule__item">
<time datetime="2019-09-06" class="schedule__date">
<span class="schedule__month">Sep</span>
<span class="schedule__day-of-month">6</span>
</time>
<div class="schedule__day">
<h3 class="schedule__title">Friday</h3>
<ul class="schedule__list-event">
<li class="schedule__event">
<time class="schedule__time-slot">8:00 - 9:00</time>
<div class="schedule__event-title">Registration & Conference Door Opens</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">9:00 - 9:10</time>
<div class="schedule__event-title">Welcome Address</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">9:10 - 9:50</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/tim-riley.jpg" alt="Photo of Tim Riley" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Opening Keynote</div>
<small class="schedule__speaker-name">Tim Riley</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">9:50 - 10:20</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/vipul-am.jpg" alt="Photo of Vipul Am" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Beyond REST in Rails</div>
<small class="schedule__speaker-name">Vipul Am</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">10:20 - 10:40</time>
<div class="schedule__event-title">Tea Break</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">10:40 - 11:00</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/tae-wongsrinoppakun.jpg" alt="Photo of Tae Noppakun Wongsrinoppakun" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Pattern Matching In Ruby 2.7</div>
<small class="schedule__speaker-name">Tae Noppakun Wongsrinoppakun</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">11:00 - 11:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/kazuma-furuhashi.jpg" alt="Photo of Kazuma Furuhashi" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Charty - Visualize Real-world Data with Ruby</div>
<small class="schedule__speaker-name">Kazuma Furuhashi</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">11:30 - 12:00</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/jaroslava-kosanova.jpg" alt="Photo of Jarka Košanová" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">How to collaborate and keep healthy culture in a full-remote company</div>
<small class="schedule__speaker-name">Jarka Košanová</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">12:00 - 12:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/rodrigo-urubatan.jpg" alt="Photo of Rodrigo Urubatan" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Data Science in Ruby? Is it possible? Is it Fast? Should we use it?</div>
<small class="schedule__speaker-name">Rodrigo Urubatan</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">12:30 - 13:30</time>
<div class="schedule__event-title">Buffet Lunch</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">13:30 - 14:00</time>
<div class="schedule__event-title">Sponsor Lightning Talk - Official Partner</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">14:00 - 14:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/piotr-murach.jpg" alt="Photo of Piotr Murach" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">It is correct but is it fast?</div>
<small class="schedule__speaker-name">Piotr Murach</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">14:30 - 15:00</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/enrique-mogollan.jpg" alt="Photo of Enrique Mogollan" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">The developer who wanted to refactor the moon</div>
<small class="schedule__speaker-name">Enrique Mogollan</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">15:00 - 15:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/radoslav-stankov.jpg" alt="Photo of Radoslav Stankov" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">How to get to zero unhandled exceptions in production</div>
<small class="schedule__speaker-name">Radoslav Stankov</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">15:30 - 15:50</time>
<div class="schedule__event-title">Tea break</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">15:50 - 16:20</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/giovanni-sakti.jpg" alt="Photo of Giovanni Sakti" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Practical Guide to Discourage your Boss from Migrating into Kubernetes</div>
<small class="schedule__speaker-name">Giovanni Sakti</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">16:20 - 16:50</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/gabriel-fortuna.jpg" alt="Photo of Gabriel Fortuna" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">How we use service objects to make our apps clean, composable, maintainable, and testable.</div>
<small class="schedule__speaker-name">Gabriel Fortuna</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">16:50 - 17:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/charles-nutter.jpg" alt="Photo of Charles Nutter" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Closing Keynote: Scalable Applications with JRuby</div>
<small class="schedule__speaker-name">Charles Nutter</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">17:30 - 17:40</time>
<div class="schedule__event-title">Closing Remarks/Announcements</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">18:30 - 23:00</time>
<div class="schedule__event-title">Official Party</div>
<div class="schedule__event-extra">Hosted at Bangkok Heritage, <a target="_blank" href="https://bit.ly/2yGCBLY">a short walk away</a></div>
</li>
</ul>
</div>
</div>
<div class="schedule__item">
<time datetime="2019-09-07" class="schedule__date">
<span class="schedule__month">Sep</span>
<span class="schedule__day-of-month">7</span>
</time>
<div class="schedule__day">
<h3 class="schedule__title">Saturday</h3>
<ul class="schedule__list-event">
<li class="schedule__event">
<time class="schedule__time-slot">8:00 - 9:00</time>
<div class="schedule__event-title">Registration & Conference Door Opens</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">9:00 - 9:10</time>
<div class="schedule__event-title">Welcome Address</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">9:10 - 9:50</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/richard-schneeman.jpg" alt="Photo of Richard Schneeman" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Opening keynote: The Life-Changing Magic of Tidying Up ActiveRecord Allocations
</div>
<small class="schedule__speaker-name">Richard Schneeman</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">9:50 - 10:20</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/anton-davydov.jpg" alt="Photo of Anton Davydov" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Events. Events. Events!</div>
<small class="schedule__speaker-name">Anton Davydov</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">10:20 - 10:40</time>
<div class="schedule__event-title">Tea Break</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">10:40 - 11:10</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/vishal-chandnani.jpg" alt="Photo of Vishal Chandnani" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Debug Hard: Ruby String Library Methods and Underlying C Implementations
</div>
<small class="schedule__speaker-name">Vishal Chandnani</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">11:10 - 11:40</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/harley-davidson-karel.jpg" alt="Photo of Harley Davidson Karel" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Security Issues on Your Ruby Code</div>
<small class="schedule__speaker-name">Harley Davidson Karel</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">11:40 - 12:00</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/melvrick-chun.jpg" alt="Photo of Melvrick Goh" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Metaprogramming DSLs for managing complexity at scale</div>
<small class="schedule__speaker-name">Melvrick Goh</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">12:00 - 12:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/shweta-kale.jpg" alt="Photo of Shweta Kale" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Go-ing a long way with Rails</div>
<small class="schedule__speaker-name">Shweta Kale</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">12:30 - 13:30</time>
<div class="schedule__event-title">Buffet Lunch</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">13:30 - 14:00</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/janko-marohnic.jpg" alt="Photo of Janko Marohnić" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Handling file uploads for a modern developer</div>
<small class="schedule__speaker-name">Janko Marohnić</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">14:00 - 14:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/elle-meredith.jpg" alt="Photo of Elle Meredith" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Start your own engineering apprenticeship program</div>
<small class="schedule__speaker-name">Elle Meredith</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">14:30 - 15:00</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/phil-nash.jpg" alt="Photo of Phil Nash" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Smaller is always better</div>
<small class="schedule__speaker-name">Phil Nash</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">15:00 - 15:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/sergey-dolganov.jpg" alt="Photo of Sergey Dolganov" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Dirty Magic for Resilient API Dependencies</div>
<small class="schedule__speaker-name">Sergey Dolganov</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">15:30 - 15:50</time>
<div class="schedule__event-title">Tea Break</div>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">15:50 - 16:30</time>
<figure class="schedule__event-details">
<img src="assets/images/pages/home/speakers/saron-yitbarek.jpg" alt="Photo of Saron Yitbarek" class="schedule__speaker-photo" />
<figcaption class="schedule__talk-details">
<div class="schedule__talk-title">Closing Keynote</div>
<small class="schedule__speaker-name">Saron Yitbarek</small>
</figcaption>
</figure>
</li>
<li class="schedule__event">
<time class="schedule__time-slot">16:30 - 16:40</time>
<div class="schedule__event-title">Closing Remarks/Announcements</div>
</li>
</ul>
</div>
</div>
</div>
<div class="schedule-link">
Add to Google Calendar:
<a href="http://www.google.com/calendar/render?action=TEMPLATE&text=RubyConfTH+2019+(day+1)&dates=20190906T090000/20190906T160000&ctz=Asia/Bangkok&location=Pullman+Bangkok+King+Power,+8-2+Rang+Nam+Alley,+Khwaeng+Thanon+Phaya+Thai,+Khet+Ratchathewi,+Krung+Thep+Maha+Nakhon+10400,+Thailand&trp=true&sprop=website:rubyconfth.com&sprop=name:Ruby+Conference+Thailand+2019" target="_blank" rel="nofollow">Day 1</a>,
<a href="http://www.google.com/calendar/render?action=TEMPLATE&text=RubyConfTH+2019+(day+2)&dates=20190907T100000/20190907T170000&ctz=Asia/Bangkok&location=Pullman+Bangkok+King+Power,+8-2+Rang+Nam+Alley,+Khwaeng+Thanon+Phaya+Thai,+Khet+Ratchathewi,+Krung+Thep+Maha+Nakhon+10400,+Thailand&trp=true&sprop=website:rubyconfth.com&sprop=name:Ruby+Conference+Thailand+2019" target="_blank" rel="nofollow">Day 2</a>