-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduleTemp.html
2953 lines (2729 loc) · 163 KB
/
scheduleTemp.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
<!-- Schedule area -->
<section class="section gray-bg section-padding align-center" id="schedule">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Schedule</h2>
</div>
</div>
</div>
<!--<div id="ExternalSchedule"></div>-->
<!-- Schedule start -->
<div class="schedule">
<!-- Navigation by day start -->
<ul class="nav2 nav2-schedule">
<li><a href="#day1" data-toggle="tab">
<h5 class="highlight">March 7</h5>
<p class="text-alt">Software Engineering</p>
</a></li>
<li><a href="#day2" data-toggle="tab">
<h5 class="highlight">March 8</h5>
<p class="text-alt">Multimedia</p>
</a></li>
<li><a href="#day3" data-toggle="tab">
<h5 class="highlight">March 9</h5>
<p class="text-alt">Security</p>
</a></li>
<li"><a href="#day4" data-toggle="tab">
<h5 class="highlight">March 10</h5>
<p class="text-alt">Games</p>
</a></li>
<li class="active><a href=" #day5" data-toggle="tab">
<h5 class="highlight">March 11</h5>
<p class="text-alt">Tech Trends</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="nav2 nav2-schedule">
<li class="active"><a href="#day1_auditorium1" data-toggle="tab">Presentations</a></li>
<li><a href="#day1_auditorium2" data-toggle="tab">Lunch Talk</a></li>
<li><a href="#day1_auditorium3" data-toggle="tab">Keynotes</a></li>
<li><a href="#day1_auditorium4" data-toggle="tab">Workshops</a></li>
<li><a href="#day1_auditorium5" data-toggle="tab">Stands</a></li>
</ul>
<!-- Navigation by auditorium start -->
<!-- Second level content start -->
<div class="tab-content tab-content-schedule">
<!-- Presentations content start -->
<div id="day1_auditorium1" class="tab-pane fade active in">
<!-- Accordion start -->
<div class="panel2-group" id="day1_auditorium1_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/worten.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium1_timeline" href="#day1_auditorium1_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>09h30 - 09h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">Worten</span> - Come to meet Worten Portugal<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Apresentação da Tech Team da Worten, áreas de trabalho, principais projetos
e desafios.</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/deloitte.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>10h00 - 10h20 [Room
1]</strong>
<h6 class="title"><span class="companyName">Deloitte</span> - Curiosity… trapped the cat<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time2" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">A journey into cyber incident management.</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/kpmg.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>10h30 - 10h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">KPMG</span> - KPMG Tech shapping the future<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time3" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description"> Come see how KPMG is shaping the future with technology solutions to
support business processes that we use in our daily activities.
</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/vtxrm.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>11h00 - 11h20 [Room
1]</strong>
<h6 class="title"><span class="companyName">VTXRM</span> - Internationalization challenge<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time4" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">How a company prepares herself for the internationalization challenge of a
product for the difficult Financial market. How they minimized the risks and adapted to the
different cultures, languages, and market regulations.</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/diconium.png"
alt="" class="img-responsive">
</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>11h30 - 11h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">diconium</span> - Creating Digital Champions<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time5" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Get to know diconium as a company, our culture and core values. See how we
enable workers to grow, learn, and tailor their career path to their objectives and needs.
Doesn't matter if you're hyper focused on work life balance, or energised by new challenges, we
strive to bring out the best in everyone, in a way that makes sense for them.</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/crossjoin-square.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>12h00 - 12h20 [Room
1]</strong>
<h6 class="title"><span class="companyName">Crossjoin Solutions</span> - Ready for a challenge?<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time6" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Our presentation will be a journey of why we are a Great Place to Work and
why this is the right challenge for the candidates.
</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/imaginary.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>12h30 - 12h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">Imaginary Cloud</span> - Creating Seamless Technology<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium1_time7" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description"> Imaginary Cloud is an award winning Software Development & UX/UI Design
company whose purpose is to champion a Human-Centric world. Come and learn more about us!</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Presentations content end -->
<!-- Lunch Talk content start -->
<div id="day1_auditorium2" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel2-group" id="day1_auditorium2_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/imaginary.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium2_timeline" href="#day1_auditorium2_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>13h00 - 13h30
[Auditorium]</strong>
<h6 class="title"><span class="companyName">André Santos & Patrícia Silva from Imaginary
Cloud</span> - Test your Developer Skills!<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium2_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">In this funny & insightful Kahoot session we will be launching a set of
questions to test your skills as developers.</p>
<strong class="highlight speaker-name">Giveaway: 50€ FNAC Gift Card</strong>
</article>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Lunch Talk content end -->
<!-- Keynotes content start -->
<div id="day1_auditorium3" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel2-group" id="day1_auditorium3_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/speakersPhotos/laura.webp"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium3_timeline" href="#day1_auditorium3_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>14h00 - 15h00
[Auditorium]</strong>
<h6 class="title"><span class="companyName">Laura Weaver (Senior iOS Engineer & Engineering Manager
@ Whatnot)</span> - Reacting to Native: How we rebuild a unicorn app in 4 months<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium3_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Having found product/market fit in the early stages of its growth, live
shopping platform Whatnot decided that it was time to sunset its React Native app and move
towards Native iOS. As their founding iOS Engineer, Laura Weaver will go through the business
and technical journey. We will discuss early architectural decisions, including how to set
yourself up for success with testing, internationalization and flexible design paradigms.</p>
<strong class="highlight speaker-name">Giveaway: JBL Bluetooth Headset</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/speakersPhotos/Sarah.webp"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium3_timeline" href="#day1_auditorium3_time2"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>15h10 - 16h10
[Auditorium]</strong>
<h6 class="title"><span class="companyName">Sarah Wachs (Software Development Consultant @
Netlight)</span> - Debugging a Camper Van<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium3_time2" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">To code is to write bugs. We all do it and we all have to fix the messes we
create and debug our code. If we are unlucky, we have to debug someone else’s code. Or in the
worst case handle a bug in production. But don’t panic, stay calm and follow the universal
principles of debugging to catch them all.<br>
This talk will walk through the higher level principles of debugging using a non tech example.
We will also look at how those principles can be turned into practical steps to narrow down,
reproduce and hopefully fix bugs in software. Debugging won’t just help you to fix errors in
your software, but is also a great way to learn about a code base and the tools you are using.
And you might not believe me, but it can be fun too.</p>
<strong class="highlight speaker-name">Giveaway: Dolce Gusto Piccolo XS Coffee Machine</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/speakersPhotos/Shubha.webp"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium3_timeline" href="#day1_auditorium3_time3"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>16h20 - 17h20
[Auditorium]</strong>
<h6 class="title"><span class="companyName">Shubha Swamy (Software Engineer @ Twitter)</span> -
Acing Coding Interviews<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium3_time3" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Coding interviews are the gateway to a software engineering career. Master
the approaches to algorithmic thinking by breaking down a problem with simple methods.</p>
<strong class="highlight speaker-name">Giveaway: Xiaomi Mi Band 6</strong>
</article>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Keynotes content end -->
<!-- Workshops content start -->
<div id="day1_auditorium4" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel2-group" id="day1_auditorium4_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/imaginary.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium4_timeline" href="#day1_auditorium4_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>17h30 - 19h00 [Room
1]</strong>
<h6 class="title"><span class="companyName">Imaginary Cloud</span> - Build a React Crypto Tracker<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium4_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description"> In this workshop we will take you through a step by step process on how to
create a Cryptocurrency Tracker in React.<br><br><b>Requirements:</b> <a
href="https://github.com/imaginary-cloud/crypto-tracker-workshop"
target="_blank">https://github.com/imaginary-cloud/crypto-tracker-workshop</a> </p>
<strong class="highlight speaker-name">Giveaway: 15€ FNAC Gift Card</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/singlestore.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium4_timeline" href="#day1_auditorium4_time2"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>17h30 - 19h00 [Room
2]</strong>
<h6 class="title"><span class="companyName">Singlestore</span> - Building CI Pipelines for apps<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium4_time2" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">From development to production, an introduction on how to test and deploy
using CI/CD.<br><br><b>Requirements: </b>Linux machine recomended, however Windows will work as
well. Software TBD</p>
<strong class="highlight speaker-name">Giveaway: 15€ FNAC Gift Card</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/sky.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium4_timeline" href="#day1_auditorium4_time3"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>19h00 - 20h30 [Room
1]</strong>
<h6 class="title"><span class="companyName">Sky</span> - Building a 50M Streaming app<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium4_time3" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Discover how Sky & NBC Universal built a world-class Streaming app. With
50+ million users, Peacock became a record-breaking streaming platform, with recent sports
events like the Winter Olympics and the Super Bowl LVI.<br><br><b>No Requirements</b></p>
<strong class="highlight speaker-name">Giveaway: 15€ FNAC Gift Card</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/ci&t.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day1_auditorium4_timeline" href="#day1_auditorium4_time4"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>19h00 - 20h30 [Room
2]</strong>
<h6 class="title"><span class="companyName">CI&T</span> - Make their Tomorrow<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day1_auditorium4_time4" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Within every minute,we transform a new person's life. We make a new story
possible. We unlock dreams.<br><br><b>Requirements: </b>Laptop</p>
<strong class="highlight speaker-name">Giveaway: 15€ FNAC Gift Card</strong>
</article>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Workshops content end -->
<!-- Stands content start -->
<div id="day1_auditorium5" class="tab-pane fade in">
<!-- Accordion start -->
<div id="day1_auditorium5_timeline">
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/crossjoin-square.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/accenture.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/ci&t.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/deloitte.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/diconium.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/glintt.png"
alt="" width="100" height="100">
</div>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/imaginary.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/kpmg.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/nos.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/olx.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/premium.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/relex.png"
alt="" width="100" height="100">
</div>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/singlestore.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/sky.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/stellaxius.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/vtxrm.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/worten.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/critical-software.png"
alt="" width="100" height="100">
</div>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/ey.png"
alt="" width="100" height="100">
</div>
</div>
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="box-stands whitebox fontColor">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/pwc.png"
alt="" width="100" height="100">
</div>
</div>
</div>
</div>
<!-- Accordion end -->
</div>
<!-- Stands content end -->
</div>
<!-- Second level content end -->
</div>
<!-- Monday content end -->
<!-- Day 2 content start -->
<div id="day2" class="tab-pane fade in">
<!-- Navigation by auditorium start -->
<ul class="nav2 nav2-schedule">
<li class="active"><a href="#day2_auditorium1" data-toggle="tab">Presentations</a></li>
<li><a href="#day2_auditorium2" data-toggle="tab">Lunch Talk</a></li>
<li><a href="#day2_auditorium3" data-toggle="tab">Keynotes</a></li>
<li><a href="#day2_auditorium4" data-toggle="tab">Workshops</a></li>
<li><a href="#day2_auditorium5" data-toggle="tab">Stands</a></li>
</ul>
<!-- Navigation by auditorium start -->
<!-- Second level content start -->
<div class="tab-content tab-content-schedule">
<!-- Presentations content start -->
<div id="day2_auditorium1" class="tab-pane fade active in">
<!-- Accordion start -->
<div class="panel2-group" id="day2_auditorium1_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/vision-box.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium1_timeline" href="#day2_auditorium1_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>09h30 - 09h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">Vision-Box</span> - Get to know Vision-Box<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium1_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Is your vision outside the box?
</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/sky.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium1_timeline" href="#day2_auditorium1_time2"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>10h00 - 10h20 [Room
1]</strong>
<h6 class="title"><span class="companyName">Sky</span> - Building TV & Streaming apps<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium1_time2" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Learn more about Sky Portugal. Our people, culture and the way we deliver
engineering excellence at a scale of millions</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/opensoft.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium1_timeline" href="#day2_auditorium1_time3"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>10h30 - 10h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">Opensoft</span> - Lightweightform: Fast forms<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium1_time3" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Lightweightform (aka: LF) é uma framework open-source, utilizada para criar
web forms de elevada complexidade (múltiplas páginas, centenas de campos, milhares de
validações). Fazemos isso para clientes institucionais há 20 anos, primeiro com Java Applets e
agora com uma stack de tecnologias web: HTML5, Angular, Kotlin, Node, que distribuímos sob a
forma de uma framework open-source: Lightweightform</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/accenture.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium1_timeline" href="#day2_auditorium1_time4"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>11h00 - 11h20 [Room
1]</strong>
<h6 class="title"><span class="companyName">Accenture</span> - Hum, Accenture? Tell me more!<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium1_time4" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Have you ever heard about Accenture? It´s all about the future! Let´s find
out!</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/relex.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium1_timeline" href="#day2_auditorium1_time5"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>11h30 - 11h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">Relex Solutions</span> - You code, the planet benefits<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium1_time5" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">TBA</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/nos.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium1_timeline" href="#day2_auditorium1_time6"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>12h00 - 12h20 [Room
1]</strong>
<h6 class="title"><span class="companyName">NOS</span> - Na vanguarda da inovação<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium1_time6" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Como potenciar o teu desenvolvimento através do programa NOS ALFA. Quais as
suas caraterísticas e oportunidades na NOS - a visão de um Alumnus do IST</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/singlestore.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium1_timeline" href="#day2_auditorium1_time8"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>12h30 - 12h50 [Room
1]</strong>
<h6 class="title"><span class="companyName">Singlestore</span> - Introduction to SingleStoreDB<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium1_time8" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">In this talk, we'll introduce you to the SingleStoreDB product, the
database for data-intensive applications</p>
<strong class="highlight speaker-name">Giveaway: 10€ FNAC GIFT CARD</strong>
</article>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Presentations content end -->
<!-- Lunch Talk content start -->
<div id="day2_auditorium2" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel2-group" id="day2_auditorium2_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/diconium.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day5_auditorium2_timeline" href="#day2_auditorium2_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>13h00 - 13h30
[Auditorium]</strong>
<h6 class="title"><span class="companyName">Tiago Dias (Software Engineer @ diconium)</span> -
Frontend: Then and Now<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium2_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">How did frontend technologies shaped the modern developer, and forced the
evolution from webmaster to frontend developer.<br>
In the beginning there was darkness. You would write your cold lines of code against a black
screen and white text in a terminal. Then a Flash, an explosion of tools, and you would weaver
dreams. At your fingertips there was a whole new world, full of hyper text, styles cascading,
and never ending sheets, you were the master of your domain, and the web could be whatever you
wanted it to be.<br>
But as empires raised and fell, as the Query masters of the house of J lost their importance,
more and more tools would appear. Javascript turned Typescript, CSS got more or LESS some SASS
in it, and static files in a server got bundled, Webpacked, and Parceled into their destination.
Let's take a stroll down memory lane and understand how did we arrive where we are.
</p>
<strong class="highlight speaker-name">Giveaway: 50€ FNAC Gift Card</strong>
</article>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Lunch Talk content end -->
<!-- Keynotes content start -->
<div id="day2_auditorium3" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel2-group" id="day2_auditorium3_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/speakersPhotos/Sergio.webp"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium3_timeline" href="#day2_auditorium3_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>14h00 - 15h00
[Auditorium]</strong>
<h6 class="title"><span class="companyName">Sérgio Santos (VFX Composition Supervisor @ Dø
Postproduction)</span> - VFX Creation of La casa de Papel<i class="icon icon-arrows-06"></i>
</h6>
</a>
<div id="day2_auditorium3_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">In this Keynote, I'll talk about my work on the series La Casa de Papel, as
well as the process of creating the series' effects.</p>
<strong class="highlight speaker-name">Giveaway: Agfa 35mm Analog Camera</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/speakersPhotos/BrianGreen.webp"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium3_timeline" href="#day2_auditorium3_time2"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>15h10 - 16h10
[Auditorium]</strong>
<h6 class="title"><span class="companyName">Brian Green (Character Supervisor @ Skydance
Animation)</span> - Creating Animated Characters for Feature Films<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium3_time2" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">The session looks at the science and art of creating characters for
animated feature films.<br>
Brian Green’s 25 plus years working on animated features has seen him create and supervise the
creation of some of the big screen’s best-loved characters. From his very first project – Slim,
the stick insect – Green has gone on to supervise across The Good Dinosaur, Toy Story 3,
Ratatouille, Finding Nemo, Monsters, Inc. and A Bug's Life, among others. This talk looks at the
creation of animated characters and how science and art has evolved to extend our creative
reach.</p>
<strong class="highlight speaker-name">Giveaway: XP-PEN StarG640 Drawing Tablet</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/speakersPhotos/Erin.webp"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium3_timeline" href="#day2_auditorium3_time3"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>16h20 - 17h20
[Auditorium]</strong>
<h6 class="title"><span class="companyName">Erin Ramos (Head of Effects Animation @ Walt Disney
Animation Studios)</span> - Engineering to Effects : An intersection of art and science in
film<i class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium3_time3" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">Head of Effects Animation at Walt Disney Animation Studios Erin Ramos
details her journey of how after graduating with a degree in Computer Science and Engineering,
was able to break into the world of visual effects in films. Learn how a background in computer
science translates into working in an artistic field as well as some of the process behind some
of Disney Animation's latest releases.</p>
<strong class="highlight speaker-name">Giveaway: JBL Wireless headphones</strong>
</article>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Keynotes content end -->
<!-- Workshops content start -->
<div id="day2_auditorium4" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel2-group" id="day2_auditorium4_timeline">
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/crossjoin-square.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium4_timeline" href="#day2_auditorium4_time1"
class="schedule-item-toggle collapsed">
<strong class="time highlight"><span class="icon icon-office-24"></span>17h30 - 19h00 [Room
1]</strong>
<h6 class="title"><span class="companyName">Crossjoin Solutions</span> - xTreme Performance<i
class="icon icon-arrows-06"></i></h6>
</a>
<div id="day2_auditorium4_time1" class="panel2-collapse collapse schedule-item-body">
<article>
<p class="description">We pretend to give a little taste about Performance.
Challenges they could face on a day to day at Crossjoin.<br><br><b>Requirements: </b>Laptop</p>
<strong class="highlight speaker-name">Giveaway: 15€ FNAC Gift Card</strong>
</article>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel2 schedule-item">
<div class="lecture-icon-wrapper">
<img src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/29-sinfo/sponsorsLogos/diconium.png"
alt="" class="img-responsive">
</div>
<a data-toggle="collapse" data-parent="#day2_auditorium4_timeline" href="#day2_auditorium4_time2"