forked from gdg-x/zeppelin-grunt
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
16044 lines (1406 loc) · 580 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><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"><meta name=description content="Mobile Era is Norway's first conference for mobile developers, it will be held November 3rd - 4th in Oslo and will feature speakers from all over the world talking about Android, iOS and cross-platform technologies."><meta name=keywords content="event, mobileera, mobile, oslo, programming, android, ios, developers, hybrid"><meta name=google-site-verification content=googlee83bd89684c78156.html><meta name=theme-color content=#00dbff><link rel=canonical href=https://2016.mobileera.rocks><link rel=manifest href=/manifest.json><meta name=twitter:card content=summary><meta name=twitter:site content=@MobileEraConf><meta name=twitter:title content="Mobile Era 2016 - Norway's first conference for mobile technologists"><meta name=twitter:description content="Mobile Era is Norway's first conference for mobile developers, it will be held November 3rd - 4th in Oslo and will feature speakers from all over the world talking about Android, iOS and cross-platform technologies."><meta name=twitter:image:src content=https://2016.mobileera.rocks/img/seo/sharing-twitter.png><meta property=og:title content="Mobile Era 2016 - Norway's first conference for mobile technologists"><meta property=og:site_name content="Mobile Era 2016 - Norway's first conference for mobile technologists"><meta property=og:type content=website><meta property=og:url content=https://2016.mobileera.rocks><meta property=og:image content=https://2016.mobileera.rocks/img/seo/sharing-facebook.png><meta property=og:description content="Mobile Era is Norway's first conference for mobile developers, it will be held November 3rd - 4th in Oslo and will feature speakers from all over the world talking about Android, iOS and cross-platform technologies."><title>Mobile Era 2016 - Norway's first conference for mobile technologists</title><link rel="shortcut icon" href=/img/favicons/favicon.ico><link rel=apple-touch-icon sizes=152x152 href=/img/favicons/apple-touch-icon-152x152.png><link rel=apple-touch-icon sizes=144x144 href=/img/favicons/apple-touch-icon-144x144.png><link rel=apple-touch-icon sizes=120x120 href=/img/favicons/apple-touch-icon-120x120.png><link rel=apple-touch-icon sizes=114x114 href=/img/favicons/apple-touch-icon-114x114.png><link rel=apple-touch-icon sizes=76x76 href=/img/favicons/apple-touch-icon-76x76.png><link rel=apple-touch-icon sizes=72x72 href=/img/favicons/apple-touch-icon-72x72.png><link rel=apple-touch-icon sizes=60x60 href=/img/favicons/apple-touch-icon-60x60.png><link rel=apple-touch-icon sizes=57x57 href=/img/favicons/apple-touch-icon-57x57.png><link rel=icon type=image/png href=/img/favicons/favicon-196x196.png><link rel=icon type=image/png href=/img/favicons/favicon-160x160.png><link rel=icon type=image/png href=/img/favicons/favicon-96x96.png><link rel=icon type=image/png href=/img/favicons/favicon-32x32.png><link rel=icon type=image/png href=/img/favicons/favicon-16x16.png><meta name=msapplication-TileColor content=#2b5797><meta name=msapplication-TileImage content=/img/favicons/mstile-144x144.png><meta name=msapplication-config content=/img/favicons/browserconfig.xml><style type=text/css>.btn,.caret{vertical-align:middle}body{margin:0}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}header,nav,section{display:block}a{background-color:transparent}h1{margin:.67em 0}svg:not(:root){overflow:hidden}button{color:inherit;font:inherit;margin:0}button{overflow:visible}button{text-transform:none}button{-webkit-appearance:button}button::-moz-focus-inner{border:0;padding:0}.btn{background-image:none}body{background-color:#fff}*,:after,:before{box-sizing:border-box}body{line-height:1.428571429;color:#333}button{font-family:inherit;font-size:inherit;line-height:inherit}a{text-decoration:none}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1{margin-top:20px;margin-bottom:10px}h1{font-size:36px}p{margin:0 0 10px}.btn-primary,nav li a{text-transform:uppercase}ul{margin-top:0}ul ul{margin-bottom:0}ul{margin-bottom:10px}.dropdown-menu>li>a{clear:both}.dropdown{position:relative}.btn{display:inline-block;margin-bottom:0;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.428571429;border-radius:4px}.btn-primary{background-color:#337ab7}.caret{display:inline-block;width:0;height:0;margin-left:2px;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu>li>a{padding:3px 20px;line-height:1.428571429;display:block;white-space:nowrap}.dropdown-menu>li>a{font-weight:400;color:#333}.overlay{right:0;bottom:0;left:0}.jumbotron{padding:30px 15px;margin-bottom:30px;background-color:#eee}.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.waves-effect,section{overflow:hidden}.pull-right{float:right!important}.visible-xs{display:none!important}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px)and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px)and (max-width:1199px){.hidden-md{display:none!important}}.waves-effect{position:relative;display:inline-block}.content-wrapper{position:relative;height:100%}.waves-button{-ms-transform:translateZ(0);transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,#fff 100%,#000 100%)}.waves-button,.waves-button:visited{white-space:nowrap;vertical-align:middle;border:none;outline:0;color:inherit;background-color:transparent;font-size:1em;line-height:1em;text-align:center;text-decoration:none;z-index:1}.waves-button{padding:.85em 1.1em;border-radius:.2em}.waves-float{-webkit-mask-image:none;box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12)}.content-wrapper{z-index:1}.image-section{color:#fff;font-weight:100;background-repeat:no-repeat;background-position:center center!important;background-size:cover!important}.overlay{position:absolute;top:0}.st-container,.st-content,.st-pusher,section{position:relative}.overlay.white-solid{background:rgba(255,255,255,.9)}.btn{font-weight:500}.btn-primary{color:#fff!important;border:0;background:#00afcd!important}h1{display:block}body,html,p{font-size:15px;font-weight:300}.st-container,.st-content,.st-pusher,body,html{height:100%}body,html{font-family:Roboto,sans-serif;width:100%;background:#fff;text-shadow:1px 1px 1px rgba(0,0,0,.004);text-rendering:optimizeLegibility!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}section{min-height:350px;padding-top:50px;padding-bottom:60px;text-align:center}p{line-height:23px}a{color:#0091a9}h1{font-weight:100}h1{font-size:76.88px}@media (max-width:767px){section{padding-top:20px;padding-bottom:40px}h1{font-size:46.13px}}.st-pusher{z-index:99;left:0}.st-pusher::after{position:fixed;top:0;right:0}.st-pusher::after{width:0;height:0;content:'';opacity:0;background:rgba(0,0,0,.2)}.top-header{position:fixed;z-index:500;width:100%;padding:0 20px}@media (min-width:768px)and (max-width:991px){.top-header{padding:13px 0 0 34px}}nav li,nav ul{padding:0}.top-header .overlay{opacity:0}.logo-header{display:block;-ms-transform:translateY(20px);transform:translateY(20px)}.logo-header .logo,nav li{display:inline-block;vertical-align:middle}@media (max-width:767px){.logo-header{-ms-transform:translateX(-45px);transform:translateX(-45px)}}.logo-header .logo{float:left;width:185px;height:60px;margin-left:10px}.logo-navbar{width:185px;height:60px;margin:8px 20px 0 0;vertical-align:middle}@media (max-width:767px){.logo-header .logo{-ms-transform:scale(.8);transform:scale(.8)}nav{position:fixed;z-index:100;top:0;left:0;visibility:visible;overflow:auto;width:256px;height:100%;background:#fff;-ms-transform:translateX(-100%);transform:translateX(-100%)}}nav ul{float:left;margin:0;list-style:none;text-align:left;-ms-transform:translateY(40px);transform:translateY(40px)}@media (max-width:767px){nav ul{line-height:20px;width:95%;margin:20px 0 0 5px;-ms-transform:translateY(0);transform:translateY(0)}}nav li a{padding:3px 8px;border-radius:3px;font-size:15px;color:#fff;font-weight:700;text-shadow:none;margin-right:5px}nav li a.current{text-decoration:none;background-color:rgba(0,0,0,.2)}@media (max-width:767px){nav li{display:block}nav li a{font-size:16px;display:block;padding:13px 15px;text-transform:none;outline:0;color:rgba(0,0,0,.5)}nav li a.current{color:#00afcd;background:0 0}}nav .dropdown-menu{top:0;border-radius:.2em}nav .dropdown-menu li{width:100%;padding:0}nav .dropdown-menu a{padding:10px 20px;outline:0}@media (max-width:767px){nav .dropdown-menu a{white-space:initial}}nav .caret{margin-top:-2px}.right-nav-button{margin:11px 11px 0 0;opacity:1;display:block;overflow:inherit}.right-nav-button:nth-of-type(1){margin-right:65px}.right-nav-button.right-nav-button-hidden{opacity:0;-ms-transform:translateY(-50px);transform:translateY(-50px)}.icon-menu{color:#e6e6e6}.menu-trigger{float:right;position:relative;display:-ms-flexbox;display:flex;top:10px;background-color:#fff;border:none;border-radius:5px;height:34px}.menu-trigger>span{color:#8b8b8b;font-weight:300;font-size:18px}.bottom-navlinks{position:absolute;bottom:26px;z-index:-1}.logo{background-image:url(../dist/img/sprites/logos.svg);background-repeat:no-repeat;background-size:cover}.logo.logo-dark{background-position:0 -1px}.logo.logo-light{background-position:0 -127px}.icon{display:inline-block;width:16px;height:16px;fill:#8b8b8b}.top-section{position:relative;min-height:100px;padding-top:0;background:#00afcd}.jumbotron{margin:50px 0 0;color:#fff;background:0}@media (max-width:767px){.top-section{min-height:200px;padding:0}.jumbotron{left:13px;margin-top:100px;padding-left:0;padding-bottom:5px}}.top-section-hero{width:100%;height:100%;padding-top:0}.top-section-hero .jumbotron{position:relative;top:50%;margin:0;left:0;-ms-transform:translateY(-60%);transform:translateY(-60%)}@media (max-width:767px){.top-section-hero .jumbotron{margin:0;padding:0}}.top-section-hero .jumbotron p{font-size:30px;font-weight:700;margin-bottom:15px}.top-section-hero .jumbotron .btn{margin:0 3px;overflow:inherit}.top-section-hero .jumbotron .btn.btn-primary{background-color:#fff!important;color:#00afcd!important;margin:.3rem}.typeout-fallback{display:none}.icon-arrow-down{width:32px;height:32px;fill:#e6e6e6}@media (max-width:767px){.typeout-fallback{display:inline-block}.icon-arrow-down{width:24px;height:24px}}</style><link href=/css/main.css rel=preload as=style onload="this.rel="stylesheet""><noscript><link href="/css/main.css" rel="stylesheet"></noscript><script>!function(e){"use strict";var t=function(t,n,r){function o(e){return i.body?e():void setTimeout(function(){o(e)})}function a(){d.addEventListener&&d.removeEventListener("load",a),d.media=r||"all"}var l,i=e.document,d=i.createElement("link");if(n)l=n;else{var s=(i.body||i.getElementsByTagName("head")[0]).childNodes;l=s[s.length-1]}var u=i.styleSheets;d.rel="stylesheet",d.href=t,d.media="only x",o(function(){l.parentNode.insertBefore(d,n?l:l.nextSibling)});var f=function(e){for(var t=d.href,n=u.length;n--;)if(u[n].href===t)return e();setTimeout(function(){f(e)})};return d.addEventListener&&d.addEventListener("load",a),d.onloadcssdefined=f,f(a),d};"undefined"!=typeof exports?exports.loadCSS=t:e.loadCSS=t}("undefined"!=typeof global?global:this),function(e){if(e.loadCSS){var t=loadCSS.relpreload={};if(t.support=function(){try{return e.document.createElement("link").relList.supports("preload")}catch(e){return!1}},t.poly=function(){for(var t=e.document.getElementsByTagName("link"),n=0;n<t.length;n++){var r=t[n];"preload"===r.rel&&"style"===r.getAttribute("as")&&(e.loadCSS(r.href,r,r.getAttribute("media")),r.rel=null)}},!t.support()){t.poly();var n=e.setInterval(t.poly,300);e.addEventListener&&e.addEventListener("load",function(){t.poly(),e.clearInterval(n)}),e.attachEvent&&e.attachEvent("onload",function(){e.clearInterval(n)})}}}(this);</script><!--[if lt IE 9]><script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script><![endif]--><script>!function(e,a,t,n,c,o,s){e.GoogleAnalyticsObject=c,e[c]=e[c]||function(){(e[c].q=e[c].q||[]).push(arguments)},e[c].l=1*new Date,o=a.createElement(t),s=a.getElementsByTagName(t)[0],o.async=1,o.src=n,s.parentNode.insertBefore(o,s)}(window,document,"script","//www.google-analytics.com/analytics.js","ga"),ga("create","UA-70868154-3","auto"),ga("send","pageview");</script></head><body><div id=st-container class="st-container disable-scrolling"><div class=st-pusher><div class=st-content><section id=top-section-hero class="top-section-hero top-section image-section" style=background-image:url(/img/sections-background/hero.jpg)><header id=top-header class=top-header><div class="overlay white-solid"></div><button id=menu-trigger class="menu-trigger hidden-sm hidden-md hidden-lg"><span class=icon-menu><span class=sr-only>Show</span>Menu</span></button> <a href="/" id=logo-header class=logo-header><span class=sr-only>Go to main page, mobile era logo</span><div class="logo logo-light"></div></a><nav class="st-menu st-effect" id=menu><div class="logo-navbar logo logo-dark visible-xs"></div><ul><li><a class=current href="/">Home</a></li><li><a href="/schedule/">Program</a></li><li><a href="/workshops/">Workshops</a></li><li><a href="/speakers/">Speakers</a></li><li><a href="/sponsors/">Sponsors</a></li><li><a href="/logistics/">Logistics</a></li><li><a href="/team/">Team</a></li><li class=dropdown><a href=# id=Social7 class=dropdown-toggle data-toggle=dropdown aria-expanded=true title="Open dropdown">Social <span class=caret></span></a><ul class=dropdown-menu role=menu aria-labelledby=Social7><li role=presentation><a target=_blank href=https://twitter.com/mobileeraconf role=menuitem tabindex=-1>Twitter: @mobileeraconf</a></li><li role=presentation><a target=_blank href=https://facebook.com/mobileeraconf role=menuitem tabindex=-1>Facebook: Mobile Era Conf</a></li><li role=presentation><a target=_blank href="https://linkedin.com/company/mobile-era-conference/" role=menuitem tabindex=-1>LinkedIn: Mobile Era Conference</a></li></ul></li></ul><ul id=bottom-navlinks class="bottom-navlinks visible-xs"><li><a href=https://mobileera.rocks target=_blank>Mobile Era 2017</a></li><li><a href="https://vimeo.com/mobileera/" target=_blank>Videos 2016</a></li></ul><a href=https://mobileera.rocks class="right-nav-button right-nav-button-hidden btn btn-primary waves-effect waves-button waves-light waves-float pull-right hidden-xs hidden-sm" target=_blank>Mobile Era 2017</a> <a href="https://vimeo.com/mobileera/" class="right-nav-button right-nav-button-hidden btn btn-primary waves-effect waves-button waves-light waves-float pull-right hidden-xs hidden-sm" target=_blank>Videos 2016</a></nav></header><div class=content-wrapper><div class=jumbotron><h1>Mobile Era 2016 <span id=typeout-text class=hidden-xs></span><span class=typeout-fallback>Thank you!</span></h1><p>November 3rd-4th</p><a href=https://mobileera.rocks class="btn btn-primary waves-effect waves-button waves-light waves-float" target=_blank>Mobile Era 2017</a> <a href="https://vimeo.com/mobileera/" class="btn btn-primary waves-effect waves-button waves-light waves-float" target=_blank>Check Mobile Era 2016 Videos</a></div><a href=#about class=explore><svg class="icon icon-arrow-down" viewbox="0 0 32 32"><use xlink:href="/img/sprites/sprites.svg#icon-arrow-down"/></svg></a></div></section><section id=about class=about><div class=content-wrapper><div class="col-lg-10 col-lg-offset-1"><h3>Mobile Era is Norway's first conference for mobile developers</h3><p><div style="margin:0 auto"><iframe width=640 height=360 src=https://www.youtube.com/embed/-5svVhDWJPU frameborder=0 allowfullscreen style="margin:0 auto"></iframe></div>The conference will cover Android, iOS, Hybrid and Mobile Web development from both a design and development perspective. Follow us on Twitter @mobileeraconf or sign up for our mailing list to keep updated about Mobile Era 2017.</p><div class="row about-details"><div class="col-md-4 col-xs-12"><div class="animated hiding" data-animation=fadeInDown data-delay=0><h5>Want to learn?</h5><img class=img-circle src=/img/about-section/conference.jpg height=128 width=128 alt="Want to learn?"><p>We are happy to have the workshops, organized by Vitaly Friedman, Wei-Meng Lee, Christoffer Marcussen, Samsung and Red Hat on diverse subjects.</p><p><a href="/workshops/" class="btn btn-primary waves-effect waves-button waves-light waves-float" target=_blank>Workshops</a></p></div></div><div class="col-md-4 col-xs-12"><div class="animated hiding" data-animation=fadeInDown data-delay=500><h5>Want to sponsor in 2017?</h5><img class=img-circle src=/img/about-section/hackathon.jpg height=128 width=128 alt="Want to sponsor in 2017?"><p>As a sponsor of the conference, you can help the mobile developer community in Oslo grow and show your commitment to the mobile era!</p><p><a href=mailto:[email protected] class="btn btn-primary waves-effect waves-button waves-light waves-float">Contact us now</a></p></div></div><div class="clearfix visible-xs"></div><div class="col-md-4 col-xs-12"><div class="animated hiding" data-animation=fadeInDown data-delay=1000><h5>Want to help in 2017?</h5><img class=img-circle src=/img/about-section/workshop.jpg height=128 width=128 alt="Want to help in 2017?"><p>As a volunteer for the conference, you get the chance to learn, grow your network and contribute to the good of your fellow kind.</p><p><a href="http://mobileera.herokuapp.com/" class="btn btn-primary waves-effect waves-button waves-light waves-float" target=_blank>Join our Slack</a></p></div></div></div></div></div></section><section id=rockstar-speakers class="rockstar-speakers image-section parallax" style=background-image:url(/img/sections-background/rockstar-speakers.jpg)><div class="overlay solid-overlay"></div><div class=content-wrapper><div class="col-lg-10 col-lg-offset-1 rockstar-speakers-list"><h3 id=rockstar-speaker-title>Some of our speakers</h3><p></p><div class=clearfix></div><span class="bordered rockstar-speaker-button-like-thing"><a href="/speakers/" class="bottom-section-link waves-effect waves-button waves-light">All speakers</a></span></div></div></section><section id=tickets class=tickets><div class=content-wrapper><div class="col-lg-8 col-md-10 col-lg-offset-2 col-md-offset-1"><h3>Buy a ticket</h3><div><p>Mobile Era is fully SOLD OUT. Follow us on Twitter @mobileeraconf or sign up for our mailing list to keep updated about Mobile Era 2017.</p><br><br></div><div class="col-md-4 col-sm-4 pricing-col animated hiding" data-animation=fadeInLeft data-delay=500><div class=pricing-header><p class=title>Diversity Ticket</p><p class=price> FREE <span class=currency></span> <span class=badge>Limited</span></p></div><div class=pricing-content><ul><li>Access to all conference sections</li><li>Coffee breaks</li><li>Lunch both days</li><li>Party</li></ul><span class=additional-info>Scholarships are primarily intended to assist people from groups traditionally underrepresented in the local developer community, including women, people of non-Scandinavian descent and people with disabilities.</span> <span class="button disabled">Sold out</span></div></div><div class="col-md-4 col-sm-4 pricing-col pricing-col-featured animated hiding" data-animation=fadeInDown data-delay=0><div class=pricing-ribbon> Last tickets</div><div class=pricing-header><p class=title>Late Bird</p><p class=price>3900 <span class=currency>NOK</span> <span class=badge>≈ €440</span></p></div><div class=pricing-content><ul><li>Access to all conference sections</li><li>Coffee breaks</li><li>Lunch both days</li><li>Party</li></ul><span class="button disabled">Sold out</span></div></div><div class="col-md-4 col-sm-4 pricing-col animated hiding" data-animation=fadeInRight data-delay=500><div class=pricing-header><p class=title>Student Ticket</p><p class=price>590 <span class=currency>NOK</span> <span class=badge>Limited</span></p></div><div class=pricing-content><ul><li>Access to all conference sections</li><li>Coffee breaks</li><li>Lunch both days</li><li>Party</li></ul><span class=additional-info>Extremely discounted tickets for students. IMPORTANT: Requires valid student ID at entrance to the conference.</span> <span class="button disabled">Sold out</span></div></div></div></div></section><section id=statistic class="statistic image-section parallax" style=background-image:url(/img/sections-background/statistic.jpg)><div class="overlay solid-overlay"></div><div class=content-wrapper><div class="col-lg-10 col-lg-offset-1"><div class="col-md-3 col-xs-12"><div class="counter animated hiding" data-animation=fadeInDown data-delay=0><div class=stat><span class=timer data-from=0 data-to=300>300</span></div><div class=stat-info>attendees</div><hr><p class=small>from everywhere</p></div></div><div class="col-md-3 col-xs-12"><div class="counter animated hiding" data-animation=fadeInDown data-delay=500><div class=stat><span class=timer data-from=0 data-to=48>48</span></div><div class=stat-info>sessions & workshops</div><hr><p class=small>dedicated to mobile technologies</p></div></div><div class="clearfix visible-xs"></div><div class="col-md-3 col-xs-12"><div class="counter animated hiding" data-animation=fadeInDown data-delay=1000><div class=stat><span class=timer data-from=0 data-to=50>50</span></div><div class=stat-info>speakers & trainers</div><hr><p class=small>international and Norwegian technology experts and enthusiasts</p></div></div><div class="col-md-3 col-xs-12"><div class="counter animated hiding" data-animation=fadeInDown data-delay=1500><div class=stat><span class=timer data-from=0 data-to=3>3</span></div><div class=stat-info>parallel tracks</div><hr><p class=small>covering iOS, Android, Hybrid, Design & Web</p></div></div><div class="clearfix visible-xs"></div></div></div></section><section id=latest-news class=latest-news><div class=content-wrapper><div class="col-lg-10 col-lg-offset-1"><h3>Latest news</h3><article class=row><div class="post col-md-6 col-sm-6 text-left animated hiding" data-animation=fadeInDown data-delay=500><h6>Mobile Era begins tomorrow</h6><p class=post-body>Tomorrow Mobile Era will start for the first time and it’ll be a blast! We have sold out on tickets, sponsor stands and we’ll fill up the venue! Tomorrow at 8 AM the doors will open, be there early to grab a coffee before the keynote! If you nee... <a href=/blog/mobile-era-is-tomorrow>continue reading</a></p></div><div class="post col-md-6 col-sm-6 text-left animated hiding" data-animation=fadeInDown data-delay=500><h6>Mobile Era ticket sales end this Friday</h6><p class=post-body>We are happy to announce that we are in the process of selling out the last tickets to the Mobile Era conference. To ease the final preparations, we will end the ticket sales on Friday October 28th. Please note that there are few tickets left, so ... <a href=/blog/ticket-sale-ends>continue reading</a></p></div></article></div></div></section><section id=partners class=partners><div class=content-wrapper><div class="col-lg-10 col-lg-offset-1"><h3>Sponsors</h3><ul class="list-inline sponsors"><li><a href=http://redhat.com target=_blank><img src=/img/partners/Logo_RH_RGB_Default.svg alt=RedHat></a></li><li><a href="https://www.bouvet.no/" target=_blank><img src=/img/partners/bouvet.svg alt=Bouvet></a></li><li><a href="http://www.soprasteria.no/" target=_blank><img src=/img/partners/SOPRASTERIA_logo_CMYK_exe.svg alt="Sopra Steria"></a></li><li><a href="http://www.mesan.no/" target=_blank><img src=/img/partners/Mesan_logo_EPS.svg alt=Mesan></a></li><li><a href="http://computas.com/" target=_blank><img src=/img/partners/computas.svg alt=Computas></a></li><li><a href="http://programutvikling.no/" target=_blank><img src=/img/partners/programutvikling.svg alt=ProgramUtvikling></a></li><li><a href="https://www.shortcut.no/" target=_blank><img src=/img/partners/Shortcut-Logo_Dark_Type_Mark_Centered.svg alt=Shortcut></a></li><li><a href="http://bekk.no/" target=_blank><img src=/img/partners/BEKK_Logo_RGB.svg alt=BEKK></a></li><li><a href="http://www.samsung.com/no/home/" target=_blank><img src=/img/partners/Samsung.svg alt=Samsung></a></li><li><a href="http://knowit.no/" target=_blank><img src=/img/partners/knowit.svg alt=Knowit></a></li><li><a href="http://webstep.no/" target=_blank><img src=/img/partners/webstep.svg alt=Webstep></a></li><li><a href="http://agens.no/" target=_blank><img src=/img/partners/agens.svg alt=Agens></a></li><li><a href="http://www.giantleap.no/" target=_blank><img src=/img/partners/giantleap.svg alt="Giant Leap Technologies"></a></li><li><a href="http://www.apps.no/" target=_blank><img src=/img/partners/apps.svg alt=Apps></a></li><li><a href="http://www.systek.no/" target=_blank><img src=/img/partners/systek.svg alt=Systek></a></li><li><a href="https://www.mozilla.org/en-US/" target=_blank><img src=/img/partners/Mozilla.svg alt=Mozilla></a></li></ul><br><h5>Community partners</h5><ul class="list-inline companions"><li><a href=http://www.dnd.no target=_blank><img src=/img/partners/dnd.png title="The Norwegian Computing Association" alt=Dataforeningen style=max-width:150px></a></li><li><a href=http://www.vibble.co target=_blank><img src=/img/partners/vibble.png title="With vibble, you can turn your favorite playlists into creative mixes, just by swiping a finger" alt=Vibble style=max-width:150px></a></li><li><a href=http://www.microsoft.no target=_blank><img src=/img/partners/microsoft.svg alt=Microsoft style=max-width:150px></a></li><li><a href="https://www.facebook.com/AppAcademyNo/" target=_blank><img src=/img/partners/appacademy.png title="Norway’s leading knowledge arena within Apps and Mobile 2.0" alt=AppAcademy style=max-width:150px></a></li><li><a href="https://www.facebook.com/DrinkEntrepreneursOslo/" target=_blank><img src=/img/partners/drinkentrepreneurs.png title="The global and monthly social event for entrepreneurs to exchange, meet and help their peers around a drink!" alt="DrinkEntrepreneurs Oslo" style=max-width:150px></a></li></ul><a href="/sponsors/" class="btn btn-primary waves-effect waves-button waves-light waves-float">Become a sponsor</a></div></div></section><section id=venue><div class=content-wrapper><div class="col-lg-10 col-lg-offset-1"><h3>Venue</h3><div class="row venue-row"><div class="col-md-8 col-sm-8 venue-col"><div class=venue-elem-wrapper><div class="venue-elem image-section venue-big-elem venue-img animated hiding" data-animation=fadeIn data-delay=0 style=background-image:url(/img/venue/venue_0.jpg)></div></div></div><div class="col-md-4 col-sm-4 venue-col venue-small-col"><div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6"><div class="venue-elem image-section venue-small-elem venue-img animated hiding" data-animation=fadeIn data-delay=150 style=background-image:url(/img/venue/venue_1.jpg)></div></div><div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6"><div class="venue-elem venue-small-elem venue-text animated hiding" data-animation=fadeIn data-delay=0><h5>Gamle Museet</h5><p>Award winning venue centrally located in Oslo</p><p>5 minute walk from Oslo Central Station with easy access by public communication</p></div></div><div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6"><div class="venue-elem image-section venue-small-elem venue-img animated hiding" data-animation=fadeIn data-delay=0 style=background-image:url(/img/venue/venue_2.jpg)></div></div><div class="venue-elem-wrapper col-xs-6 visible-xs"><div class="venue-elem image-section venue-small-elem venue-img animated hiding" data-animation=fadeIn data-delay=0 style=background-image:url(/img/venue/venue_8.jpg)></div></div></div></div></div></div></section><section id=location-map class=location-map><div id=canvas-map class=canvas-map></div><div class=content-wrapper><div class="col-lg-3 col-md-4 col-sm-6 col-md-offset-1 animated hiding location-description text-left" data-animation=fadeInLeft data-delay=0><div class=row><div class=pull-left><h3>Location</h3><ul><li>Gamle Museet / The Old Museum</li><li>Dronningensgate 4</li><li>0152, Oslo</li><li><a href=mailto:[email protected]>[email protected]</a></li></ul></div><a href=/logistics/#find-way class=pull-right><svg class="icon icon-direction" viewbox="0 0 32 32"><use xlink:href="/img/sprites/sprites.svg#icon-direction"/></svg></a></div></div></div></section><section id=subscribe class="subscribe image-section parallax" style=background-image:url(/img/sections-background/subscribe.jpg)><div class="overlay solid-overlay"></div><div class=content-wrapper><div class="col-lg-8 col-lg-offset-2 animated hiding" data-animation=fadeInUp data-delay=0><h3>Subscribe for updates</h3><div id=mc_embed_signup class="col-lg-8 col-sm-8 col-lg-offset-2 col-sm-offset-2"><form action="https://github.us12.list-manage.com/subscribe/post?u=fa5d127dc57bce862da2801bd&id=a6547c75c0" method=post id=mc-embedded-subscribe-form name=mc-embedded-subscribe-form class=validate target=_blank novalidate><div class="mc-field-group col-lg-9 col-sm-9 col-xs-12"><i class="email bordered required waves-effect waves-light waves-input-wrapper"><input type=email name=EMAIL class=waves-button-input id=mce-EMAIL [email protected] autocomplete=off></i></div><div id=mce-responses class=clear><div class=response id=mce-error-response style=display:none></div><div class=response id=mce-success-response style=display:none></div></div><div style=position:absolute;left:-5000px><input name=b_9fc8aa205b0521b5f05fc8e1e_ae0fb459fc tabindex=-1></div><div class="mc-submit-group clear col-lg-3 col-sm-3 col-xs-12"><i class="button bordered required waves-effect waves-light waves-input-wrapper"><input type=submit class=waves-button-input value=Submit name=subscribe id=mc-embedded-subscribe></i></div></form><span class=subscribe-info>We will periodically send emails about the status of the conference.</span></div></div></div></section><section id=twitter-feed class="twitter-feed image-section parallax" style=background-image:url(/img/sections-background/twitter-feed.jpg)><div class="overlay solid-overlay"></div><div class=content-wrapper><div class="col-md-8 col-md-offset-2"><svg class=icon viewbox="0 0 30 32"><use xlink:href="/img/sprites/sprites.svg#icon-twitter"/></svg><h3>What's Up? <a href="https://twitter.com/search?q=%23mobileera" target=_blank>#mobileera</a></h3><div id=tweets class=tweets></div></div></div></section><footer id=footer class=footer><div class="row sponsors"><div class=col-xs-12><h5></h5></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href=http://redhat.com target=_blank><img src=/img/partners/Logo_RH_RGB_Default.svg alt=RedHat></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="https://www.bouvet.no/" target=_blank><img src=/img/partners/bouvet.svg alt=Bouvet></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://www.soprasteria.no/" target=_blank><img src=/img/partners/SOPRASTERIA_logo_CMYK_exe.svg alt="Sopra Steria"></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://www.mesan.no/" target=_blank><img src=/img/partners/Mesan_logo_EPS.svg alt=Mesan></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://computas.com/" target=_blank><img src=/img/partners/computas.svg alt=Computas></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://programutvikling.no/" target=_blank><img src=/img/partners/programutvikling.svg alt=ProgramUtvikling></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="https://www.shortcut.no/" target=_blank><img src=/img/partners/Shortcut-Logo_Dark_Type_Mark_Centered.svg alt=Shortcut></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://bekk.no/" target=_blank><img src=/img/partners/BEKK_Logo_RGB.svg alt=BEKK></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://www.samsung.com/no/home/" target=_blank><img src=/img/partners/Samsung.svg alt=Samsung></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://knowit.no/" target=_blank><img src=/img/partners/knowit.svg alt=Knowit></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://webstep.no/" target=_blank><img src=/img/partners/webstep.svg alt=Webstep></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://agens.no/" target=_blank><img src=/img/partners/agens.svg alt=Agens></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://www.giantleap.no/" target=_blank><img src=/img/partners/giantleap.svg alt="Giant Leap Technologies"></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://www.apps.no/" target=_blank><img src=/img/partners/apps.svg alt=Apps></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="http://www.systek.no/" target=_blank><img src=/img/partners/systek.svg alt=Systek></a></div><div class="col-md-2 col-sm-3 col-xs-6 sponsor"><a href="https://www.mozilla.org/en-US/" target=_blank><img src=/img/partners/Mozilla.svg alt=Mozilla></a></div></div><div class=row><div class="pull-left col-md-6 col-xs-6"><div class=g-plusone data-size=medium data-annotation=inline data-width=300 data-href=https://2016.mobileera.rocks></div></div><div class="logo logo-footer logo-gray pull-right"></div></div><div class=row><div class="col-md-3 col-xs-12"><h5>In partnership with</h5><ul><li><a href=http://meetup.com/Mobile-Meetup-Oslo target=_blank>Mobile Meetup Oslo</a></li><li><a href="http://www.meetup.com/CocoaHeads-Oslo/" target=_blank>CocoaHeads Oslo</a></li><li><a href="http://www.meetup.com/GDGOslo/" target=_blank>Google Developers Group Oslo</a></li></ul></div><div class="col-md-3 col-xs-12"><h5>Contacts</h5><ul><li><a href=mailto:[email protected] target=_blank>[email protected]</a></li><li><a href=https://goo.gl/forms/cfwSKIAXkskWnmI63 target=_blank>Provide Feedback</a></li></ul></div><div class="col-md-3 col-xs-12"><h5>FAQ</h5><ul><li><a href="/cod/">Code of Conduct</a></li></ul></div><div class="col-md-3 col-xs-12"><h5>Social</h5><ul class=social-links><li><a href=https://twitter.com/mobileeraconf target=_blank><svg class="icon icon-twitter" viewbox="0 0 30 32"><use xlink:href="/img/sprites/sprites.svg#icon-twitter"/></svg></a></li><li><a href=https://facebook.com/mobileeraconf target=_blank><svg class="icon icon-facebook" viewbox="0 0 30 32"><use xlink:href="/img/sprites/sprites.svg#icon-facebook"/></svg></a></li><li><a href="https://www.linkedin.com/company/mobile-era-conference/" target=_blank><svg class="icon icon-linkedin" viewbox="0 0 30 32"><use xlink:href="/img/sprites/sprites.svg#icon-linkedin"/></svg></a></li><li><a href=/feed.xml target=_blank><svg class="icon icon-rss" viewbox="0 0 30 32"><use xlink:href="/img/sprites/sprites.svg#icon-rss"/></svg></a></li></ul></div></div><div class=row><div class=col-md-6><p class=copyright>© 2016 Mobile Era Conference. Reg.nr. <a href="https://w2.brreg.no/enhet/sok/detalj.jsp?orgnr=917217025">917217025</a><br><small>The website is based on <a href=https://github.com/gdg-x/zeppelin-grunt target=_blank>Project Zeppelin-Grunt</a>. Photo: VISITOSLO/Jonas Anhede.</small></p></div></div></footer></div></div></div><script type=text/javascript>WebFontConfig={google:{families:["Roboto:500,300,100"]}},function(){var t=document.createElement("script");t.src=("https:"==document.location.protocol?"https":"http")+"://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js",t.type="text/javascript",t.async="true";var e=document.getElementsByTagName("script")[0];e.parentNode.insertBefore(t,e)}();</script><script src=//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js></script><script>window.jQuery||document.write('<script src="/js/jquery.min.js"><\/script>');</script><script src=//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js></script><script>"undefined"==typeof $.fn.modal&&document.write('<script src="/js/bootstrap.min.js"><\/script>');</script><script src=/js/libraries.js></script><script>$(window).width()>767&&document.write('<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"><\/script>');</script><script>if($(window).width()>767)var googleMaps="index",eventPlace=new google.maps.LatLng(59.9080339,10.7436228),centerMap=new google.maps.LatLng(59.9080339,10.7436228),mobileCenterMap=new google.maps.LatLng(59.9080339,10.7436228),icon="https://2016.mobileera.rocks/img/other/map-marker.svg";else var staticGoogleMaps=!0,eventPlaceCoordinates="59.9080339,10.7436228",centerMapCoordinates="59.9080339,10.7436228",mobileCenterMapCoordinates="59.9080339,10.7436228",icon="https://2016.mobileera.rocks/img/other/map-marker.png";var twitterFeedUrl="https://mobileera-tweetledee.herokuapp.com/tweetledee/favoritesjson.php?c=10&cache_interval=8000";$(document).ready(function(){$(function(){$(window).width()>767&&$("#typeout-text").typed({strings:["","Thank you!","Oslo","Norway","Scandinavia"],typeSpeed:300,backDelay:3e3,loop:!0})});var e=[{name:"Vitaly Friedman",company:"Smashing Magazine",image:"/img/people/VitalyFriedman.jpg",ribbon:"Keynote"},{name:"John Sundell",company:"Spotify",image:"/img/people/JohnSundell.jpg",ribbon:""},{name:"Wei-Meng Lee",company:"Learn2Develop",image:"/img/people/Wei-MengLee.jpg",ribbon:""},{name:"Orta Therox",company:"Artsy & CocoaPods",image:"/img/people/OrtaTherox.jpg",ribbon:""},{name:"Alexsander Akers",company:"Shutterstock",image:"/img/people/AlexsanderAkers.jpg",ribbon:""},{name:"Svetlana Isakova",company:"JetBrains",image:"/img/people/SvetlanaIsakova.jpg",ribbon:""},{name:"Huyen Tue Dao",company:"Trello",image:"/img/people/HuyenTueDao.jpg",ribbon:""},{name:"Karoline Klever",company:"Microsoft",image:"/img/people/KarolineKlever.jpg",ribbon:""},{name:"Sebastian Witalec",company:"Telerik",image:"/img/people/SebastianWitalec.jpg",ribbon:""},{name:"Mike Hartington",company:"Ionic",image:"/img/people/MikeHartington.jpg",ribbon:""},{name:"Christina Lee",company:"Pinterest",image:"/img/people/ChristinaLee.jpg",ribbon:""},{name:"István 'Flaki' Szmozsánszky",company:"Mozilla / DPC Consulting",image:"/img/people/Flaki.jpg",ribbon:""},{name:"Jan Jongboom",company:"ARM",image:"/img/people/JanJongboom.jpg",ribbon:""},{name:"Marcos Placona",company:"Twilio",image:"/img/people/MarcosPlacona.jpg",ribbon:""},{name:"Stephane Nicolas",company:"Groupon",image:"/img/people/StephaneNicolas.jpg",ribbon:""}];if(keynoteSpeaker=e.shift(),e.sort(function(){return.5-Math.random()}),e.unshift(keynoteSpeaker),e.length>0){var a=1500,o=Math.min(4,e.length),n=12/o;for(i=o-1;i>=0;i--){i%2!=0&&(clearfix="");var r='<div class="col-md-'+n+' col-sm-12 rockstar-speakers-item animated hiding" data-animation="fadeInUp" data-delay="'+a+'"><div class="rockstar-speaker">'+(""!=e[i].ribbon?'<div class="badge">'+e[i].ribbon+"</div>":"")+'<div class="flow-img img-circle rockstar-speaker-img" style="background-image: url('+e[i].image+')"></div><div class="name">'+e[i].name+'</div><div class="sub">'+e[i].company+"</div></div></div>";$("#rockstar-speaker-title").after(r),a-=500}}});</script><script src=/js/scripts.js></script><script id=mobile-era-event-metadata type=application/ld+json>[{
"@context" : "http://schema.org",
"@type" : "Event",
"name" : "Mobile Era 2016 - Norway's first conference for mobile technologists",
"description": "Mobile Era is Norway's first conference for mobile developers, it will be held November 3rd - 4th in Oslo and will feature speakers from all over the world talking about Android, iOS and cross-platform technologies.",
"image" : "https://2016.mobileera.rocks/img/seo/sharing-google-plus.png",
"url" : "https://2016.mobileera.rocks",
"startDate" : "2016-11-03T10:00",
"doorTime" : "",
"endDate" : "2016-11-04T20:00",
"location" : {
"@type" : "Place",
"name" : "Gamle Museet / The Old Museum",
"sameAs" : "http://www.gamlemuseet.no/",
"address" : {
"@type" : "PostalAddress",
"streetAddress" : "Dronningensgate 4",
"addressLocality" : "Oslo",
"addressRegion" : "Oslo",
"postalCode" : "0152",
"addressCountry" : "Norway"
},
"geo" : {
"@type" : "GeoCoordinates",
"latitude" : "59.9080339",
"longitude" : " 10.7436228"
}
},
"offers" : [
],
"performer" : [
{
"@type" : "Person",
"@id": 1,
"name" : "Vitaly Friedman",
"image" : "https://2016.mobileera.rocks/img/people/VitalyFriedman.jpg",
"description": "Vitaly Friedman loves beautiful content and does not give up easily. From Minsk in Belarus, he studied computer science and mathematics in Germany, discovered the passage a passion for typography, writing and design. After working as a freelance designer and developer for 6 years, he co-founded Smashing Magazine, a leading online magazine dedicated to design and web development. Vitaly is the author, co-author and editor of all Smashing books. He currently works as editor-in-chief of Smashing Magazine in the lovely city of Vilnius, Lithuania.",
"jobTitle" : "Editor-in-Chief",
"worksFor" : {
"@type" : "Organization",
"name" : "Smashing Magazine"
},
"sameAs" : "https://twitter.com/smashingmag"
},
{
"@type" : "Person",
"@id": 2,
"name" : "John Sundell",
"image" : "https://2016.mobileera.rocks/img/people/JohnSundell.jpg",
"description": "John has been developing apps & games for iOS since the early days of the SDK. These days, he's working as a lead iOS developer at Spotify - where he is both writing a lot of code - but also leading the development of the company's component-driven UI framework. John is also a huge fan of Swift, doing a lot of open source work (for example the Unbox & Wrap JSON tools) and making games using it.",
"jobTitle" : "iOS team lead",
"worksFor" : {
"@type" : "Organization",
"name" : "Spotify"
},
"sameAs" : "https://twitter.com/johnsundell"
},
{
"@type" : "Person",
"@id": 3,
"name" : "Wei-Meng Lee",
"image" : "https://2016.mobileera.rocks/img/people/Wei-MengLee.jpg",
"description": "Wei-Meng Lee is a technologist and founder of Developer Learning Solutions, a technology company specializing in hands-on training on the latest mobile technologies. Wei-Meng has many years of training experiences and his training courses place special emphasis on the learning-by-doing approach. His hands-on approach to learning programming makes understanding the subject much easier than reading books, tutorials, and documentations. His name regularly appears in online and print publications such as DevX.com, MobiForge.com, and CoDe Magazine.",
"jobTitle" : "iOS and Android Instructor and Author of Android Application Development Cookbook and many more books",
"worksFor" : {
"@type" : "Organization",
"name" : "Learn2Develop"
},
"sameAs" : "https://twitter.com/weimenglee"
},
{
"@type" : "Person",
"@id": 4,
"name" : "Kostiantyn Koval",
"image" : "https://2016.mobileera.rocks/img/people/KonstantinKoval.jpg",
"description": "Kostiantyn Koval dreamed to be a developer as a kid and dreams come true. He fall in love with Swift at first sight. He is an Author of Swift High Performance book, a Swift open source contributor and just a guy who loves to type some code.",
"jobTitle" : "iOS Engineer, Author of Swift High Performance book",
"worksFor" : {
"@type" : "Organization",
"name" : "Agens"
},
"sameAs" : "https://twitter.com/KostiaKoval"
},
{
"@type" : "Person",
"@id": 6,
"name" : "Orta Therox",
"image" : "https://2016.mobileera.rocks/img/people/OrtaTherox.jpg",
"description": "",
"jobTitle" : "Head of Mobile",
"worksFor" : {
"@type" : "Organization",
"name" : "Artsy & CocoaPods"
},
"sameAs" : "https://twitter.com/orta"
},
{
"@type" : "Person",
"@id": 7,
"name" : "Alexsander Akers",
"image" : "https://2016.mobileera.rocks/img/people/AlexsanderAkers.jpg",
"description": "Alex currently works for Shutterstock in their Berlin office, where he develops their iOS apps for both stock media consumers and producers. Previously, Alex worked at Branch in New York City on Potluck and then at Facebook in London on Rooms and React Native.",
"jobTitle" : "Software Engineer",
"worksFor" : {
"@type" : "Organization",
"name" : "Shutterstock"
},
"sameAs" : "https://twitter.com/a2"
},
{
"@type" : "Person",
"@id": 102,
"name" : "Viraj Tank",
"image" : "https://2016.mobileera.rocks/img/people/VirajTank.jpg",
"description": "Viraj work at Sociomantic Labs, Berlin as Mobile team lead, developing our Android and iOS applications.",
"jobTitle" : "Mobile team lead",
"worksFor" : {
"@type" : "Organization",
"name" : "Sociomantic Labs"
},
"sameAs" : "https://twitter.com/viraj49"
},
{
"@type" : "Person",
"@id": 103,
"name" : "Svetlana Isakova",
"image" : "https://2016.mobileera.rocks/img/people/SvetlanaIsakova.jpg",
"description": "Svetlana is a Developer Advocate at JetBrains. She is been working on the Kotlin language (http://kotlinlang.org/) since 2011. She is one of the authors of the \"Kotlin in Action\" book.",
"jobTitle" : "Developer Advocate",
"worksFor" : {
"@type" : "Organization",
"name" : "JetBrains"
},
"sameAs" : "https://twitter.com/sveta_isakova"
},
{
"@type" : "Person",
"@id": 104,
"name" : "Huyen Tue Dao",
"image" : "https://2016.mobileera.rocks/img/people/HuyenTueDao.jpg",
"description": "Huyen is an Android developer and has been for 6 years. She is also a Google Developer Expert for Android and co-produces a YouTube channel centered around interviews with people in the Android community.",
"jobTitle" : "Native Android/iOS Code Monkey",
"worksFor" : {
"@type" : "Organization",
"name" : "Trello"
},
"sameAs" : "https://twitter.com/queencodemonkey"
},
{
"@type" : "Person",
"@id": 105,
"name" : "Syrine Trabelsi",
"image" : "https://2016.mobileera.rocks/img/people/SyrineTrabelsi.jpg",
"description": "Syrine Trabelsi is a developer at deezer, the music streaming service.",
"jobTitle" : "Developer",
"worksFor" : {
"@type" : "Organization",
"name" : "Deezer"
},
"sameAs" : "https://twitter.com/sarrouna23"
},
{
"@type" : "Person",
"@id": 106,
"name" : "François Blavoet",
"image" : "https://2016.mobileera.rocks/img/people/FrancoisBlavoet.jpg",
"description": "François Blavoet is a developer at Deezer, the music streaming service. There, he polishes pixels and try to make them run faster. He has been dabbling in Android since the Gingerbread days and has been working as an Android engineer for 3 years. He loves solving problems at the intersection of science, design and human behavior.",
"jobTitle" : "Developer",
"worksFor" : {
"@type" : "Organization",
"name" : "Deezer"
},
"sameAs" : "https://twitter.com/francoisblavoet"
},
{
"@type" : "Person",
"@id": 107,
"name" : "Erik Hellman",
"image" : "https://2016.mobileera.rocks/img/people/ErikHellman.jpg",
"description": "Freelancing Android developer from Sweden. Author of \"Android Programming - Pushing the Limits\" and frequent speaker at various developer conferences.",
"jobTitle" : "Android developer",
"worksFor" : {
"@type" : "Organization",
"name" : "Hellsoft"
},
"sameAs" : "https://twitter.com/ErikHellman"
},
{
"@type" : "Person",
"@id": 108,
"name" : "Abraham Williams",
"image" : "https://2016.mobileera.rocks/img/people/AbrahamWilliams.jpg",
"description": "An experienced developer and start-up founder, Abraham Williams brings a broad range of skills to his current role as a senior developer at Bendyworks. A top 1% contributor at Stack Overflow and an active member of Google Developer Groups, Abraham has been recognized by Google as a Developer Expert for his ability to identify technology problems and provide quality solutions in the community.",
"jobTitle" : "Developer and start-up founder",
"worksFor" : {
"@type" : "Organization",
"name" : "Bendyworks"
},
"sameAs" : "https://twitter.com/abraham"
},
{
"@type" : "Person",
"@id": 109,
"name" : "Pearl Latteier",
"image" : "https://2016.mobileera.rocks/img/people/PearlLatteier.jpg",
"description": "Pearl Latteier is a software engineer at Bendyworks in Madison WI. For the past several years, she has focused primarily on building data-intensive JavaScript applications for web and mobile, most recently with React JS and React Native. She is also experienced with server-side technologies including Node, Ruby on Rails, and PHP. Before becoming a software developer, Pearl earned a PhD in from the University of Wisconsin-Madison, where for five years she taught courses in the Department of Communication Arts.",
"jobTitle" : "Developer",
"worksFor" : {
"@type" : "Organization",
"name" : "Bendyworks"
},
"sameAs" : "https://twitter.com/pblatteier"
},
{
"@type" : "Person",
"@id": 110,
"name" : "Jens Gorm Rye-Andersen",
"image" : "https://2016.mobileera.rocks/img/people/JensGormRye-Andersen.jpg",
"description": "Jens works as a Lead Software Engineer and Mobile Business Developer, and has 10 years of experience in software development.",
"jobTitle" : "Lead Software Engineer and Mobile Business Developer",
"worksFor" : {
"@type" : "Organization",
"name" : "Sopra Steria"
},
"sameAs" : "https://twitter.com/jensgorm"
},
{
"@type" : "Person",
"@id": 111,
"name" : "Karoline Klever",
"image" : "https://2016.mobileera.rocks/img/people/KarolineKlever.jpg",
"description": "Karoline Klever is an ALM Solution Specialist at Microsoft, focusing on the tools and processes developers use to improve their software delivery pipeline.",
"jobTitle" : "ALM Solution Specialist",
"worksFor" : {
"@type" : "Organization",
"name" : "Microsoft"
},
"sameAs" : "https://twitter.com/karolikl"
},
{
"@type" : "Person",
"@id": 112,
"name" : "Sebastian Witalec",
"image" : "https://2016.mobileera.rocks/img/people/SebastianWitalec.jpg",
"description": "Sebastian Witalec is a Technical Evangelist for Telerik with over 8 years of experience in software engineering and architecture. Sebastian has passion for all types of technologies. However in the last few years his focus shifted towards cross platform Mobile development where he gained experience with Apache Cordova and NativeScript (a member of the team). He is always happy to learn about the new stuff and to pass the knowledge as far as his voice (or the wire) can take him. Sebastian is based in London, UK actively working with various Dev communities in the area. When not acting techie he is a massive football fan/player (probably bigger at heart than skills).",
"jobTitle" : "Technical Evangelist",
"worksFor" : {
"@type" : "Organization",
"name" : "Telerik"
},
"sameAs" : "https://twitter.com/sebawita"
},
{
"@type" : "Person",
"@id": 113,
"name" : "Mike Hartington",
"image" : "https://2016.mobileera.rocks/img/people/MikeHartington.jpg",
"description": "Part of Ionic core team, Mike helps developers while they are building their apps and also frequently speaks and writes about Ionic. In his spare time, he’s a hybrid app maker, occasional musician, and craft beer lover.",
"jobTitle" : "Developer",
"worksFor" : {
"@type" : "Organization",
"name" : "Ionic"
},
"sameAs" : "https://twitter.com/mhartington"
},
{
"@type" : "Person",
"@id": 114,
"name" : "Remi Pedersen",
"image" : "https://2016.mobileera.rocks/img/people/RemiPedersen.jpg",
"description": "Remi works with Fuse - building tools for mobile app developers and designers. Back in the dark ages he was at Falanx and ARM, developing the 'Mali' brand of graphics accelerators which have shipped in over a billion mobile devices by now. He's been programming for over 25 years and has even more experience talking and gesticulating (something he'll happily do about subjects such as the demoscene, startups, and HW & SW tech). Late at night he still codes demos for his trusty old Amiga 500.",
"jobTitle" : "Coder & Cat herder",
"worksFor" : {
"@type" : "Organization",
"name" : "Fusetools"
},
"sameAs" : "https://twitter.com/fusetools"
},
{
"@type" : "Person",
"@id": 115,
"name" : "Tom Widerøe",
"image" : "https://2016.mobileera.rocks/img/people/TomWideroe.jpg",
"description": "Tom Widerøe is a front end developer. He was involved in the process of transforming FINN.no into one website for all devices, continiously fighting for accessilibility. Tom has previously talked about accessibility at several conferences.",
"jobTitle" : "Front end developer",
"worksFor" : {
"@type" : "Organization",
"name" : "FINN.no"
},
"sameAs" : "https://twitter.com/twidero"
},
{
"@type" : "Person",
"@id": 116,
"name" : "Sofia Hussain",
"image" : "https://2016.mobileera.rocks/img/people/SofiaHussain.jpg",
"description": "Sofia Hussain is an interaction designer at FINN.no. She works with usability on all devices and regards accessibility to be an inherent part of user experience design. Sofia has presented at several international conferences.",
"jobTitle" : "Interaction designer",
"worksFor" : {
"@type" : "Organization",
"name" : "FINN.no"
},
"sameAs" : "https://twitter.com/UXsophia"
},
{
"@type" : "Person",
"@id": 117,
"name" : "Christina Lee",
"image" : "https://2016.mobileera.rocks/img/people/ChristinaLee.jpg",
"description": "Formerly an Android and iOS Dev at Highlight — of note for being one of the first companies to bring a full Kotlin app to market as well as for work done porting Redux principles to native implementations on both iOS and Android. Highlight was recently acquired by Pinterest, where Christina has joined the Android team to work on bringing video to the platform.",
"jobTitle" : "Android and iOS Dev",
"worksFor" : {
"@type" : "Organization",
"name" : "Pinterest"
},
"sameAs" : "https://twitter.com/RunChristinaRun"
},
{
"@type" : "Person",
"@id": 118,
"name" : "Daniel Haight",
"image" : "https://2016.mobileera.rocks/img/people/DanielHaight.jpg",
"description": "",
"jobTitle" : "iOS developer",
"worksFor" : {
"@type" : "Organization",
"name" : "2Pax"
},
"sameAs" : "https://twitter.com/daniel1of1"
},
{
"@type" : "Person",
"@id": 119,
"name" : "Christian Falch",
"image" : "https://2016.mobileera.rocks/img/people/ChristianFalch.jpg",
"description": "Christian has worked with mobile technologies since 1999 (in the days of the Palm Pilot) and has extensive experience building apps for iOS/Android/Windows Phone. Offers independant consultancy and advisory services on building native apps with Xamarin in C# and .Net, he is also a founding member of Oslo Xamarin Meetup.",
"jobTitle" : "Independant Consultant and Advisor, Cross platform mobile apps",
"worksFor" : {
"@type" : "Organization",
"name" : "Falch AS"
},
"sameAs" : ""
},
{
"@type" : "Person",
"@id": 122,
"name" : "István 'Flaki' Szmozsánszky",
"image" : "https://2016.mobileera.rocks/img/people/Flaki.jpg",
"description": "István is a mobile & web dev who have tried everything from J2ME through Symbian and Android dev whilst once ended up with the mobile web and somehow never looked back. He has been involved with Mozillas Firefox OS and a huge proponent of the Progressive Webapps bandwagon, or whatever people call \"webapps kicking native butt\" these days. ;)",
"jobTitle" : "Mobile & web dev",
"worksFor" : {
"@type" : "Organization",
"name" : "Mozilla / DPC Consulting"
},
"sameAs" : "https://twitter.com/slsoftworks"
},
{
"@type" : "Person",
"@id": 123,
"name" : "Pavel Kurnosov",
"image" : "https://2016.mobileera.rocks/img/people/PavelKurnosov.jpg",
"description": "I am head of development in Your.MD. Our main product is mobile application for Android and iOS that gives personalised health advice.",
"jobTitle" : "Head of development",
"worksFor" : {
"@type" : "Organization",
"name" : "Your.MD"
},
"sameAs" : "https://twitter.com/pavel_kurnosov"
},
{
"@type" : "Person",
"@id": 124,
"name" : "Rustam Mehmandarov",
"image" : "https://2016.mobileera.rocks/img/people/RustamMehmandarov.jpg",
"description": "Rustam Mehmandarov holds a master's degree in Computer Science from the University of Oslo. He has been working as a developer and lead programmer for over 10 years. In addition to being passionate about development and architecture, he is also a guru of both Linux and Windows worlds. On his spare time he enjoys working out, as well as coding in Python and Java [but not simultaneously]. Leader of the Norwegian Java User Group - javaBin, and a competency network coordinator for databases and information management at work. He is a frequent speaker at both national and international conferences and events.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Computas"
},
"sameAs" : "https://twitter.com/rmehmandarov"
},
{
"@type" : "Person",
"@id": 125,
"name" : "Jan Jongboom",
"image" : "https://2016.mobileera.rocks/img/people/JanJongboom.jpg",
"description": "Jan Jongboom is working as Developer Evangelist IoT for ARM, and always on the lookout on how to connect the web with the real world. He loves doing unexpected stuff with sensors, flying drones from the browser, and breaking phones. Before ARM he was a core contributor to Firefox OS, and he wrote hundreds of patches to various open source projects. He's also a Google Developer Expert for Web technologies.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "ARM"
},
"sameAs" : "https://twitter.com/janjongboom"
},
{
"@type" : "Person",
"@id": 126,
"name" : "Dulma Churchill",
"image" : "https://2016.mobileera.rocks/img/people/DulmaChurchill.jpg",
"description": "Dulma Churchill is a Software Engineer at Facebook, where she develops the open source static analyzer Infer. Before that, she worked on her PhD in static analysis at the University of Munich.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Facebook"
},
"sameAs" : ""
},
{
"@type" : "Person",
"@id": 127,
"name" : "Tor-Morten Grønli",
"image" : "https://2016.mobileera.rocks/img/people/Tor-MortenGronli.jpg",
"description": "Mobile enthusiast, PhD and researcher in Mobile development, Head of Mobile Tech Lab @ Westerdals",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Westerdals"
},
"sameAs" : "https://twitter.com/tormorten"
},
{
"@type" : "Person",
"@id": 128,
"name" : "Vegard Haugstvedt",
"image" : "https://2016.mobileera.rocks/img/people/VegardHaugstvedt.jpg",
"description": "Vegard is a full-stack developer and also in charge of training events for the technology department @ Itera. His experience in the mobile field comes mainly from hobby projects, but he has fiddled with Android, Xamarin, Ionic and more. He is a strong advocate of the mobile- and offline-first approach, and has talked about using Couchbase Mobile at conferences from Oslo to Hong Kong.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Itera"
},
"sameAs" : "https://twitter.com/it_vegard"
},
{
"@type" : "Person",
"@id": 129,
"name" : "Agnieszka Walorska",
"image" : "https://2016.mobileera.rocks/img/people/AgnieszkaWalorska.jpg",
"description": "Agnieszka M. Walorska is a founder of a digital consultancy Creative Construction Heroes GmbH, focusing on User Experience and Digital Innovation. Agnieszka is a speaker and author of publications on User Experience and digital innovation. She has lead successful UX and innovation projects for banks and energy, insurance and media companies. Agnieszka is dealing with digital innovation and User Experience for more then 1/3 of her life now. When not solving UX- and innovation-problems, she’s training for the next triathlon.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Creative Construction Heroes GmbH"
},
"sameAs" : "https://twitter.com/agaw"
},
{
"@type" : "Person",
"@id": 130,
"name" : "Øyvind Tangen",
"image" : "https://2016.mobileera.rocks/img/people/OivindTangen.jpg",
"description": "Øyvind is a software developer working for BEKK with a master's degree from the University of Oslo in Informatics: Programming and Networks. Mobile and iOS in particular is the area that interest him the most.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "BEKK"
},
"sameAs" : "https://twitter.com/oyvindrt"
},
{
"@type" : "Person",
"@id": 131,
"name" : "Thomas Pettersen",
"image" : "https://2016.mobileera.rocks/img/people/ThomasPettersen.jpg",
"description": "Have been developing mobile applications since 2010, mainly on the Android and Xamarin platform, and is now the lead of the mobility domain in Mesan. Thomas have been invoved in many enterprise and customer apps for companies like NRK, NorgesGruppen, Mesta etc. Also, he is in love with the field of innovation and mobile development and looking forware to the Mobile Era.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Mesan AS"
},
"sameAs" : "https://twitter.com/MobDevThomas"
},
{
"@type" : "Person",
"@id": 132,
"name" : "Arne-Christian Blystad",
"image" : "https://2016.mobileera.rocks/img/people/ArneChristianBlystad.jpg",
"description": "This talk will go through how BARTEC PIXAVI created an intrinsically safe (EX) Android smart phone and cameras. We'll look at the hardware platform used (SoC), why we did the hardware and software choices we did, how we upgrade between different versions of Android, what modifications we've made to Android, the challenges we faced during development, and currently face during manufacturing and post-release development.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "BARTEC PIXAVI"
},
"sameAs" : "https://github.com/Blystad"
},
{
"@type" : "Person",
"@id": 133,
"name" : "Marcos Placona",
"image" : "https://2016.mobileera.rocks/img/people/MarcosPlacona.jpg",
"description": "Marcos Placona is a developer evangelist at Twilio, a company founded to disrupt communications. He spends most of his time working with Java, Android and .Net open source projects while equipping and inspiring developers to build killer applications. He’s also a great API enthusiast and believes they bring peace to the Software Engineering world.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Twilio"
},
"sameAs" : "https://twitter.com/marcos_placona"
},
{
"@type" : "Person",
"@id": 134,
"name" : "Stephane Nicolas",
"image" : "https://2016.mobileera.rocks/img/people/StephaneNicolas.jpg",
"description": "Stephane Nicolas is a senior Android Developer at Groupon, San Francisco, CA and an Open Source enthusiast.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Groupon"
},
"sameAs" : "https://github.com/stephanenicolas"
},
{
"@type" : "Person",
"@id": 135,
"name" : "Daniel Molinero Reguera",
"image" : "https://2016.mobileera.rocks/img/people/DanielMolineroReguera.jpg",
"description": "Daniel is an Android Software Engineer at Groupon. He is a passionate Science geek with special interest in performance, design and security.\nHe is keen on contributing to the open source community, collaborating on some projects on GitHub: Toothpick, Dart & Henson, etc.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Groupon"
},
"sameAs" : "https://twitter.com/D_Lemures"
},
{
"@type" : "Person",
"@id": 138,
"name" : "Anders Ullnæss",
"image" : "https://2016.mobileera.rocks/img/people/AndersUllnaess.jpg",
"description": "Current leader of Mesan's expert group for mobile technology. Worked with Android, iOS and mobile backend the for several years making apps for Norgesgruppen, NRK and Tolletaten among others. Lectured Android programming at NITH (now part of Westerdals).",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Mesan AS"
},
"sameAs" : "https://twitter.com/andersullnass"
},
{
"@type" : "Person",
"@id": 139,
"name" : "Bill Morkan",
"image" : "https://2016.mobileera.rocks/img/people/BillMorkan.jpg",
"description": "Currently the Mobile Partner Enablement manager for Red Hat, Bill is a senior technology professional with almost 20 years of experience working in various leadership roles in the Technology & Telecommunication Industries. He has held a number of technical & management roles during that time from software engineering and consulting to product management and partner business development.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Red Hat"
},
"sameAs" : "https://twitter.com/billbomo"
},
{
"@type" : "Person",
"@id": 140,
"name" : "Konstantin Loginov",
"image" : "https://2016.mobileera.rocks/img/people/KonstantinLoginov.jpg",
"description": "Konstantin is a senior mobile-developer with 8 years of experience currently working on FotMob app @ NorApps AS. Thoughout these 8 years he's developed & shipped wide range of applications for iOS, Android, Windows Phone, webOS and Windows Mobile and put hands on all trendy mobile-technologies. Being a mobile-minded fanatic, he is passionate about organizing mobile developers community in Oslo.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "NorApps"
},
"sameAs" : "https://twitter.com/klogi_norge"
},
{
"@type" : "Person",
"@id": 141,
"name" : "Håvard Hvassing",
"image" : "https://2016.mobileera.rocks/img/people/HavardHvassing.jpg",
"description": "Håvard dabbles in code and pretends to make software together with amazing people in order to create meaningful app experiences.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Shortcut"
},
"sameAs" : "https://twitter.com/hhvassing"
},
{
"@type" : "Person",
"@id": 142,
"name" : "Christian Aamodt",
"image" : "https://2016.mobileera.rocks/img/people/ChristianAamodt.jpg",
"description": "Christian is an experienced devolper and has worked as a consultant on java-based web projects since 1998. He has developed apps since 2010 and today works as a consultant for Bouvet.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Bouvet"
},
"sameAs" : "https://twitter.com/caamodt"
},
{
"@type" : "Person",
"@id": 143,
"name" : "Ekaterina Orlova",
"image" : "https://2016.mobileera.rocks/img/people/EkaterinaOrlova.jpg",
"description": "Front-end developer at Accenture, Angular trainer in Netology Russia, girlgeek.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Accenture"
},
"sameAs" : "https://twitter.com/cherrypick"
},
{
"@type" : "Person",
"@id": 144,
"name" : "Terje Lønøy",
"image" : "https://2016.mobileera.rocks/img/people/TerjeLonoy.jpg",
"description": "Terje Lønøy is a software engineer working for Sopra Steria AS. He has been working with both iOS and Android since 2012. Obsessed with simplifying and automating processes that are time-consuming so he can focus more on developing.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Sopra Steria AS"
},
"sameAs" : "https://twitter.com/terjelonoy"
},
{
"@type" : "Person",
"@id": 145,
"name" : "Andreas Petrov",
"image" : "https://2016.mobileera.rocks/img/people/AndreasPetrov.jpg",
"description": "iOS Tech Lead at Giant Leap Technologies. Full time iOS developer since 2011.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Giant Leap Technologies"
},
"sameAs" : ""
},
{
"@type" : "Person",
"@id": 146,
"name" : "Johannes Dvorak Lagos",
"image" : "https://2016.mobileera.rocks/img/people/JohannesDvorakLagos.jpg",
"description": "Senior Developer at Shortcut AS.",
"jobTitle" : "",
"worksFor" : {
"@type" : "Organization",
"name" : "Shortcut"
},
"sameAs" : ""
}
],
"session" : [
{
"@type": "SessionEvent",
"id": 1,
"name": "Cutting-Edge Responsive Web Design For Mobile",
"description": "With HTTP/2, Service Workers, Responsive Images, Flexbox, SVG and Font Loading API now available in browsers, we all are still trying to figure out just the right strategy for designing and buildings responsive websites just in time. We want to use all of these technologies, but how can we use them efficiently, and how do we achieve it within a reasonable amount of time? In this talk, Vitaly Friedman, editor-in-chief of Smashing Magazine, will be looking into a strategy for crafting fast, resilient and flexible responsive design systems by utilizing all of those wonderful shiny web technologies we have available today. We'll also talk about dealing with legacy browsers and will cover a few dirty little techniques that might ensure that your responsive websites will stay relevant, flexible and accessible in the years to come.",
"category": "Keynote",
"startDate": "2016-11-03T09:00",
"endDate": "2016-11-03T09:45",
"room": "Odin",
"performer": [
{
"@type": "Person",
"id": 1,
"name": "Vitaly Friedman"
}