-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.html
More file actions
2320 lines (1937 loc) · 114 KB
/
Copy pathprogram.html
File metadata and controls
2320 lines (1937 loc) · 114 KB
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">
<script type="text/javascript">var NREUMQ = NREUMQ || [];
NREUMQ.push(["mark", "firstbyte", new Date().getTime()]);</script>
<title>Booster Conference 2018 Bergen </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="description" content="The Booster conference is in Bergen, Norway March 14-16 2018. The
conference is for all IT professionals seeking to learn from each other and from experts in their fields"/>
<meta name="keywords" content="booster conference, conference, software, agile, programming, bergen, norway,booster, roots conference, roots, it conference, software conference, methodology, testing, craftsmanship, software development, user experience, tools, project management"/>
<meta name="thumbnail" content="/assets/icons/logo-d18b05f283530d7fb6ea239a88438673701c4f5f9c3d233d9c4e7414f6f3dbf7.svg"/>
<meta property="og:image" content="/assets/icons/logo-d18b05f283530d7fb6ea239a88438673701c4f5f9c3d233d9c4e7414f6f3dbf7.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<link rel="stylesheet" media="all" href="assets/application-e5d6c7b1b4c220a76622d4e1c5b8fbfe7f6d973d0e93947889eed082b4814e06.css" />
<script src="assets/application-b4f5445a847c8f953c0b2e996db40eb411d4ead21ac7a422ab7447cee633e70e.js"></script>
<meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="r95vvsEIQUbG2I9C6MCLvfj4OKqPCPopq/iUxdFz4BVaXE45y/fFVa46ol/QCOHSMz0sGdWwp891dG/sIcqEZg==" />
<script src="assets/tinymce-98c3f8e7e192d17219027827bf093c083e72a0b8e1107d9532519921e9214e9c.js" data-turbolinks-track="reload"></script>
<script src="https://use.typekit.net/aoh3kia.js"></script>
<script>try{Typekit.load({ async: false });}catch(e){}</script>
</head>
<body class="program-index">
<header id="main-header" role="banner">
<nav class="navbar main-nav p-l-1" role="navigation">
<button class="navbar-toggler hidden-sm-up pull-xs-right" type="button" data-toggle="collapse" data-target="#main-nav-collapse">
☰
</button>
<a class="navbar-brand" href="index.html"><img src="assets/icons/booster_logo2018_dato-87bfa11bf2bce013510b319e53e0b865c8f3979706101a92673822eefc2722a4.svg" alt="Booster logo2018 dato" /></a>
<div id="main-nav-collapse" class="collapse navbar-toggleable-xs">
<ul class="nav navbar-nav pull-sm-right">
<li class="nav-item current"><a class="nav-link" href="program.html">Program</a></li>
<li class="nav-item "><a class="nav-link" href="info/speakers.html">Speakers</a></li>
<li class="nav-item "><a class="nav-link" href="info/coc.html">Code of Conduct</a></li>
<li class="nav-item "><a class="nav-link" href="info/about.html">About us</a></li>
<li class="nav-item "><a class="nav-link" href="info/kids.html">Kids</a></li>
<!--li></li-->
<li class="nav-item "><a class="nav-link" href="https://booster2018.herokuapp.com/login">Log in</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</nav>
</header>
<div id="main-content" class="inner" role="main">
<div class="group">
<div class="header-join">
<ul class="nav nav-tabs">
<li role="presentation" class="nav-item">
<a class="nav-link white" id="choose-day1" href="program.html#day1" aria-controls="choose-day1" role="tab">Wed</a>
</li>
<li role="presentation" class="nav-item">
<a class="nav-link white" id="choose-day2" href="program.html#day2" aria-controls="choose-day2" role="tab">Thu</a>
</li>
<li role="presentation" class="nav-item">
<a class="nav-link white" id="choose-day3" href="program.html#day3" aria-controls="choose-day3" role="tab">Fri</a>
</li>
<li role="presentation" class="nav-item">
<a class="nav-link white" id="choose-all" href="program.html#" aria-controls="choose-all" role="tab">All</a>
</li>
</ul>
</div>
<div class="program">
<div id="day1">
<h2>Wednesday</h2>
<div class="program-row">
<section class="period">
<header class="break">
<time class="time">08:00-09:00</time>
<span class="location">Reception area</span>
<span>— Registration</span>
</header>
</section>
</div>
<div class="program-row">
<section class="period">
<header class="slot openspace">
<time class="time">09:00-09:15</time>
<span class="location">Dragefjellet</span>
<span>— Welcome from the organizers</span>
</header>
</section>
</div>
<div class="program-row">
<section class="period">
<header>
<time class="time">09:15-10:15</time>
<span class="location">Dragefjellet</span>
</header>
<a class="single-talk" href="talks/1185.html">
<div class="slot">
<div class="plenary-type talk">
<h4><i class="fa fa-key"></i> Keynote: Artificial Intelligence, Artificial Consciousness and Artificial Morality <i class="fa fa-film"></i></h4>
<span class='author'>Einar Duenger Bohn</span>
<div class='description'><p style="font-weight: 400;">Abstract: In this talk, I will explain the difference between artificial intelligence, artificial consciousness and artificial morality, and in particular discuss the possibility and importance of developing artificial morality.</p></div>
</div>
</div>
</a>
</section>
</div>
<div class='program-row'>
<header class='time follow-me'>10:30-11:15 - Lightning talks</header>
<div class="lightning-sections">
<section class='period lightning-talk'>
<header>
<span class='location'>Dragefjellet</span>
</header>
<div class='slot lightning-talk-slot'>
<a class="single-talk" href="talks/1167.html">
<div class='talk' data-talkid='1167'>
<h4>Dr AI, cure my low back pain! <i class="fa fa-film"></i></h4>
<span class='author'>Tale Prestmo</span>
</div>
</a>
<a class="single-talk" href="talks/1156.html">
<div class='talk' data-talkid='1156'>
<h4>Hardkår hardkoding <i class="fa fa-film"></i></h4>
<span class='author'>Rune Reisegg Jacobsen</span>
</div>
</a>
<a class="single-talk" href="talks/1125.html">
<div class='talk' data-talkid='1125'>
<h4>Topp 5 måter domenedrevet design gjør prosjektet ditt bedre <i class="fa fa-film"></i></h4>
<span class='author'>Anne Landro</span>
</div>
</a>
<a class="single-talk" href="talks/1082.html">
<div class='talk' data-talkid='1082'>
<h4>What is Cloud Native Architecture, and why should I care? <i class="fa fa-film"></i></h4>
<span class='author'>Olve Hansen</span>
</div>
</a>
</div>
</section>
<section class='period lightning-talk'>
<header>
<span class='location'>Teatergaten</span>
</header>
<div class='slot lightning-talk-slot'>
<a class="single-talk" href="talks/1100.html">
<div class='talk' data-talkid='1100'>
<h4>Risikobasert testing - balansegangen mellom hyppige releaser og regresjonstesting <i class="fa fa-film"></i></h4>
<span class='author'>Mari Therese Røli</span>
</div>
</a>
<a class="single-talk" href="talks/943.html">
<div class='talk' data-talkid='943'>
<h4>Testing Gone Wrong <i class="fa fa-film"></i></h4>
<span class='author'>Cecilie Haugstvedt</span>
</div>
</a>
<a class="single-talk" href="talks/1149.html">
<div class='talk' data-talkid='1149'>
<h4>Slipp løs testernes skjulte talenter <i class="fa fa-film"></i></h4>
<span class='author'>Anders Rørvik</span>
</div>
</a>
</div>
</section>
<section class='period lightning-talk'>
<header>
<span class='location'>Sydneshaugen</span>
</header>
<div class='slot lightning-talk-slot'>
<a class="single-talk" href="talks/1166.html">
<div class='talk' data-talkid='1166'>
<h4>Affective computing - what is it and why should I care? <i class="fa fa-film"></i></h4>
<span class='author'>Håkan Silfvernagel</span>
</div>
</a>
<a class="single-talk" href="talks/1051.html">
<div class='talk' data-talkid='1051'>
<h4>New products in established organisations - and why it's so damn hard <i class="fa fa-film"></i></h4>
<span class='author'>Thomas Leira</span>
</div>
</a>
<a class="single-talk" href="talks/928.html">
<div class='talk' data-talkid='928'>
<h4>Micro interactions. Major impact.: a front-end developer + a designer make a killer combo <i class="fa fa-film"></i></h4>
<span class='author'>Esteban Pérez-Hemminger</span>
</div>
</a>
<a class="single-talk" href="talks/1123.html">
<div class='talk' data-talkid='1123'>
<h4>Free machine-readable data from the public sector. Yes, please! <i class="fa fa-film"></i></h4>
<span class='author'>Livar Bergheim</span>
</div>
</a>
</div>
</section>
</div>
</div>
<div class="program-row">
<section class="period">
<header class="break">
<time class="time">11:15-11:30</time>
<span class="location">Downstairs</span>
<span>— Coffee break</span>
</header>
</section>
</div>
<div class='program-row'>
<header class='time follow-me'>11:30-12:15 - Lightning talks</header>
<div class="lightning-sections">
<section class='period lightning-talk'>
<header>
<span class='location'>Dragefjellet</span>
</header>
<div class='slot lightning-talk-slot'>
<a class="single-talk" href="talks/936.html">
<div class='talk' data-talkid='936'>
<h4>Ten reasons my team in Statoil ASA prefers to develop open source software <i class="fa fa-film"></i></h4>
<span class='author'>Pål Drange</span>
</div>
</a>
<a class="single-talk" href="talks/1015.html">
<div class='talk' data-talkid='1015'>
<h4>This is DevOps – everything else is a lie! <i class="fa fa-film"></i></h4>
<span class='author'>Stein Inge Morisbak</span>
</div>
</a>
<a class="single-talk" href="talks/1161.html">
<div class='talk' data-talkid='1161'>
<h4>Deploying in Minutes, No Engineers Necessary <i class="fa fa-film"></i></h4>
<span class='author'>Lei Lopez</span>
</div>
</a>
<a class="single-talk" href="talks/1170.html">
<div class='talk' data-talkid='1170'>
<h4>Trygg release av mikrotjenester med Consumer Driven Contracts <i class="fa fa-film"></i></h4>
<span class='author'>Henrik Stene</span>
</div>
</a>
</div>
</section>
<section class='period lightning-talk'>
<header>
<span class='location'>Teatergaten</span>
</header>
<div class='slot lightning-talk-slot'>
<a class="single-talk" href="talks/959.html">
<div class='talk' data-talkid='959'>
<h4>Cloudpocalypse now? - Katastrofer i skyen <i class="fa fa-film"></i></h4>
<span class='author'>Emil Moltu Staurset</span>
</div>
</a>
<a class="single-talk" href="talks/1152.html">
<div class='talk' data-talkid='1152'>
<h4>Trying to run safely with scissors - security and devops in banking? <i class="fa fa-film"></i></h4>
<span class='author'>Vidar Drageide</span>
</div>
</a>
<a class="single-talk" href="talks/1067.html">
<div class='talk' data-talkid='1067'>
<h4>Sbanken beta – Har det noe for seg? <i class="fa fa-film"></i></h4>
<span class='author'>Lars Hopland Nestås</span>
</div>
</a>
<a class="single-talk" href="talks/1155.html">
<div class='talk' data-talkid='1155'>
<h4>Hold orden i pakkekaoset med SharpKeeper <i class="fa fa-film"></i></h4>
<span class='author'>Peter Aglen</span>
</div>
</a>
</div>
</section>
<section class='period lightning-talk'>
<header>
<span class='location'>Sydneshaugen</span>
</header>
<div class='slot lightning-talk-slot'>
<a class="single-talk" href="talks/1160.html">
<div class='talk' data-talkid='1160'>
<h4>How to be unreasonable <i class="fa fa-film"></i></h4>
<span class='author'>John Morgan</span>
</div>
</a>
<a class="single-talk" href="talks/1105.html">
<div class='talk' data-talkid='1105'>
<h4>Building a company on extreme trust and transparency <i class="fa fa-film"></i></h4>
<span class='author'>Håkon Nilsen</span>
</div>
</a>
<a class="single-talk" href="talks/1143.html">
<div class='talk' data-talkid='1143'>
<h4>The fear: How overcoming the fear of public speaking can be crucial for both you, and the company you work for <i class="fa fa-film"></i></h4>
<span class='author'>Kim Frode Flæthe</span>
</div>
</a>
<a class="single-talk" href="talks/1046.html">
<div class='talk' data-talkid='1046'>
<h4>Walk the talk - a key to better teamwork <i class="fa fa-film"></i></h4>
<span class='author'>Merete Munch Lange</span>
</div>
</a>
</div>
</section>
</div>
</div>
<div class="program-row">
<section class="period">
<header class="break">
<time class="time">12:15-13:30</time>
<span class="location">Restaurant</span>
<span>— Lunch</span>
</header>
</section>
</div>
<div class='program-row'>
<header class='time follow-me'>13:30-15:00 - Workshops</header>
<div class="workshop-slot">
<section class='period program-column'>
<header>
<span class='location'> Galgebakken</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1154.html">
<div class='talk' data-talkid='1154'>
<h5>Introduction to Machine Learning for Beginners
<span class="parts">
</span>
</h5>
<span class='author'>Oliver Zeigermann and Julia Dellnitz</span>
<div class='description'><div>Andrej Karpathy, Director of AI at Tesla, coined the term software</div>
<div>2.0. He envisions machine learning to become an integrated part of the</div>
<div>the software development cycle, partially replacing traditional</div>
<div>approaches to software development. Following that approach developers</div>
<div>and all the people interested in software development can benefit from</div>
<div>understanding the basis of machine learning.</div>
<div> </div>
<div>In this workshop we will introduce you to machine learning leaving out</div>
<div>most of the math. Some exercises will require a laptop or tablet with</div>
<div>Internet access, some will just be on paper. We will also</div>
<div>present you with some scenarios from real businesses that show you</div>
<div>where and how to apply machine learning. You will learn about the</div>
<div>basic ideas of machine learning what deep learning is all about.</div>
<div> </div>
<div>Previous Knowledge: just interest in the basic ideas of machine learning</div>
<div>Requirements: laptop or tablet are advisable</div>
<div><img src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" />Target audience: everyone</div>
<div>Objective: You understand how machine learning works, in what areas it</div>
<div>can be more powerful than traditional programming and get some</div>
<div>inspiration where you could use it</div></div>
<span class='location-small'>Galgebakken</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Tårnplass</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1153.html">
<div class='talk' data-talkid='1153'>
<h5>Creating technology-agnostic styleguides with Pattern Lab
<span class="parts">
</span>
</h5>
<span class='author'>Gry Nagel and Eivind Mjelde</span>
<div class='description'><p class="p1">One of the more challenging aspects of being a front-end developer is knowing how to split up a design into reusable components. Too often you end up writing redundant code because you did not realise that a similar component had already been made within the project, or because you failed to realise that two components could be built upon the same foundation.</p>
<p class="p2"> </p>
<p class="p1">Creating a front-end pattern library (commonly also referred to as style guide, UI library, component library, design system etc.) is one measure we can take to organise the implementation of a design, and help keep our code as DRY as possible by embracing a more modular way to interpret a design.</p>
<p class="p2"> </p>
<p class="p1">Pattern Lab (<a href="http://patternlab.io/"><span class="s1">http://patternlab.io/</span></a>) is a framework for creating pattern libraries built upon the concept of atomic design methodology (<a href="http://atomicdesign.bradfrost.com/"><span class="s1">http://atomicdesign.bradfrost.com/</span></a>). This (relatively) technology-agnostic framework allows you to quickly set up a system to easily organise, edit, document and share your project’s design patterns. Pattern Lab has also become quite extensible, allowing developers to create plugins, theming and setups to customise the look and functionality of the existing framework.</p>
<p class="p2"> </p>
<p class="p1">This workshop will cover the following topics:</p>
<ul class="ul1">
<li class="li1">Quick introduction to the concepts behind atomic design in relation to the Pattern Lab framework</li>
<li class="li1">Setting up and configuring Pattern Lab using Node and Gulp.</li>
<li class="li1">Going through a couple of exercises showing how to define, use and modify patterns (design components) to mock up finished page templates for a website.</li>
</ul></div>
<span class='location-small'>Tårnplass</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Dragefjellet</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1179.html">
<div class='talk' data-talkid='1179'>
<h5>Kubernetes 101
<span class="parts">
</span>
</h5>
<span class='author'>Bridget Kromhout</span>
<div class='description'><p>It is a truth universally acknowledged that a techie in possession of any production code whatsoever must be in want of a container orchestration platform. What’s up for debate, according to noted thought leader Jane Austen, is how many pizzas the team is going to eat.</p>
<p>Let’s explore how to create and operate a Kubernetes cluster in order to answer this crucial question. If you’re into dev or ops or some portmanteau thereof, this is relevant to your interests. We’ll be following an Azure variant based on the open-source k8s training at <a href="http://container.training/">http://container.training/</a>, as well as trying out AKS (Azure Container Service); there are takeaways no matter which public or private cloud you use.</p>
<p>As our team grows, we’re going to need to scale our k8s cluster, deploying and configuring our pizza delivery app. We’ll deal with the consequences of state (you know, where your customers and money live) and carry out service discovery between our deliciously independent microservices. We’ll level up on k8s (and pizza) together. </p></div>
<span class='location-small'>Dragefjellet</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Muséplass</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1022.html">
<div class='talk' data-talkid='1022'>
<h5>Animating SVG
<span class="parts">
</span>
</h5>
<span class='author'>Catriona MacKenzie</span>
<div class='description'><p><span style="font-weight: 400;">Animation can work wonders for the look and feel of a website. Used carefully it can enhance the user experience by providing context, focus and feedback to users, as well as making mundane interactions a little more fun. When combined with the flexibility of SVG, developers can easily create animated graphics that help their users and add personality to their websites using just a few lines of code.</span></p>
<p>This workshop is aimed at absolute beginners who would like to learn how to animate images on the web. A basic knowledge of CSS and JavaScript is helpful but not required as everything you'll need to know will be explained during the workshop. The main thing is to have a go, and have fun!</p>
<p><span style="font-weight: 400;">During the workshop we will cover:</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">The basics of SVG</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Animating SVG using CSS</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Animating SVG using GreenSock’s JavaScript animation library</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Tips for optimizing performance</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Tips for browser compatibility</span></li>
</ul>
<p><span style="font-weight: 400;">By the end of the workshop you will have created your very own animation you can use to impress and entertain your friends and colleagues.</span></p>
<p>Link to slides: http://slides.com/catmackenzie/animating-svg?token=LIfmFA5X</p></div>
<span class='location-small'>Muséplass</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Teatergaten</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1025.html">
<div class='talk' data-talkid='1025'>
<h5>Finding planets
<span class="parts">
</span>
</h5>
<span class='author'>Daan van Berkel</span>
<div class='description'><div class="talk__abstract">
<p>How are exo-planets found? With software of course!</p>
<p>Exo-planets, planets that orbits distant stars, are a scientific marvel that appeal to our adventurous mind. In artist’s impressions they are portrayed as beautiful alien worlds dancing around their host star. The real world is not so visual but far more interesting.</p>
<p>During this workshop, you will learn the tricks and develop the tools with which you can analyse real-<em>outer</em>-world data in search of exo-planets. You will get your amateur astronomer merit badge when you find the hidden worlds.</p>
</div></div>
<span class='location-small'>Teatergaten</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Sydneshaugen</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1130.html">
<div class='talk' data-talkid='1130'>
<h5>Design Thinking
<span class="parts">
</span>
</h5>
<span class='author'>Hulda Seterås Fadnes</span>
<div class='description'><p>As technology moves forward in a rapidly increasing pace, new expectations on tailored products and services are arising. At the same time change seems to be the new constant and you need to innovate to still be in the game a few years up the road.</p>
<p>Design Thinking is a mindset and a method of human centered innovation that meet the challenges of tomorrow. In this workshop we will dive in and get our hands dirty, getting a taste of what design thinking is all about. </p></div>
<span class='location-small'>Sydneshaugen</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Hødden</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1183.html">
<div class='talk' data-talkid='1183'>
<h5> Threat modeling
<span class="parts">
</span>
</h5>
<span class='author'>Erlend Oftedal</span>
<div class='description'><div>
<div>Security companies estimate that 50% of security issues are bad system design. Such weaknesses cannot be found by automated tools. Threat modeling is the process of analysing your system and try to identify weaknesses in design and missing security controls. </div>
</div>
<div>This workshop will focus on software centric threat modeling. We will start with an introduction to threat modeling, and then put the theory into practice on a system.</div>
<div>The participants will learn how to get started with threat modeling and what the benefits and limitations are.</div>
<div> </div></div>
<span class='location-small'>Hødden</span>
</div>
</a>
</div>
</section>
</div>
</div>
<div class="program-row">
<section class="period">
<header class="break">
<time class="time">15:00-15:15</time>
<span class="location">Downstairs</span>
<span>— Coffee break</span>
</header>
</section>
</div>
<div class='program-row'>
<header class='time follow-me'>15:15-16:45 - Workshops</header>
<div class="workshop-slot">
<section class='period program-column'>
<header>
<span class='location'> Galgebakken</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1154.html">
<div class='talk' data-talkid='1154'>
<h5>Introduction to Machine Learning for Beginners
<span class="parts">
(cont.)
</span>
</h5>
<span class='author'>Oliver Zeigermann and Julia Dellnitz</span>
<div class='description'><div>Andrej Karpathy, Director of AI at Tesla, coined the term software</div>
<div>2.0. He envisions machine learning to become an integrated part of the</div>
<div>the software development cycle, partially replacing traditional</div>
<div>approaches to software development. Following that approach developers</div>
<div>and all the people interested in software development can benefit from</div>
<div>understanding the basis of machine learning.</div>
<div> </div>
<div>In this workshop we will introduce you to machine learning leaving out</div>
<div>most of the math. Some exercises will require a laptop or tablet with</div>
<div>Internet access, some will just be on paper. We will also</div>
<div>present you with some scenarios from real businesses that show you</div>
<div>where and how to apply machine learning. You will learn about the</div>
<div>basic ideas of machine learning what deep learning is all about.</div>
<div> </div>
<div>Previous Knowledge: just interest in the basic ideas of machine learning</div>
<div>Requirements: laptop or tablet are advisable</div>
<div><img src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" />Target audience: everyone</div>
<div>Objective: You understand how machine learning works, in what areas it</div>
<div>can be more powerful than traditional programming and get some</div>
<div>inspiration where you could use it</div></div>
<span class='location-small'>Galgebakken</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Tårnplass</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/995.html">
<div class='talk' data-talkid='995'>
<h5>So you think you can frontend?
<span class="parts">
</span>
</h5>
<span class='author'>Johannes Giske and Håvard Olsen</span>
<div class='description'><p><span class="md-line md-end-block md-focus"><span class="">As a developer in 2018, you make amazing and impressive solutions, but what happens when we strip away all those "fancy pants" tools & frameworks that you love so much? Can you make a website without emmet, sass/less, and without watching your own work along the way? </span></span></p>
<p><span class="md-line md-end-block md-focus"><span class="">We are hosting a "Coding in the dark" competition with a small twist. The competition involves creating a website using a simple editor and a desired endresult. Your task is to make a website based on this without ever getting to test it or see your progress along the way. <br /></span></span></p>
<p><span class="md-line md-end-block md-focus"><span class="">The winner will be announced at the end of the workshop, and in addition to fame & glory, will receive an amazing price!</span></span></p></div>
<span class='location-small'>Tårnplass</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Dragefjellet</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1179.html">
<div class='talk' data-talkid='1179'>
<h5>Kubernetes 101
<span class="parts">
(cont.)
</span>
</h5>
<span class='author'>Bridget Kromhout</span>
<div class='description'><p>It is a truth universally acknowledged that a techie in possession of any production code whatsoever must be in want of a container orchestration platform. What’s up for debate, according to noted thought leader Jane Austen, is how many pizzas the team is going to eat.</p>
<p>Let’s explore how to create and operate a Kubernetes cluster in order to answer this crucial question. If you’re into dev or ops or some portmanteau thereof, this is relevant to your interests. We’ll be following an Azure variant based on the open-source k8s training at <a href="http://container.training/">http://container.training/</a>, as well as trying out AKS (Azure Container Service); there are takeaways no matter which public or private cloud you use.</p>
<p>As our team grows, we’re going to need to scale our k8s cluster, deploying and configuring our pizza delivery app. We’ll deal with the consequences of state (you know, where your customers and money live) and carry out service discovery between our deliciously independent microservices. We’ll level up on k8s (and pizza) together. </p></div>
<span class='location-small'>Dragefjellet</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Muséplass</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1022.html">
<div class='talk' data-talkid='1022'>
<h5>Animating SVG
<span class="parts">
(cont.)
</span>
</h5>
<span class='author'>Catriona MacKenzie</span>
<div class='description'><p><span style="font-weight: 400;">Animation can work wonders for the look and feel of a website. Used carefully it can enhance the user experience by providing context, focus and feedback to users, as well as making mundane interactions a little more fun. When combined with the flexibility of SVG, developers can easily create animated graphics that help their users and add personality to their websites using just a few lines of code.</span></p>
<p>This workshop is aimed at absolute beginners who would like to learn how to animate images on the web. A basic knowledge of CSS and JavaScript is helpful but not required as everything you'll need to know will be explained during the workshop. The main thing is to have a go, and have fun!</p>
<p><span style="font-weight: 400;">During the workshop we will cover:</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">The basics of SVG</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Animating SVG using CSS</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Animating SVG using GreenSock’s JavaScript animation library</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Tips for optimizing performance</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Tips for browser compatibility</span></li>
</ul>
<p><span style="font-weight: 400;">By the end of the workshop you will have created your very own animation you can use to impress and entertain your friends and colleagues.</span></p>
<p>Link to slides: http://slides.com/catmackenzie/animating-svg?token=LIfmFA5X</p></div>
<span class='location-small'>Muséplass</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Teatergaten</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1025.html">
<div class='talk' data-talkid='1025'>
<h5>Finding planets
<span class="parts">
(cont.)
</span>
</h5>
<span class='author'>Daan van Berkel</span>
<div class='description'><div class="talk__abstract">
<p>How are exo-planets found? With software of course!</p>
<p>Exo-planets, planets that orbits distant stars, are a scientific marvel that appeal to our adventurous mind. In artist’s impressions they are portrayed as beautiful alien worlds dancing around their host star. The real world is not so visual but far more interesting.</p>
<p>During this workshop, you will learn the tricks and develop the tools with which you can analyse real-<em>outer</em>-world data in search of exo-planets. You will get your amateur astronomer merit badge when you find the hidden worlds.</p>
</div></div>
<span class='location-small'>Teatergaten</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Sydneshaugen</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1130.html">
<div class='talk' data-talkid='1130'>
<h5>Design Thinking
<span class="parts">
(cont.)
</span>
</h5>
<span class='author'>Hulda Seterås Fadnes</span>
<div class='description'><p>As technology moves forward in a rapidly increasing pace, new expectations on tailored products and services are arising. At the same time change seems to be the new constant and you need to innovate to still be in the game a few years up the road.</p>
<p>Design Thinking is a mindset and a method of human centered innovation that meet the challenges of tomorrow. In this workshop we will dive in and get our hands dirty, getting a taste of what design thinking is all about. </p></div>
<span class='location-small'>Sydneshaugen</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Hødden</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1183.html">
<div class='talk' data-talkid='1183'>
<h5> Threat modeling
<span class="parts">
(cont.)
</span>
</h5>
<span class='author'>Erlend Oftedal</span>
<div class='description'><div>
<div>Security companies estimate that 50% of security issues are bad system design. Such weaknesses cannot be found by automated tools. Threat modeling is the process of analysing your system and try to identify weaknesses in design and missing security controls. </div>
</div>
<div>This workshop will focus on software centric threat modeling. We will start with an introduction to threat modeling, and then put the theory into practice on a system.</div>
<div>The participants will learn how to get started with threat modeling and what the benefits and limitations are.</div>
<div> </div></div>
<span class='location-small'>Hødden</span>
</div>
</a>
</div>
</section>
</div>
</div>
<div class="program-row">
<section class="period">
<header class="break">
<time class="time">19:00-00:00</time>
<span class="location">Galleri Nygaten (<a target="_new" href="https://goo.gl/maps/Ngp2CXdQB5m">map</a>
)</span>
<span>— Conference dinner</span>
</header>
</section>
</div>
</div>
<div id="day2">
<h2>Thursday</h2>
<div class="program-row">
<section class="period">
<header class="break">
<time class="time">08:00-09:00</time>
<span class="location">Reception area</span>
<span>— Registration</span>
</header>
</section>
</div>
<div class='program-row'>
<header class='time follow-me'>09:00-10:30 - Workshops</header>
<div class="workshop-slot">
<section class='period program-column'>
<header>
<span class='location'> Galgebakken</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1032.html">
<div class='talk' data-talkid='1032'>
<h5>Hands-on: Getting started with Kotlin
<span class="parts">
</span>
</h5>
<span class='author'>Torstein Skulbru</span>
<div class='description'><p>Heard about Kotlin? Or maybe you just havent dared using it yet?</p>
<p>In this workshop you will learn the basics in Kotlin syntax, learn how its interop with Java, and then jump into some hands-on kotlin coding where you will get the feel for the power of Kotlin. After this workshop you should be set to go out and start using Kotlin in your existing Java applications today!</p></div>
<span class='location-small'>Galgebakken</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Tårnplass</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/938.html">
<div class='talk' data-talkid='938'>
<h5>Learn how to build a mini economy on the blockchain by using Ethereum and Solidity!
<span class="parts">
</span>
</h5>
<span class='author'>Simen Skoglund and Sigurd Lund</span>
<div class='description'><p>Blockchain has existed since Bitcoin was launched in 2009, are now more hyped than ever before. In this workshop we will show you how to write and run code on the Ethereum blockchain.</p>
<p>The goal is that within four hours we will develop and deploy a mini economy system where we generate coins that we can send between verified users with smart contracts on Ethereum.</p>
<p>The technologies you will use in this workshop will be the Ethereum network, the programming language Solidity, the framework Truffle, and the Ethereum browser Mist.</p>
<p>Tests are written to test the functionality to be implemented, so if you like to see the tests go from red to green, this is the workshop for you!</p></div>
<span class='location-small'>Tårnplass</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Dragefjellet</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1180.html">
<div class='talk' data-talkid='1180'>
<h5>Code Poetry 2.0
<span class="parts">
</span>
</h5>
<span class='author'>Felienne .</span>
<div class='description'><div class="gmail_default">Everyone that has ever witnessed a young child that has just learned to read, knows they do not read like adults. Young children read aloud, not just to demonstrate their newly acquired skill, but also because they simply cannot do it in a different fashion yet. Most children take years to learn to read silently, during which they go through a number of phases including whispering and lip movement. Several studies have shown that, for novice readers, reading aloud supports comprehension. This should not come as a surprise, even expert readers on their native language sometime fall back to this behavior when reading text that is very difficult, or written in a foreign language they do not fully master yet. </div>
<div class="gmail_default"> </div>
<div class="gmail_default">And yet.... in programming and programming education, we do not spend any time on how to vocalise code. In this three hour workshop, we will share some scientific results on the power of vocalization and then we dive into vocalization practise of different programming languages and cultures.</div></div>
<span class='location-small'>Dragefjellet</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Muséplass</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1111.html">
<div class='talk' data-talkid='1111'>
<h5>Serverless with Azure Functions and Contana Analytics
<span class="parts">
</span>
</h5>
<span class='author'>Damian Flynn</span>
<div class='description'><p>Azure Functions enables you to write serverless code to handle events at scale, with minimal overhead and cost. In this workshop you'll learn what Azure Functions is intended for, why you might want to use it.</p>
<p>First, you'll learn how to work with C# and node functions. N</p>
<p>Next, you'll use many different triggers and binding types supported by Azure functions including monitoring queues.</p>
<p>Then, you'll explore how to work with blob storage, sending emails, and how to develop in Visual Studio Code. Finally, you'll discover how to automate deployments from GIT as well as how to debug and monitor our functions.</p></div>
<span class='location-small'>Muséplass</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Teatergaten</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/991.html">
<div class='talk' data-talkid='991'>
<h5>Dealing with disempowerment
<span class="parts">
</span>
</h5>
<span class='author'>Mark Dalgarno</span>
<div class='description'><p><span style="font-weight: 400;">We know that people who are empowered are more creative, more productive and more satisfied with their work and so produce better results for their organisations. So why is there so much disempowerment in the workplace?</span></p>
<p><span style="font-weight: 400;">In this workshop we’ll share our experiences of disempowerment, invent even more ways to disempower our teams and colleagues and discuss how we might identify disempowerment when it’s happening to others.</span></p>
<p><span style="font-weight: 400;">We’ll then work together to figure out what could be done differently to move from a disempowered organisation to an empowered one.</span></p>
<p><span style="font-weight: 400;">Participants will take away:</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">Insights into what disempowerment looks like</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Options for tackling disempowerment</span></li>
</ul></div>
<span class='location-small'>Teatergaten</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Strangehagen</span>
</header>
<div class='slot'>
<a class="single-talk" href="talks/1181.html">
<div class='talk' data-talkid='1181'>
<h5>Processing streams in Kafka with the Streams API and KSQL
<span class="parts">
</span>
</h5>
<span class='author'>Tim Berglund</span>
<div class='description'><p>Apache Kafka is a de facto standard streaming data processing platform, being widely deployed as a messaging system, and having a robust data integration framework (Kafka Connect) and stream processing API (Kafka Streams) to meet the needs that common attend real-time message processing. But there’s more!</p>
<p>Kafka now offers KSQL, a declarative, SQL-like stream processing language that lets you define powerful stream-processing applications easily. What once took some moderately sophisticated Java code can now be done at the command line with a familiar and eminently approachable syntax. Come to this workshop for a detailed overview of KSQL with live coding on live streaming data.</p></div>
<span class='location-small'>Strangehagen</span>
</div>
</a>
</div>
</section>
<section class='period program-column'>
<header>
<span class='location'> Hødden</span>
</header>