-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
2532 lines (2142 loc) · 128 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" />
<title>Shift Developer Conference 2017</title>
<meta name="description" content="Shift-Split Developer Conference">
<meta name="keywords" content="Shift, Shift-Split, Split, Conference, Developer Conference">
<meta name="author" content="Shift">
<!-- Booking verification -->
<meta name='B-verify' content='cc0b8a3999c4b2e14c3b0500f648955668564dfe' />
<!-- Favicons -->
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="http://shift.codeanywhere.com/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://shift.codeanywhere.com/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://shift.codeanywhere.com/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://shift.codeanywhere.com/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="http://shift.codeanywhere.com/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="http://shift.codeanywhere.com/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="http://shift.codeanywhere.com/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="http://shift.codeanywhere.com/favicon-16x16.png" sizes="16x16" />
<meta name="application-name" content="Shift Developer Conference 2017"/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="http://shift.codeanywhere.com/mstile-144x144.png" />
<!-- Stylesheet -->
<link rel="stylesheet" type="text/css" href="assets/css/custom-animations.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="preloader-mask">
<div class="preloader"></div>
</div>
<section id="hero" class="hero-section bg1 bg-cover window-height light-text">
<ul class="socials-nav">
<li class="socials-nav-item"><a href="https://www.twitter.com/shiftsplit"><span class="fa fa-twitter"></span></a></li>
<li class="socials-nav-item"><a href="https://www.facebook.com/shiftsplit"><span class="fa fa-facebook"></span></a></li>
<li class="socials-nav-item"><a href="https://www.youtube.com/user/TheShiftConference"><span class="fa fa-youtube"></span></a></li>
<li class="socials-nav-item"><a href="https://www.flickr.com/photos/shiftsplit/sets/"><span class="fa fa-flickr"></span></a></li>
</ul>
<div class="heading-block centered-block align-center">
<div class="container">
<h5 class="heading-alt" style="margin-bottom: 8px;"><span class="fa fa-calendar-o base-clr-txt"></span>1 & 2 June <span class="fa fa-map-marker base-clr-txt" style="margin-left: 14px;"></span>Split, Croatia</h5>
<h1 class="extra-heading">Shift</h1>
<h6 class="thin base-font">Largest <strong>Developer</strong> Conference in South East Europe</h6>
<div class="btns-container">
<a href="#prices" class="btn btn-md">GET TICKETS</a>
<a href="#" class="btn btn-outline btn-md" data-modal-link="0">VIDEO</a>
<!-- <a href="#" class="btn btn-outline btn-md" data-modal-link="1">LIVE STREAM</a> -->
</div>
</div>
</div>
</section>
<header class="header header-black">
<div class="header-wrapper">
<div class="container">
<div class="col-sm-2 col-xs-12 navigation-header">
<a href="#hero" class="logo">
<!--
<img src="assets/img/ventcamp_logo.png" alt="VentCamp" width="119" height="17" class="retina-hide">
<img src="assets/img/[email protected]" alt="VentCamp" width="119" height="17" class="retina-show">
-->
<img src="assets/img/logo/logo-shift8.png" alt="Shift Split" width="80px" height="auto" class="retina-hide">
<img src="assets/img/logo/logo-shift8.png" alt="Shift Split" width="80px" height="auto" class="retina-show">
</a>
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navigation" aria-expanded="false" aria-controls="navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="col-sm-10 col-xs-12 navigation-container">
<div id="navigation" class="navbar-collapse collapse">
<ul class="navigation-list pull-left light-text">
<li class="navigation-item"><a href="#speakers" class="navigation-link">Speakers</a></li>
<li class="navigation-item"><a href="#schedule" class="navigation-link">Schedule</a></li>
<li class="navigation-item"><a href="#prices" class="navigation-link">Tickets</a></li>
<!-- <li class="navigation-item"><a href="#gallery" class="navigation-link">Gallery</a></li> -->
<li class="navigation-item"><a href="#sponsors" class="navigation-link">Sponsors</a></li>
<li class="navigation-item"><a href="#accommodation" class="navigation-link">Accommodation</a></li>
<li class="navigation-item"><a href="#google-map" class="navigation-link">Location</a></li>
<li class="navigation-item"><a href="#contact" class="navigation-link">Contact</a></li>
<!-- <li class="navigation-item dropdown">
<a class="navigation-link dropdown-toggle" data-toggle="dropdown">Elements</a>
<ul class="dropdown-menu">
<li class="navigation-item"><a href="elements/contacts.html" class="navigation-link">Advanced Maps</a></li>
<li class="navigation-item"><a href="elements/buttons.html" class="navigation-link">Buttons</a></li>
<li class="navigation-item"><a href="elements/content.html" class="navigation-link">Content</a></li>
<li class="navigation-item"><a href="elements/counters.html" class="navigation-link">Counters</a></li>
<li class="navigation-item"><a href="elements/countdown.html" class="navigation-link">Countdown</a></li>
<li class="navigation-item"><a href="elements/call_to_action.html" class="navigation-link">Call to action</a></li>
<li class="navigation-item"><a href="elements/gallery.html" class="navigation-link">Gallery</a></li>
<li class="navigation-item"><a href="elements/navigations.html" class="navigation-link">Navigation</a></li>
<li class="navigation-item"><a href="elements/pricing.html" class="navigation-link">Prices</a></li>
<li class="navigation-item"><a href="elements/schedule.html" class="navigation-link">Schedule</a></li>
<li class="navigation-item"><a href="elements/speakers.html" class="navigation-link">Speakers</a></li>
<li class="navigation-item"><a href="elements/tabs.html" class="navigation-link">Tabs</a></li>
<li class="navigation-item"><a href="elements/tables.html" class="navigation-link">Tables</a></li>
<li class="navigation-item"><a href="elements/testimonials.html" class="navigation-link">Testimonials</a></li>
<li class="navigation-item"><a href="elements/typography.html" class="navigation-link">Typography</a></li>
<li class="navigation-item"><a href="elements/sponsors.html" class="navigation-link">Sponsors</a></li>
</ul>
</li> -->
</ul>
<a href="#prices" class="pull-right buy-btn">Buy Tickets</a>
</div>
</div>
</div>
</div>
</header>
<section id="about" class="section align-center">
<div class="container">
<span class="icon section-icon icon-multimedia-12"></span>
<h3>SHIFT Developer Conference 2017</h3>
<p class="text-alt">The biggest <span class="highlight">Developer</span> Conference in Southeast Europe</p>
<br />
<br />
<div class="tabs-wrapper tabs-horizontal">
<!-- <ul class="nav nav-tabs">
<li class="active"><a href="#horizontal_tab1" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-users"></span> Event</h6>
</a></li>
<li><a href="#horizontal_tab2" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-comments"></span> Talks</h6>
</a></li>
<li><a href="#horizontal_tab3" data-toggle="tab">
<h6 class="heading-alt"><span class="fa fa-cogs"></span> Workshops</h6>
</a></li>
</ul> -->
<div class="col-sm-4 align-left">
<h6><span class="fa fa-users"></span> Event</h6>
<p>The biggest Developer Conference in Southeast Europe. This event, Shift 2017 is the sixth and will bring together more than 1500 attendees. During the two conference days, Shift becomes a meeting place for developers in the most beautiful city in the world.</p>
</div>
<div class="col-sm-4 align-left">
<h6><span class="fa fa-comments"></span> Talks</h6>
<!-- <p>Cutting edge talks from all parts of the developer space, with speakers coming from the likes of; GitHub, Twitch, Atlassian, GitLab, Heroku, Google, Facebook and many more.</p> -->
<p>Learn about the most cutting edge technologies, techniques and biggest trends in the developer space, with speakers coming from the likes of; GitHub, Twitch, Atlassian, GitLab, Heroku, Google, Facebook and many more.</p>
</div>
<div class="col-sm-4 align-left">
<h6><span class="fa fa-cogs"></span> Workshop</h6>
<p>Industry experts and thought leaders will bring you up to speed with some of the most exciting technologies: React, React Native, Webpack, and Symphony. Two-hour long hands-on workshops will be running in parallel with the rest of the event so don't forget your laptops. Workshops will take place in Area 55, seating capacity is limited so come early.</p>
</div>
<!--
<div class="tab-content">
<div id="horizontal_tab1" class="tab-pane fade active in">
<div class="col-sm-5 img-column">
<img src="assets/img/imac-371x412.png" alt="" class="img-responsive" />
</div>
<div class="col-sm-7 align-left">
<h6>Event</h6>
<p>The biggest Developer Conference in Southeast Europe. This event, Shift 2017 is the sixth and will bring together more than 1500 attendees. During the two conference days, Shift becomes a meeting place for developers in the most beautiful city in the world.</p>
</div>
</div>
<div id="horizontal_tab2" class="tab-pane fade">
<div class="col-sm-7 align-right">
<h6>Talks</h6>
<p>Cutting edge talks from all parts of the developer space, with speakers coming from the likes of; GitHub, Twitch, Atlassian, GitLab, Heroku, Google, Facebook and many more.</p>
</div>
<div class="col-sm-5 img-column">
<img src="assets/img/imac-371x412.png" alt="" class="img-responsive" />
</div>
</div>
<div id="horizontal_tab3" class="tab-pane fade">
<div class="col-sm-5 img-column">
<img src="assets/img/imac-371x412.png" alt="" class="img-responsive" />
</div>
<div class="col-sm-7 align-left">
<h6>Workshop</h6>
<p>For the first time ever we will have workshops on parallel with the event. Which will give you hands-on experience with some of the new est trends coming in 2017.</p>
</div>
</div>
</div> -->
</div>
</div>
</section>
<section id="counters" class="section align-center overlay bg-cover bg5 light-text">
<div class="container">
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<span class="count" data-from="0" data-to="2">0</span>
<p class="title">days</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<span class="count" data-from="0" data-to="16">0</span>
<p class="title">workshops</p>
</div>
</div>
</div>
</div>
<div class="row counters-wrapper">
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<span class="count" data-from="0" data-to="20">0</span>
<p class="title">speakers</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="counter-block counter-block-no-border">
<div class="counter-box">
<div class="counter-content">
<span class="count" data-from="0" data-to="1500">0</span>
<p class="title">attendees</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="speakers" class="section align-center">
<div class="container">
<span class="icon section-icon icon-faces-users-04"></span>
<h3>Speakers</h3>
<p class="text-alt">Meet our <span class="highlight">professonals</span></p>
<br />
<br />
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/christian.jpg" alt="Christian Heilmann" class="img-responsive"></div>
<h3 class="name">Christian Heilmann</h3>
<p class="text-alt"><small>HTML5/Open Web Evangelist at Microsoft</small></p>
<p class="about">Originally coming from a radio journalism background, he built his first web site around 1997 and spent the following years working on large, international web sites.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/codepo8"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/christianheilmann/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/codepo8"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<!--
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/jesper.jpg" alt="Jesper Noehr" class="img-responsive"></div>
<h3 class="name">Jesper Noehr</h3>
<p class="text-alt"><small>Technology Consulting Executive for Digital Technologies</small></p>
<p class="about">Founder of Bitbucket, Serial entrepreneur and investor.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/jespern"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/jnoehr/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/jespern"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
-->
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/una.jpg" alt="Una Kravets" class="img-responsive"></div>
<h3 class="name">Una Kravets</h3>
<p class="text-alt"><small>UI Engineer at DigitalOcean</small></p>
<p class="about">I'm a UI Engineer at DigitalOcean. I've spoken around the world about advanced/experimental CSS, image optimization, and the intersection of design and development.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/una"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/una-kravets-a3582730/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/una"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/demir.jpg" alt="Demir Selmanovic" class="img-responsive"></div>
<h3 class="name">Demir Selmanovic</h3>
<p class="text-alt"><small>Head of Opensource at Toptal</small></p>
<p class="about">Demir is a developer and project manager with over 15 years of professional experience in the field. Currently engaged as Lead Technical Editor and Head of Opensource at Toptal.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/dselmanovic"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/demirselmanovic/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/mantrakbeg"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/cyrille.jpg" alt="Cyrille Fauvel" class="img-responsive"></div>
<h3 class="name">Cyrille Fauvel</h3>
<p class="text-alt"><small>Sr. Worldwide ADN Sparks Manager at Autodesk</small></p>
<p class="about">Application Developer, and Solution Architect for various technical and graphical applications. Particularly interested in problem resolution and modern programming techniques.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/cyrillef"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/cyrillefauvel/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/fauvelcyrille"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/ike.jpg" alt="Ike DeLorenzo" class="img-responsive"></div>
<h3 class="name">Ike DeLorenzo</h3>
<p class="text-alt"><small>Senior Director of Product</small></p>
<p class="about">Ike leads Heroku's product efforts in developer experience, and related platform features. He has a long history of thought leadership in the areas of software product design, management, and product marketing with an emphasis on mobile and cloud.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/ike-delorenzo"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/ikedelorenzo/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/delorenzo"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/ryan-chris.jpg" alt="Ryan Christiani" class="img-responsive"></div>
<h3 class="name">Ryan Christiani</h3>
<p class="text-alt"><small>Development Lead at HackerYou</small></p>
<p class="about">Ryan Christiani is a HackerYou instructor and developer based in Toronto committed to making tech education as accessible and exciting to others as it is to him.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/Rchristiani"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/ryanchristiani/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/RChristiani"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<!--
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/eduard-kunce.jpg" alt="Eduard Kunce" class="img-responsive"></div>
<h3 class="name">Eduard Kunce</h3>
<p class="text-alt"><small>Principal Software Engineering Manager at Skype</small></p>
<p class="about">I'm an experienced R&D leader with a strong development background, published author and agile enthusiast. I have extensive experience from corporations, I was CTO of a startup and today I'm leading multiple development teams @ Skype.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/ekunce"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/eduardkunce/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/ekunce"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
-->
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/ivanburazin.png" alt="Ivan Burazin" class="img-responsive"></div>
<h3 class="name">Ivan Burazin</h3>
<p class="text-alt"><small>CEO at Codeanywhere</small></p>
<p class="about">Ivan is the founder of the Shift Conference. Alongside this he co-founded Codeanywhere, the first cross platform Cloud IDE, which now has over a million users worldwide.</p>
<ul class="speaker-socials">
<!-- <li><a href="https://github.com/Rchristiani"><span class="fa fa-github"></span></a></li> -->
<li><a href="https://www.linkedin.com/in/ivanburazin/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/ivanburazin"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/christoph-r.png" alt="Christoph Reinartz" class="img-responsive"></div>
<h3 class="name">Christoph Reinartz</h3>
<p class="text-alt"><small>Front-End Developer & Team Lead UI/UX Engineering at Trivago</small></p>
<p class="about">Christoph loves to scale User Interfaces and Front-ends at large scale.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/creinartz"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/christoph-reinartz-57b10b73/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/pistenprinz"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/luka-abrus.png" alt="Luka Abrus" class="img-responsive"></div>
<h3 class="name">Luka Abrus</h3>
<p class="text-alt"><small>CEO at Five</small></p>
<p class="about">Luka is CEO of Five, a mobile design and development agency with offices in New York and Croatia. Luka is also a co-founder of Shoutem. He’s an active speaker, columnist, and the author of 3 IT books.</p>
<ul class="speaker-socials">
<!-- <li><a href="https://github.com/creinartz"><span class="fa fa-github"></span></a></li> -->
<li><a href="https://www.linkedin.com/in/lukaabrus/"><span class="fa fa-linkedin"></span></a></li>
<!-- <li><a href="https://twitter.com/pistenprinz"><span class="fa fa-twitter"></span></a></li> -->
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/peter-brussard.png" alt="Peter Brussard" class="img-responsive"></div>
<h3 class="name">Peter Brussard</h3>
<p class="text-alt"><small>Senior Vice President at Rosetta Stone</small></p>
<p class="about">Being a data-driven and results-focused leader, Peter’s 19-year career spans a variety of roles at organizations including Microsoft, SecondSpace, DataSphere, and Livemocha.</p>
<ul class="speaker-socials">
<!-- <li><a href="https://github.com/creinartz"><span class="fa fa-github"></span></a></li> -->
<li><a href="https://www.linkedin.com/in/brussard/"><span class="fa fa-linkedin"></span></a></li>
<!-- <li><a href="https://twitter.com/pistenprinz"><span class="fa fa-twitter"></span></a></li> -->
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/dominik-kundel.png" alt="Dominik Kundel" class="img-responsive"></div>
<h3 class="name">Dominik Kundel</h3>
<p class="text-alt"><small>Developer Evangelist at Twilio</small></p>
<p class="about">Dominik is a Developer Evangelist for Twilio serving developer communities in Berlin and around the world. Passionate for JavaScript, hackathons, teaching and good whiskey.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/dkundel"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/dkundel?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/dkundel"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/dotan-simha.jpg" alt="Dotan Simha" class="img-responsive"></div>
<h3 class="name">Dotan Simha</h3>
<p class="text-alt"><small>Open-Source Developer at The Guild</small></p>
<p class="about">Dotan is an open-source developer, part of a freelancer group called The Guild, contributor to Apollo’s graphql-subscriptions and one of the core developers of Angular-Meteor.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/dotansimha"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/dotan-simha-36767b29/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/dotansimha"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/aki.png" alt="Andrija (Aki) Colovic" class="img-responsive"></div>
<h3 class="name">Andrija (Aki) Colovic</h3>
<p class="text-alt"><small>Engineering Manager at Signal</small></p>
<p class="about">Aki is passionate about distributed databases and scaling backend services. Currently leading a team responsible for the Signal’s Identity platform.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/andrijaa"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/andrija-aki-colovic-85371b15/"><span class="fa fa-linkedin"></span></a></li>
<!-- <li><a href=""><span class="fa fa-twitter"></span></a></li> -->
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/goran-cvijanovic.png" alt="Goran Cvijanovic" class="img-responsive"></div>
<h3 class="name">Goran Cvijanovic</h3>
<p class="text-alt"><small>Principal Engineer at ReversingLabs</small></p>
<p class="about">With more than 20 years of experience, Goran is a Team Lead for Analytical Platform, designing modern Big Data BI systems for supporting company's core business.</p>
<ul class="speaker-socials">
<li><a href="https://www.linkedin.com/in/goranc/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<!-- <li><a href=""><span class="fa fa-github"></span></a></li>
<li><a href=""><span class="fa fa-twitter"></span></a></li> -->
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/stefan-thies.png" alt="Stefan Thies" class="img-responsive"></div>
<h3 class="name">Stefan Thies</h3>
<p class="text-alt"><small>DevOps Evangelist at Sematext</small></p>
<p class="about">Stefan is passionate about scalable system architectures and he contributes to several Node.js open source projects related to monitoring, logging or distributed systems.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/megastef"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/stefan-thies-a44a863/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/seti321"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/luciano-mammino.png" alt="Luciano Mammino" class="img-responsive"></div>
<h3 class="name">Luciano Mammino</h3>
<p class="text-alt"><small>Senior Software Developer at Planet9</small></p>
<p class="about">Luciano started coding at the age of 12 and he’s been fascinated by the web, smart apps and the creative world ever since. Co-author of “Node.js design patterns” 2nd edition.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/lmammino"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/lucianomammino/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/loige"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/laura-carvajal.png" alt="Laura Carvajal" class="img-responsive"></div>
<h3 class="name">Laura Carvajal</h3>
<p class="text-alt"><small>Senior Developer at Financial Times</small></p>
<p class="about">Laura Carvajal is a senior developer at the Financial Times building FT.com. Lara has been working in web development for the past 15 years.</p>
<ul class="speaker-socials">
<li><a href="https://www.linkedin.com/in/lauracarvajal/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://github.com/lc512k"><span class="fa fa-github"></span></a></li>
<li><a href="https://twitter.com/lc512k"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/petar-hopwod.png" alt="Peter Hopwood" class="img-responsive"></div>
<h3 class="name">Peter Hopwood</h3>
<p class="text-alt"><small>Host at Hopwood Communications</small></p>
<p class="about">Global public speaking, impact and presence coach helping professionals, brands and teams to shine with impact when it matters. In demand across Europe and Middle East</p>
<ul class="speaker-socials">
<!-- <li><a href=""><span class="fa fa-github"></span></a></li> -->
<li><a href="https://www.linkedin.com/in/peterhopwoodpublicspeaking/"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/HopwoodMedia"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<!--
<div class="col-sm-12 align-center">
<a href="elements/speakers.html" target="_blank" class="btn btn-outline-clr btn-md">SPEAKERS STYLES</a>
</div>
-->
<!--
<div class="col-sm-12 align-center">
<p class="text-alt">More to be announced...</p>
</div>
-->
</div>
</section>
<div class="btns-container center align-center">
<div class="btn btn-md speakers-btn">AREA55 SPEAKERS</div>
</div>
<section id="speakers-55" class="section align-center">
<div class="container">
<span class="icon section-icon icon-faces-users-04"></span>
<h3>Area 55 Speakers</h3>
<p class="text-alt">Meet our <span class="highlight">Area 55 speakers</span></p>
<br />
<br />
<div id="area55">
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/darko-kukovec.png" alt="Darko Kukovec" class="img-responsive"></div>
<h3 class="name">Darko Kukovec</h3>
<p class="text-alt"><small>JavaScript Team Lead at Infinum</small></p>
<p class="about">Darko Kukovec is a JavaScript Team Lead at Infinum. In his free time, he experiments with node.js, browser extensions, manipulating CSS and everything else JavaScript related.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/DarkoKukovec"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/darkokukovec/?locale=hr_HR"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/darkokukovec"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<!--
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/andrei-zvonimir.png" alt="Andrei Zvonimir Crnković" class="img-responsive"></div>
<h3 class="name">Andrei Zvonimir Crnković</h3>
<p class="text-alt"><small>JavaScript Emojineer at Infinum</small></p>
<p class="about">Andrei is a JavaScript Emojineer at Infinum who likes trying out new things and spreading the hype. He's passionate about JavaScript, Webpack, React, and dogs.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/andreicek"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/andreicek/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/andreicek"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
-->
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/robert-raca.png" alt="Robert Raca" class="img-responsive"></div>
<h3 class="name">Robert Raca</h3>
<p class="text-alt"><small>Developer at Aduro</small></p>
<p class="about">Robert is experienced in system and architectural design. He was one of architects of the migration to micro-services and switch to GOLANG as the main language in Aduro idea.</p>
<ul class="speaker-socials">
<!-- <li><a href="https://github.com/una"><span class="fa fa-github"></span></a></li> -->
<li><a href="https://www.linkedin.com/in/robertraca/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<!-- <li><a href="https://twitter.com/una"><span class="fa fa-twitter"></span></a></li> -->
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/berislav-sapina.png" alt="Berislav Šapina" class="img-responsive"></div>
<h3 class="name">Berislav Šapina</h3>
<p class="text-alt"><small>Software Developer at Locastic</small></p>
<p class="about">Berislav is working as a Symfony developer at Locastic. Programming enthusiast who loves to share his experiences to make programming as accessible and exciting to others.</p>
<ul class="speaker-socials">
<!-- <li><a href="https://github.com/dselmanovic"><span class="fa fa-github"></span></a></li> -->
<li><a href="https://www.linkedin.com/in/berislav-sapina-4289a813b/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<!-- <li><a href="https://twitter.com/mantrakbeg"><span class="fa fa-twitter"></span></a></li> -->
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/ivo-lukac.png" alt="Ivo Lukač" class="img-responsive"></div>
<h3 class="name">Ivo Lukač</h3>
<p class="text-alt"><small>Web Technologist at NetGen</small></p>
<p class="about">Managing partner at Netgen, more than 12 years of experience in building complex web solutions, spoken at many conferences, organizing Web Summer Camp from 2012.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/ilukac"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/ivolukac/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/ilukac"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/andrea-griso.png" alt="Andrea Grisogono" class="img-responsive"></div>
<h3 class="name">Andrea Grisogono</h3>
<p class="text-alt"><small>Product Manager at Appacus</small></p>
<p class="about">Andrea is a product manager with 11 years of experience who is passionate about leading teams that develop amazing apps. Loves free-climbing and extra dark chocolate.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/scrumolina"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/andrea-grisogono?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/scrumolina"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/tomislav-tenodi.png" alt="Tomislav Tenodi" class="img-responsive"></div>
<h3 class="name">Tomislav Tenodi</h3>
<p class="text-alt"><small>Technical Product Manager at Shoutem</small></p>
<p class="about">Product Manager at Shoutem with a focus on the technical side of the product. Makes sure to change the world with Shoutem Extensions.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/tenodi"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/tenodi?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/tomislavtenodi"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded"><img src="assets/img/speakers/grgur-grisogono.png" alt="Grgur Grisogono" class="img-responsive"></div>
<h3 class="name">Grgur Grisogono</h3>
<p class="text-alt"><small>Software Architect at Modus Create</small></p>
<p class="about">Web application expert with 17 years of experience in building faster and reusable user interfaces with JavaScript. Grgur is a contributor to Webpack, co-author of Ext JS in Action SE, author of many acclaimed articles, three-times conference chairman, speaker, and a software architect at Modus Create.</p>
<ul class="speaker-socials">
<li><a href="https://github.com/grgur"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/grguru/?ppe=1"><span class="fa fa-linkedin"></span></a></li>
<li><a href="https://twitter.com/ggrgur"><span class="fa fa-twitter"></span></a></li>
</ul>
</div>
</div>
<!--
<div class="col-sm-12 align-center">
<a href="elements/speakers.html" target="_blank" class="btn btn-outline-clr btn-md">SPEAKERS STYLES</a>
</div>
-->
<!--
<div class="col-sm-12 align-center">
<p class="text-alt">More to be announced...</p>
</div>
-->
</div><!-- /area55 -->
</div><!-- /container -->
</section>
<section id="schedule" class="section schedule-section align-center">
<div class="container">
<span class="icon section-icon icon-office-21"></span>
<h3>Schedule</h3>
<p class="text-alt">Vast number of different speeches<br/> and <span class="highlight">activities</span></p>
<br />
<br />
<!-- Schedule start -->
<div class="schedule">
<!-- Navigation by day start -->
<ul class="nav nav-schedule">
<li><a href="#day1" data-toggle="tab"><h5 class="highlight">Day 1</h5><p class="text-alt">01/06/2017</p></a></li>
<li class="active"><a href="#day2" data-toggle="tab"><h5 class="highlight">Day 2</h5><p class="text-alt">02/06/2017</p></a></li>
<!--
<li><a href="#day3" data-toggle="tab"><h5 class="highlight">Day 3</h5><p class="text-alt">10/10/2017</p></a></li>
<li><a href="#day4" data-toggle="tab"><h5 class="highlight">Day 4</h5><p class="text-alt">11/10/2017</p></a></li>
<li><a href="#day5" data-toggle="tab"><h5 class="highlight">Day 5</h5><p class="text-alt">12/10/2017</p></a></li>
-->
</ul>
<!-- Navigation by day end -->
<!-- First level content start -->
<div class="tab-content">
<!-- Day 1 content start -->
<div id="day1" class="tab-pane fade in">
<!-- Navigation by auditorium start -->
<ul class="nav nav-schedule">
<li class="active"><a href="#day1_auditorium1" data-toggle="tab">Main Track</a></li>
<li><a href="#day1_auditorium2" data-toggle="tab">Area 55</a></li>
</ul>
<!-- Navigation by auditorium start -->
<!-- Second level content start -->
<div class="tab-content tab-content-schedule">
<!-- Auditorium 1 content start -->
<div id="day1_auditorium1" class="tab-pane fade active in">
<!-- Accordion start -->
<div class="panel-group" id="day1_auditorium1_timeline">
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<i class="fa fa-sign-in" aria-hidden="true"></i>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time1" class="schedule-item-toggle">
<strong class="time highlight"><span class="icon icon-office-24"></span>10:00 - 11:00</strong>
<h6 class="title">Registration<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time1" class="panel-collapse collapse in schedule-item-body">
<article>
<p class="description">Luctus at accumsan eget ut ante. Cras molestie sollicitudin. Ultricies et eros id quisque auctor. Per mus enim ac lorem integer. Erat netus id. Porta enim quis et elementum amet risus volutpat magna nec ac.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-codeanywhere.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>11:00 - 11:15</strong>
<h6 class="title">Official Opening - Ivan Burazin (Codeanywhere)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time2" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Wisi id tristique. Aliquam orci vulputate. Turpis tempor erat at dictum pellentesque. Neque facilisis cras. Venenatis vel posuere sodales scelerisque leo vel nec enim. Blandit nullam sodales lectus nulla lorem penatibus sed nec eget eros.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-microsoft.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time3" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>11:15 - 12:00</strong>
<h6 class="title">The Soul in The Machine - Developing for Humans - Christian Heilmann (Microsoft)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time3" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Integer in eu. Quis id curabitur tellus est enim. Ut est ultrices. Vitae ad ut nunc quisquam interdum libero neque magna nonummy sapien sit. In sit lacus. Maecenas molestie fusce ut feugiat vestibulum dui mauris.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-five.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time4" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>12:00 - 12:45</strong>
<h6 class="title">Mobile apps are dead, long live mobile apps! (and Shoutem!) - Luka Abrus (Five)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<!-- <img src="assets/img/icons-logo/icon-" alt="" class="img-responsive"> -->
<i class="fa fa-cutlery" aria-hidden="true"></i>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time5" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>12:45 - 13:45</strong>
<h6 class="title">Lunch<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-autodesk.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time6" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>13:45 - 14:30</strong>
<h6 class="title">Building a Collaboration Service for the Hololens - Cyrille Fauvel (Autodesk)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-heroku.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>14:30 - 15:15</strong>
<h6 class="title">Automated Devops and Delivery for the Product Win; How to Structure Your Teams' Work Toward Product, not Plumbing. - Ike DeLorenzo (Heroku)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-trivago.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time8" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>15:15 - 16:00</strong>
<h6 class="title">Design Systems Engineering: Scaling User Interfaces - Christoph Reinartz (Trivago)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<i class="fa fa-coffee" aria-hidden="true"></i>
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time9" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>16:00 - 16:30</strong>
<h6 class="title">Coffee Break<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-roseta-stone.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time10" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>16:30 - 17:00</strong>
<h6 class="title">Staying Agile in Companies Large and Small - Peter Brussard (Rosetta Stone)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-hackeryou.png" alt="Learn ES6" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time11" class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>17:00 - 17:30</strong>
<h6 class="title">Data Flow in JavaScript Applications - Ryan Christiani (HackerYou)<!-- <i class="icon icon-arrows-06"></i>--></h6>
</a>
<!-- <div id="day1_auditorium1_time4" class="panel-collapse collapse schedule-item-body">
<article>
<p class="description">Lorem vel lorem. Nulla ab justo. Scelerisque penatibus eget. Nunc ultrices nec sed lobortis et. Vitae massa massa pede magna sociosqu viverra tempus justo. Et quis ornare nisl mi ligula suscipit ullamcorper massa ante diam.</p>
<strong class="highlight speaker-name">Michael Lambert</strong>
</article>
</div> -->
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<div class="lecture-icon-wrapper">
<img src="assets/img/icons-logo/icon-planet9.png" alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time12" class="schedule-item-toggle collapsed">