-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
986 lines (947 loc) · 61.4 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<link rel="icon" type="image/png" href="favicon.png" />
<title>Gothenburg Startup Hack - 2019 #GBGStartupHack</title>
<link href="http://fonts.googleapis.com/css?family=Pacifico|Open+Sans:100,700,300,400,600" rel="stylesheet" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="build/css/main.min.css" />
<link rel="stylesheet" type="text/css" href="build/css/lightbox.min.css">
<meta content="A day for developers, designers and innovators living in Gothenburg to meet and build things together." name="description" />
<meta content="startup, hack, hackathon, gothenburg, code, competition, gbgtech, gbgtechweek" name="keywords" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@gbgstartuphack">
<meta name="twitter:title" content="Gothenburg Startup Hack - May 11 / 2019 #GBGStartupHack">
<meta name="twitter:description" content="We're back, and busy as ever. Let's get something brewing down by the docks! You will meet the startup community, learn, create and have fun!">
<meta name="twitter:creator" content="@gbgstartuphack">
<!-- Twitter Summary card images must be at least 120x120px -->
<meta name="twitter:image" content="http://www.gbgstartuphack.com/build/images/ringon.png">
<meta content="Gothenburg Startup Hack" property="og:title">
<meta content="website" property="og:type">
<meta itemprop="url" content="http://www.gbgstartuphack.com/" property="og:url">
<meta itemprop="image" content="http://www.gbgstartuphack.com/build/images/ringon.png" property="og:image">
<meta property="og:image:width" content="1000">
<meta property="og:image:height" content="1000">
<meta property="og:image:type" content="image/png" >
<meta itemprop="description" content="GBG Startup Hack is a day for designers, innovators and developers living in Gothenburg to meet and build things together" property="og:description">
</head>
<body>
<header role="banner">
<div class="desktopnavbar">
<ul>
<li class="desktopnavbar-li"><a class="desktopnavbar-link" href="index.html"><u>Home</u></a></li>
<li class="desktopnavbar-li"><a class="desktopnavbar-link" href="partner.html">Partner</a></li>
<li class="desktopnavbar-li"><a class="desktopnavbar-link" href="currenthack.html">This year</a></li>
<li class="desktopnavbar-li"><a class="desktopnavbar-link" href="previoushacks.html">Previous hacks</a></li>
</ul>
</div>
<div class="mobilenavbar" id="header-navbar">
<a href="#home" class="active"></a>
<!-- Navigation links (hidden by default) -->
<div id="myLinks">
<a href="#news">News</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
<a href="javascript:void(0);" class="bannernavbar-inner" class="icon" onclick="toggleNavbar()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="header">
<img class="header-logo" src="build/images/header-logo.svg">
<h2 class="header-info">THINK - HACK - LAUNCH</h2>
<br>
<!-- <br>
<h2 class="header-date"><strong>11 MAY<br/></strong></h2>
<h3 class="header-date">2019</h3> -->
<!-- <a href="https://forms.gle/8JSdidt5XhnJX7rK7"><button class="ghost-btn header-btn">Apply for the hack <strong>here</strong>.</button></a> -->
</div>
<a href="#intro"><img class="arrow" src="build/images/arrow-min.svg"></a>
<a href="http://www.gbgtechweek.com" target="_blank"><img class="gbgtechweek" src="build/images/gbgtechweek.png"></a>
</header>
<main>
<input type="button" class="elevator-button" value="Back to top" />
<!--<section class="intro">-->
<!--<h1>Schedule</h1>-->
<!--<img src="build/images/Schema.svg" />-->
<!--</section>-->
<section class="intro" id="intro">
<h1>Off-season & Back to reality</h1>
<p>Right now we're in the middle of the off-season in regards to the Startup Hack. Though, we're not staying idle.
On <b>October 2</b> we're hosting an event together with <b>Annevo</b>, with some nice food, drinks and interesting tech talks!
</p>
<p>
There are only a few spots left and it's free of charge, so hurry!
<a href="https://www.eventbrite.com/e/back-to-reality-with-gothenburg-startup-hack-tickets-71286396531">
Get your ticket here!
</a>
</p>
<button class="ghost-btn mail-button" id="subscribe-btn"><span>Click here to subscribe to our newsletter.</span>
<div class="hide-sub email-form" id="mc_embed_signup">
<form class="form" action="//gbgstartuphack.us10.list-manage.com/subscribe/post?u=1e71451bcdff8697eb1a990cb&id=905da752e2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div class="input-container">
<input class="required email" type="email" value="" name="EMAIL" id="mce-EMAIL" placeholder="Yo, enter email." required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups -->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_1e71451bcdff8697eb1a990cb_905da752e2" tabindex="-1" value=""></div>
<input class="button subscribe-btn" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe">
</div>
</form>
</div>
</button>
</section>
<!--<section class="ocean-break">-->
<!--</section>-->
<section id="info" class="info">
<h1>What is Gothenburg startup hack?</h1>
<p>We believe in the power of creating things, and the power of startup culture! By bringing together developers, creative minds and businesses we host our awesome hackathon at a new cool venue each spring to raise the starup culture of Gothenburg to even higher peaks. Perhaps your idea and your team is the next big thing, join the hackathon and find out just how good your idea is!
</p>
<p>And if not for that, join the hackathon for a day of coding, interesting sponsors, free food and snacks and all in all a very unique hackathon experince.
</p>
<!-- <p>We prefer <strong>fresh ideas</strong> and <strong>technological innovation</strong> over a solid business case. Don't worry about the numbers or the bottom line — use your imagination, think outside the box and go nuts!
<p><strong>This hack is about building stuff</strong> — a demo with just a PowerPoint presentation ain't gonna fly.
<p>We will be hosting a <strong>meetup April 3</strong> — where we'll all hang out and meet each other. Looking for a team or more team members? This is the right place to be! <a href="https://goo.gl/forms/qGsyvmu3F8CNjGmT2">Sign up for the meetup here</a>
<p>Once you have put together a versatile team, make sure to sign up before the application deadline — <strong><time datetime="2016-05-01">April 17</time></strong>.
<p>We think that the best teams are made up of people with <strong>different skills</strong> and <strong>different backgrounds</strong>.
<p>We recommend team sizes <strong>between 3 to 5 people</strong>.
<p>Finally, the hack takes place on <strong>May 11</strong>. Be prepared to hack from early in the morning 'til late in the evening.
<p>We will keep you comfortable and make sure you are fed all the way through.</p>
</section> -->
<!--h1>The winners</h1>
<p style='text-align: center'>We saw <strong>a lot</strong> of really goods hacks, and here are the ones who took home prizes!</p>
<div class="prize-category">
<div class="prize-header">
<h1>Jury's Choice</h1>
<h2 class="team-name">Surview</h2>
</div>
<div class="prize-content">
<div class="prize-team-img">
<img src="build/images/trophy.svg">
<p class="img-text">David Helldén, Henrik Nilson, Mats Högberg, Filip Hallqvist</p>
</div>
<div class="prize-team-info">
<p>Market surveys are an important part of many companies business models but it its current form it can be extremely exhausting and unrewarding for subjects. We are now changing that!</p>
<p>Enter Surview. Through text messaging based surveys, we are making surveys a more joyful experience for both customers and companies. Instead of having to answer a whole bunch of boring questions in a web form, you are simply, from the customers view, having a conversation with another person. We believe the right way to bring this idea to life is through founding a startup. There is definitely more work to be done on the subject of analyzing the data we recieve through our surveys. We are convinced there is a market out there for our more relaxed and conversational looking surveys.</p>
<a href="http://surview.herokuapp.com/" class="prize-button">Link to demo</a>
</div>
</div>
</div>
<div class="prize-category">
<div class="prize-header">
<h1>Peoples' Choice</h1>
<h2 class="team-name">The Findwizards</h2>
</div>
<div class="prize-content">
<div class="prize-team-info">
<p>Have you ever had a meeting gone off-topic? Arguing about facts outside of the presented material? Our service is called Eavesdroppr. By listening in to conversations it is able to present relevant information in an intelligent room. By utilizing speech-to-text and keyword extraction we power a search-driven solution finding the right content in the current context. You never need to stop a meeting to lookup information that you didn't anticipate you would need, it will just be provided for you. When you start using our service, you will never want to make a PowerPoint presentation again.</p>
</div>
<div class="prize-team-img">
<img src="build/images/trophy.svg">
<p class="img-text">Mickaël Delaunay, Henrik Alburg, Marcus Grennborg, Per Fredelius, Aleksandar Faraj</p>
</div>
</div>
</div>
<div class="prize-category">
<div class="prize-header">
<h1>Best Design</h1>
<h2 class="team-name">Team Winging</h2>
</div>
<div class="prize-content">
<div class="prize-team-img">
<img src="build/images/trophy.svg">
<p class="img-text">Ian Jenkins, Salvatore Tomaselli, Sérgio Batista, Rachele Mello</p>
</div>
<div class="prize-team-info">
<p>Imagine working at your desk, in front of you a coffee cup and sky-facing smartphone lying flat on your desk. Next to it, a chic cube device lights up letting you know the next tram to the home leaves in 3 minutes. Do you quickly pack and leave the office or carry on uninterrupted till the next tram?</p>
<p>
The gadget is a low cost device. The display is unusual, a lo-fi LED screen displays data in a highly abstracted way as lights using patterns or numbers giving it a retro 70’s feel. It should be fun to use and a stylish desk accessory. The device is controlled by apps installed online which connects via wifi. The user can use apps to customize information to be displayed on the device. Online a user can interact with the app on a familiar level and so intuitively understand the abstracted data displaying on the desk. An app could be set up to show tram times leaving a selected stop, tasks left via google, messages and so on. App development should be opensource so any user could build and share useful abstractions. The device’s only interaction is a touch sensitive area to cycle through apps. The device is also modular and can be joined together to several devices changing its shape to create a larger screen or cube which adds fun and increased functionality.
</p>
</div>
</div>
</div>
<div class="prize-category">
<div class="prize-header">
<h1>Best Technical Solution</h1>
<h2 class="team-name">The Findwizards</h2>
</div>
<div class="prize-content">
<div class="prize-team-info">
<p>Have you ever had a meeting gone off-topic? Arguing about facts outside of the presented material? Our service is called Eavesdroppr. By listening in to conversations it is able to present relevant information in an intelligent room. By utilizing speech-to-text and keyword extraction we power a search-driven solution finding the right content in the current context. You never need to stop a meeting to lookup information that you didn't anticipate you would need, it will just be provided for you. When you start using our service, you will never want to make a PowerPoint presentation again.</p>
</div>
<div class="prize-team-img">
<img src="build/images/trophy.svg">
<p class="img-text">Mickaël Delaunay, Henrik Alburg, Marcus Grennborg, Per Fredelius, Aleksandar Faraj</p>
</div>
</div>
</div>
<div class="prize-category">
<div class="prize-header">
<h1>Best Business Idea</h1>
<h2 class="team-name">VR Interior</h2>
</div>
<div class="prize-content">
<div class="prize-team-img">
<img src="build/images/trophy.svg">
<p class="img-text">Wang Rui, Yingzhi Ning, Magnus Willner, Eike Siewertsen, Oscar Strindhagen</p>
</div>
<div class="prize-team-info">
<p>Online interior design empowered by virtual reality (VR). We built a website where customers can upload a 360 degree picture to a designer who can decorate the room in the VR environment. Using pre-modeled furnitures, the designer can then present the design to the customer in VR. If the customer likes the design, he or she can choose to purchase everything in the design as a whole and get it shipped in front of their door.</p>
<a href="http://www.bamboointerior.org" class="prize-button">Link to demo</a>
</div>
</div>
</div>
<div class="prize-category">
<div class="prize-header">
<h1>Best Hack</h1>
<h2 class="team-name">Spotfinder</h2>
</div>
<div class="prize-content">
<div class="prize-team-info">
<p>Intelligent parking system using image processing, with automated parking payment. We use cameras for detecting when parking spots are occupied, and relay this information through a phone app to drivers, as well as statistics to the parking space administrator. The app will also have the functionality to automatically pay for a parking spot during the time the car is within the parking area. The business idea is to charge a percentage of the parking fee when using our system.</p>
<a href="https://github.com/emij/SpotFinder" class="prize-button">Link to repo</a>
</div>
<div class="prize-team-img">
<img src="build/images/trophy.svg">
<p class="img-text">Jonathan Ström, Johan Gustafsson, Marika Hansson, Erik Axelsson, Emil Johansson</p>
</div>
</div>
</div>
<div class="prize-category">
<div class="prize-header">
<h1>Hackers' Choice</h1>
<h2 class="team-name">Auxiliare</h2>
</div>
<div class="prize-content">
<div class="prize-team-img">
<img src="build/images/trophy.svg">
<p class="img-text">Mikael Malmqvist, Emil Edholm, David Göransson, Johan Andersson</p>
</div>
<div class="prize-team-info">
<p>The idea is basically an app allowing ordinary Joes and Jones to help each other out with various everyday tasks. You post something you want help with, your location and what you’re willing to pay. Everyone who’s registered as a helper can now see your post on both a map based on location and in a sorted list inside the app and check it out. If they’ve got the skills they can contact you and help you out. Simple as that! Since everyone is good at something, this makes it easy for people wanting to earn a bit of extra cash at the same time as helping someone out. It could be as easy as building an IKEA-shelf for someone, or installing a new router for an old couple. Über is a great example of how how ordinary people can help each other out when in need.</p>
</div>
</div>
</div -->
<br/><br/>
<br/><br/>
<h2>Want to be a part of next year's hack?</h2>
<h2><a href="mailto:[email protected]">[email protected]</a></h2>
<footer class="standard-footer">
<div class="line"></div>
<p><strong>Not clear enough</strong>? Check out our <a class="smooth" href="#FAKK"><span>FAQ</span></a>.</p>
<p>
Still <strong>not clear enough</strong>? Any further questions are answered on <a href="mailto:[email protected]"><span>[email protected]</span></a>,<br /><a href="http://twitter.com/gbgstartuphack" title="@gbgstartuphack"><i class="icon-twitter"></i> <span>Twitter</span></a> or<a href="https://www.facebook.com/gbgstartuphack"><i class="icon-facebook"></i><span>Facebook</span></a>.
</p>
</footer>
</section>
<section id="the-day" class="the-day">
<img class="img-shown hack-background" src="build/images/the-hack-background.jpg">
<img class="img-not-shown" src="build/images/startup-arena.jpg">
<h1>The Day</h1>
<!-- <div class="btn-group">
<button class="ghost-btn active">The <strong>HACK</strong></button>
<button class="ghost-btn">Startup <strong>ARENA</strong></button>
</div> -->
<!-- There must always be more images in the first the-day-text than the second one!!!!! -->
<div class="the-day-text text-shown asdf">
Thanks to Johannes Lundqvist, <a href="https://www.instagram.com/dagensvisa/">@dagensvisa on instagram</a>, for taking these photos!<br/><br/>
<a href="build/images/hack-photos/Johannes Lundqvist - 1.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 1.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 2.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 2.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 3.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 3.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 4.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 4.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 5.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 5.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 6.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 6.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 7.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 7.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 8.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 8.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 9.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 9.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 10.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 10.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 11.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 11.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 12.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 12.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 15.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 15.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 13.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 13.JPG"></a>
<a href="build/images/hack-photos/Johannes Lundqvist - 14.JPG" data-lightbox="startuphack"><img class="lightbox-thumbnail" src="build/images/hack-photos/Johannes Lundqvist - 14.JPG"></a>
</div>
<!-- <div class="the-day-text text-not-shown">
<a href="http://placehold.it/1280x1024" data-lightbox="startuparena"><img class="lightbox-thumbnail" src="http://placehold.it/1280x1024"></a>
<a href="http://placehold.it/1280x1024" data-lightbox="startuparena"><img class="lightbox-thumbnail" src="http://placehold.it/1280x1024"></a>
<a href="http://placehold.it/1280x1024" data-lightbox="startuparena"><img class="lightbox-thumbnail" src="http://placehold.it/1280x1024"></a>
<a href="http://placehold.it/1280x1024" data-lightbox="startuparena"><img class="lightbox-thumbnail" src="http://placehold.it/1280x1024"></a>
<a href="http://placehold.it/1280x1024" data-lightbox="startuparena"><img class="lightbox-thumbnail" src="http://placehold.it/1280x1024"></a>
</div> -->
<!-- INSERT VIDEO HERE
<div class="wrapper">
<div class="video">
<iframe src="https://player.vimeo.com/video/97047846" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
-->
</section>
<!--section id="location" class="location">
<div class="location-left">
<h1>The Location</h1>
<p>We're <strong>proud</strong> to present this year's location. A location <i>Poseidon</i> himself would approve. We're on a boat. The <strong>S:t Erik</strong>. This means that you can all fulfill your dreams to become sailors!</p>
<p>Since we know all true hackers loves the sea, we have rented the most prestigious ship. From 9 to 14 we will be crusing the archipelago of the lovely city <strong>Gothenburg</strong> in our ship.</p>
<p>We will then return to shore and keep the ship stationary in order to tend to the landlubbers needs and batten down the hatches.</p>
<p><a href="https://www.google.se/maps/place/Lilla+Bommens+Hamn/@57.7117943,11.9658916,17z/data=!4m2!3m1!1s0x464ff3610ab61401:0x8755b72283d5ac25"><i class="icon-location"></i> <span>Treasure Map: The Google Maps Booty</span></a></p>
<div class="location-image-holder">
<a href="build/images/location/location-1.jpg"><img src="build/images/location/location-1-thumb.jpg" width="75" height="75"></a>
<a href="build/images/location/location-2.jpg"><img src="build/images/location/location-2-thumb.jpg" width="75" height="75"></a>
<a href="build/images/location/location-3.jpg"><img src="build/images/location/location-3-thumb.jpg" width="75" height="75"></a>
<a href="build/images/location/location-4.jpg"><img src="build/images/location/location-4-thumb.jpg" width="75" height="75"></a>
<a href="build/images/location/location-5.jpg"><img src="build/images/location/location-5-thumb.jpg" width="75" height="75"></a>
<a href="build/images/location/location-6.jpg"><img src="build/images/location/location-6-thumb.jpg" width="75" height="75"></a>
<a href="build/images/location/location-8.jpg"><img src="build/images/location/location-8-thumb.jpg" width="75" height="75"></a>
<a href="build/images/location/location-7.jpg"><img src="build/images/location/location-7-thumb.jpg" width="75" height="75"></a>
</div>
</div>
</section -->
<!--section class="sign-up" id="sign-up">
<div class="location-right">
<h1>Sign Up</h1>
<a href="https://docs.google.com/forms/d/1BuoTasOmZF877-cm1G2E7-6K9dgF9U_hU-z6u2A4SM0/viewform"><button class="ghost-btn header-btn">Sign up <strong>here</strong>.</button></a>
<p>The sign up will be open until April 29. We will evaluate every application we get. However, there is a limited number of positions available and admittance is based on different factors. Try to fill in the application as thorough as possible and make sure your hack idea is possible to do during one day.</p>
<p>You are allowed to send in more than one idea, but write in the form which idea you prefer so we know.</p>
<p>The sign-up isn't open yet, but it'll open up soon!</p>
<p>Keep yourself up to date by checking out our <a href="http://twitter.com/gbgstartuphack" title="@gbgstartuphack"><i class="icon-twitter"></i><span>Twitter</span></a> or<a href="https://www.facebook.com/gbgstartuphack"><i class="icon-facebook"></i><span>Facebook</span></a></p>
</div>
</section-->
<!--section class="match-up" id="match-up">
<div>
<h1>Matchup Space</h1>
<p>Sometimes you can't help but to feel like you're alone. But don't you worry, we're here to fix that. If you're a lone hacker that's <strong>looking for a team</strong> you can find it below.</p>
<p>Not only that, but it might be that your team is desperately <strong>looking for a member</strong> to fill a certain space in your heart, or team. My friend, you can find that below as well.</p>
<p>Below you can either let us match you with a team, or let us find you a member. <strong>Or</strong>, you could head over to the matchup space to try to get in contact with other real life persons by yourself.</p>
<div class="match-up-links">
<a href="https://docs.google.com/forms/d/17axlk7bDfYMOfK-FD9t-NWf-pkLHTW0HryGBrXLY3rY/viewform" class="location-right">
<h2>Let us match you.</h2>
<i class="fa fa-user"></i>
</a>
<a href="https://www.facebook.com/groups/1399972033646075/" class="location-left">
<h2>Check out the matchup space.</h2>
<i class="fa fa-users"></i>
</a>
</div>
</div>
</section-->
<!-- section id="jury" class="jury">
<h1>The jury</h1>
<p>This year the hackers will be joined by an totally awesome jury consisting of one designer, one developer and two visionaries. With their passion, knowledge and awesomeness, they will give feedback to all the hackers on their projects and find the winners of some categories.</p>
<div class="jury-images">
<div class="juror">
<img src="build/images/jurors/ellen.jpg" class="juror-img">
<h2>Ellen Sundh</h2>
<p class="juror-info">
Ellen Sundh from Coda Collective represents the tech side of our "tech, vision, design"-trinity.
Her business card reads "Creative technologist at Coda Collective" which uses the latest technology in both electronics and programming to develop interactive campaigns and tools. We're talking stuff which happens in real time, both on the web and in physical spaces. Check out all their cool creations over at <a href="http://codacollective.com">codacollective.com</a>! I did, and now I'm looking for ways to sneak a hardware component into all software projects I do.
</p>
</div>
<div class="juror">
<img src="build/images/jurors/stefan.jpg" class="juror-img">
<h2>Stefan Thomson</h2>
<p class="juror-info">
The design side in our trinity is Stefan Thomson of Forsman & Bodenfors.
Stefan works as digital creator at Forsman & Bodenfors and has been pushing the state of the art in digital communications forward since the 90's. Forsman & Bodenfors creates world-class advertising, combining traditional channels with digital opportunities to take communication to the next level. Take a look at <a href="http://www.fb.se">www.fb.se</a> for more information.
</p>
</div>
</div>
<div class="jury-images">
<div class="juror">
<img src="build/images/jurors/miriam.jpg" class="juror-img">
<h2>Miriam Grut Norrby</h2>
<p class="juror-info">
One of the visionaries in our "tech, vision, design"-trinity is Miriam Grut Norrby of Schibsted Media Group. Welcome aboard!
Miriam has over ten years of experience in digital media, internet and consumer services. Miriam has experience as an investor, advisor, entrepreneur, and in several operational positions, most recently on the Global Marketing Solutions team at Facebook. She currently serves on the board of directors of Lendo, Prisjakt, Kundkraft, Mittbolån and Suredo. Find out more at <a href="http://www.schibsted.com">www.schibsted.com</a>!
</p>
</div>
<div class="juror">
<img src="build/images/jurors/tim.jpg" class="juror-img">
<h2>Tim He</h2>
<p class="juror-info">
The other visionary is Tim He from Northzone!
Tim joined Northzone in 2013. His primary areas of focus are ecommerce, consumer internet and SaaS. His portfolio includes Footway/Brandos, Fishbrain and Universal Avenue. Tim has a strong interest in artificial intelligence and business models enabled by proprietary databases.
</p>
</div>
</div>
</section -->
<!--section id="categories" class="prize-categories">
<h1>The prize categories</h1>
<p>Gothenburg Startup Hack is not only about creating something cool. We want to award those people who put their soul and passion into their projects. Therefore we have six different prize catagories. So even if your backend fails in the last hour, or flexbox screws up your design a minute before the demo session, you still have a chance of winning! The most important thing although is of course that you actually build something!</p>
<div class="categories">
<div class="prize-category">
<h2>Jury's Choice</h2>
<p>The hack that has it all! Business idea, design and technical solution. You should all aim for this one!</p>
</div>
<div class="prize-category">
<h2>Peoples' Choice</h2>
<p>Ten hacks, chosen by the hackers, will pitch for the audience at Startup Arena during the night, but only one of those will win. It is all up to the audience!</p>
</div>
</div>
<div class="categories secondary">
<div class="prize-category">
<h2>Best Design</h2>
<p>We do not only want to encourage an awesome backend, a good product need a good design!</p>
</div>
<div class="prize-category">
<h2>Best Technical Solution</h2>
<p>Every product need some nice code, right? Maybe not the most advanced code, something that really impress!</p>
</div>
<div class="prize-category">
<h2>Best Business Idea</h2>
<p>Even though it is not mandatory at a hackathon, a good vison for the hack should always be rewarded!</p>
</div>
<div class="prize-category">
<h2>Best Hack</h2>
<p>Not all hacks maybe have the most neat code. Some have really "interesting" solutions... Of course one of those should be awarded too!</p>
</div>
</div>
</section-->
<section id="partners" class="partners">
<h1>The Partners</h1>
<section class="garden-all">
<div class="garden spotify">
<div class="logo">
<a href="https://www.spotify.com"><img src="build/images/sponsors/spotify.png"></a>
</div>
<p>Spotify transformed music listening forever when it launched in Sweden in 2008.
Discover, manage and share over 50m songs for free, or upgrade to Spotify Premium to access
exclusive features including offline mode, improved sound quality, Spotify Connect and ad-free listening.<br/>
Today, Spotify is the largest global audio streaming subscription service with 217m users, including 100m subscribers,
across 79 markets. We are the largest driver of revenue to the music business today.
</p>
<a href="https://www.spotify.com">spotify.com</a>
</div>
<div class="garden">
<div class="logo">
<a href="https://www.knowit.se"><img src="build/images/partnershiplogos/knowit-green.png" /></a>
</div>
<p>
Knowit is all about digitalization and helping companies and organizations transform into the digital age with
sustainability and humanity in mind. With talented consultants with a broad set of skills, Knowit drives innovation all across society.
Knowit Systems Development is a part of the Solutions branch,
focused on delivering world class performance with local presence to clients in need of
developers and UX-designers in and around Gothenburg.
</p>
<a href="https://www.knowit.se">knowit.se</a>
</div>
<div class="garden">
<div class="logo">
<a href="https://www.volvogroup.com"><img src="build/images/partnershiplogos/volvogroup.jpg" /></a>
</div>
<p>
At Volvo Group we are building Android. That’s right ;) Volvo is not only a strong vehicle company but also has passionate Android developers.
Here we are in the heart of world-leading Android dev in the automotive industry. We develop apps and services for the best digital customer experience ever.
</p>
<a href="https://www.volvogroup.com">Volvogroup.com</a>
</div>
<!--<div class="garden">-->
<!--<div class="logo">-->
<!--<a href="http://burt.io"><img src="build/images/partnershiplogos/burt-logo.png"></a>-->
<!--</div>-->
<!--<p>Burt is the fastest growing big data analytics and visualisation platform for media and entertainment. We're currently hiring ambitious engineers, designers, data scientists and business developers to expand our Gothenburg headquarters and NYC footprint.</p>-->
<!--<a href="http://burt.io">burt.io</a>-->
<!--</div>-->
<!--<div class="garden">-->
<!--<div class="logo">-->
<!--<a href="https://www.varvet.com"><img src="build/images/partnershiplogos/varvet.png" /></a>-->
<!--</div>-->
<!--<p>-->
<!--We are Varvet. We’re developers and designers that craft digital products and services that help our customers change.-->
<!--Change the way you work. Change the way you sell. Change the way you communicate. Change the world.-->
<!--</p>-->
<!--<p>Twitter: <a href="https://twitter.com/varvet">@varvet</a></p>-->
<!--<a href="https://www.varvet.com">varvet.com</a>-->
<!--</div>-->
<!--<!– copy paste garden below and change picture, text and link to add new garden –>-->
<!--<!– <div class="garden">-->
<!--<div class="logo">-->
<!--<a href="http://gbgstartuphack.com/partner"><img src="build/images/partnershiplogos/upcoming.svg"></a>-->
<!--</div>-->
<!--<p>We will continuously announce new partners. We got a couple in stock. Wanna find out what we got? Check in again <strong>Friday, May 1</strong> when we will update.</p>-->
<!--<a href="http://gbgstartuphack.com/partner">Partner up!</a>-->
<!--</div> –>-->
</section>
<section class="flower-all">
<div class="flower">
<div class="logo">
<a href="https://mullvad.net/en/"><img src="build/images/partnershiplogos/mullvad.png"></a>
</div>
<p>Mullvad is a VPN service offering world-class, online privacy.
Our service helps keep users' online activity, identity, and location private. Mullvad circumvents censorship and thwarts eavesdropping from Wi-Fi hackers to local-government mass surveillance. We keep no activity logs and require no personal information.
Our goal is to make Internet censorship and mass surveillance ineffective. Privacy is a universal right.</p>
<a href="https://mullvad.net/en/">mullvad.net</a>
</div>
<div class="flower">
<div class="logo">
<a href="http://annevo.com"><img src="build/images/partnershiplogos/annevo.png" /></a>
</div>
<p>Annevo is an innovation- and technology-focused consulting company in Gothenburg offering product development services and digital solutions.
Via Annevo Studios employees have the opportunity to create their own concepts and build prototypes, whereupon both as an employee and via external partners they may seek investment support from Annevo.
Funding startups such as RGNT Motorcycles, Otis Bikes, Podmosphere.
</p>
<a href="http://annevo.com">Annevo.com</a>
</div>
<div class="flower">
<div class="logo">
<a href="https://creativeloop.se"><img src="build/images/partnershiplogos/creativeloop-black.svg"></a>
</div>
<p>Creative Loop is our take on a creative and laid back office made specifically for people who are designers, developers, photographers, social media gurus, entrepreneurs and so on.</p>
<a href="https://creativeloop.se">creativeloop.se</a>
</div>
<div class="flower">
<div class="logo">
<a href="http://www.consid.se/en/"><img src="build/images/partnershiplogos/consid.png" /></a>
</div>
<p>Consid is one of Sweden's fastest growing companies which provides consulting services within IT, management and digital marketing. Our mission is to ensure that our clients becomes the best in the world at what they do. Welcome to Consid – the world of high performers.</p>
<a href="http://www.consid.se/en/">consid.se</a>
</div>
<!--div class="flower">
<div class="logo">
<a href="https://www.iteam.se"><img src="build/images/partnershiplogos/iteam.png"></a>
</div>
<p>We digitalize companies and organizations through strategy, code and culture. With that, we create innovative technological solutions that create value, do good and let us have fun along the way. We're 30 (and counting) located in Göteborg and Stockholm. Our customers include Stena Oil, Vimla and Taxi Stockholm.</p>
<a href="https://www.iteam.se">iteam.se</a>
</div -->
<div class="flower">
<div class="logo">
<a href="https://www.recordedfuture.com"><img src="build/images/partnershiplogos/recordedfuture.svg"></a>
</div>
<p>
Recorded Future’s mission is to empower our customers with real-time threat intelligence, to defend their organizations against threats at the speed and scale of the Internet. With billions of indexed facts, and more added every day, our patented Web Intelligence Engine continuously analyzes the entire Web to give you unmatched insight into emerging threats. Recorded Future helps protect four of the top five companies in the world, and over 7000 IT security professionals use Recorded Future everyday.
</p>
<a href="https://www.recordedfuture.com">recordedfuture.com</a>
</div>
<!--div class="flower">
<div class="logo">
<a href="https://www.46elks.com"><img src="build/images/partnershiplogos/46elks.svg" /></a>
</div>
<p>
At 46elks we think that communications should be easy. This is why we supply a simple REST API for SMS, Voice and MMS. All the power of the telecom networks at your fingertips. Create your own account and try yourself at <a href="https://www.46elks.com">46elks.com</a>.
</p>
<a href="https://www.46elks.com">46elks.com</a>
</div -->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://findwise.com"><img src="build/images/partnershiplogos/Findwise.png"></a>-->
<!--</div>-->
<!--<p>We are vendor independent IT consultants within search, findability and big data. We help clients find, analyze and act upon information by providing strategy, custom search applications and expert guidance. Our 100+ consultants have worked with over 300 clients - local and global, private and public – in over 800 tailored findability projects.</p>-->
<!--<a href="http://findwise.com">findwise.com</a>-->
<!--</div>-->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://www.goteborg.com"><img src="build/images/partnershiplogos/naringslivsgruppen-logo.png"></a>-->
<!--</div>-->
<!--<p>Näringslivsgruppen at Göteborg & Co is a collaboration platform between the academia, the private industry and the city & region of Gothenburg. We initiate and support different projects that boost entrepreneurship and create great conditions for innovative and creative people to live and work in Gothenburg.</p>-->
<!--<a href="http://www.goteborg.com">goteborg.com</a>-->
<!--</div>-->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://www.greenbyte.se">-->
<!--<img src="build/images/partnershiplogos/greenbyte.svg" />-->
<!--</a>-->
<!--</div>-->
<!--<p>-->
<!--We at Greenbyte love to juggle ideas with like-minded people. We love talking tech, theoretical architectures, as well as past and future solutions. Maybe you can learn something from us, and maybe we can learn something from you?-->
<!--Greenbyte makes industry-leading software to monitor, analyze and optimize renewable energy plants around the globe. As one of Sweden’s fastest growing companies in tech, Greenbyte is a team of young professionals on a mission to convert more renewable resources into electricity.-->
<!--</p>-->
<!--<a href="http://www.greenbyte.se">greenbyte.se</a>-->
<!--</div>-->
<!--<!–<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://www.schibsted.com"><img src="build/images/partnershiplogos/schibsted.jpg"></a>-->
<!--</div>-->
<!--<p>-->
<!--Schibsted Media Group is an international media group with 6900 employees in 30 countries. Our strategy to become a global leader within our fields is bold. It consists of three elements that work seamlessly together: Classifieds, Growth and Media houses.-->
<!--</p>-->
<!--<a href="http://www.schibsted.com">schibsted.com</a>-->
<!--</div>-->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://www.wahlinlaw.se"><img src="build/images/partnershiplogos/wahlin.png"></a>-->
<!--</div>-->
<!--<p>-->
<!--Wåhlin specializes in business law. We have broad legal knowledge as well as spearhead expertise in a wide range of legal areas. Wåhlin has extensive experience of working with owner-managed businesses and startup companies. We love helping businesses with their fresh ideas and technical innovations, and are therefore excited to be a partner in Gothenburg Startup Hack. You are welcome to visit us in Gothenburg, Stockholm, Helsingborg and Malmo.-->
<!--</p>-->
<!--<a href="http://www.wahlinlaw.se">wahlinlaw.se</a>-->
<!--</div>–>-->
<!-- copy paste flower below and change picture, text and link to add new flower -->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://qualitythink.se"><img src="http://qualitythink.se/wp-content/uploads/2016/12/Qualitythink_Logotyp.png"/></a>-->
<!--</div>-->
<!--<p>Quality Think is the next generation of consultant agency that is helping fellow Thinkers to realise their own startup ideas! We are currently looking for innovative interaction designers and talented java-, frontend- and mobile-developers. Find out more at <a href="http://qualitythink.se">www.qualitythink.se</a>.</p>-->
<!--<a href="http://qualitythink.se">qualitythink.se</a>-->
<!--</div>-->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://server.pro"><img src="build/images/partnershiplogos/serverpro.png" /></a>-->
<!--</div>-->
<!--<p>Server.pro is the World’s largest game server provider for Minecraft, based in Gothenburg. With 4 million users and growing we want to provide the best hub for gamers that want to grow and monetize their gaming communities. More games and exciting new products in 2017’s pipeline.-->
<!--<br /><br />-->
<!--We are now looking for new talents, front-, backend and full stack developers who wants to help us build the best solution for future gamers that demands the highest quality services.-->
<!--</p>-->
<!--<a href="http://server.pro">server.pro</a>-->
<!--</div>-->
<!-- <div class="flower"> -->
<!-- <div class="logo"> -->
<!-- <h1>Your Logo Here</h1> -->
<!-- </div> -->
<!-- <p>Want your logo here? Contact <a href="mailto:[email protected]">[email protected]. -->
<!-- Check out our <a class="smooth" href="http://www.gbgstartuphack.com/partner">sponsorship page</a> to learn more.</p> -->
<!-- </div> -->
</section>
<section class="seed-all">
<div class="seed">
<div class="logo">
<a href="https://cellink.com"><img src="build/images/partnershiplogos/cellink.svg"></a>
</div>
</div>
<div class="seed">
<div class="logo">
<a href="www.photographyandsons.se"><img src="build/images/partnershiplogos/photographyandsons.png"></a>
</div>
</div>
<div class="seed">
<div class="logo">
<a href="https://www.fello.se"><img src="build/images/partnershiplogos/fello.png"></a>
</div>
</div>
<div class="seed">
<div class="logo">
<a href="http://zalster.com/"><img src="build/images/partnershiplogos/zalster.png"></a>
</div>
</div>
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://nocco.se"><img src="build/images/partnershiplogos/nocco.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://nobealoevera.se"><img src="build/images/partnershiplogos/nobe.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.framtidensforetag.se"><img src="build/images/partnershiplogos/framtidensforetag-logo.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.venturecup.se"><img src="build/images/partnershiplogos/venturecup-logo.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.drivhuset.se"><img src="build/images/partnershiplogos/drivhuset-logo.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.entrepreneur.chalmers.se"><img src="build/images/partnershiplogos/chalmersentrepreneurship-logo.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://collaboratory.se"><img src="build/images/partnershiplogos/collaboratory.jpg"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://grownordic.com"><img src="build/images/partnershiplogos/grow-nordic.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://yrgo.se/"><img src="build/images/partnershiplogos/yrgo-logo.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://newminds.se"><img src="build/images/partnershiplogos/new-minds.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="https://www.hackerearth.com"><img src="build/images/partnershiplogos/hacker-earth.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="https://aws.amazon.com/"><img src="build/images/partnershiplogos/aws.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.inceptive.se"><img src="build/images/partnershiplogos/inceptive.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.uptive.se"><img src="build/images/partnershiplogos/uptive.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--<!–h2>Prize Partners</h2>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.google.com"><img src="build/images/partnershiplogos/google-logo.png"></a>-->
<!--</div>-->
<!--</div–>-->
<!--<!–h2>Networking Partners</h2>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://www.drivhuset.se"><img src="build/images/partnershiplogos/drivhuset-logo.png"></a>-->
<!--</div>-->
<!--</div–>-->
<!--<!–h2>Featured in</h2>-->
<!--<div class="seed">-->
<!--<div class="logo">-->
<!--<a href="http://swedishstartupspace.com/2015/03/09/the-hack-is-back-on-a-boat/"><img src="build/images/partnershiplogos/swedishstartupspace-logo.png"></a>-->
<!--</div>-->
<!--</div>-->
<!--</section–>-->
<!--<section class="flower-all">-->
<!--<h2>Huge thanks to</h2>-->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="https://www.bahnhof.se"><img src="build/images/partnershiplogos/bahnhof.png" /></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="flower">-->
<!--<div class="logo">-->
<!--<a href="http://sv.opera.se"><img src="build/images/partnershiplogos/operan.png" /></a>-->
<!--</div>-->
<!--</div>-->
</section>
<footer class="standard-footer">
<div class="line"></div>
<h2>Feel like your brand is missing?</h2>
<a href="/partner"><button class="ghost-btn mail-btn">Check out our partnership page</button></a>
</footer>
</section>
<!--section id="crew" class="crew">
<h1>The Crew</h1>
<div class="people-grid">
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/kabat.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Caroline Kabat</h2>
<p>Knows Fortran like be back of her own hand, ask her any Fortran related questions you have!</p>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/cedrik.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Cedrik Sjöblom</h2>
<p>Owns like four yacht. Dreams that one day he'll become a boat himself.</p>
<a href="https://twitter.com/intent/follow?screen_name=mynameiscedrik"><button>Follow on <i class="icon-twitter"></i></button></a>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images//profilepictures/tveitan.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Johannes Tveitan</h2>
<p>Addicted to coffee, can’t say no to new things and thinks about 42</p>
<a href="https://twitter.com/intent/follow?screen_name=tveitan"><button>Follow on <i class="icon-twitter"></i></button></a>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/amanda.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Amanda Strömsten</h2>
<p>The happy bird of the team. Almost forgot to order food for her own wedding while ordering your swag.</p>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/horv.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Horv</h2>
<p>What Horv can do with a computer, most people can't do at all. That doesn't make any sense. But it's true. What?</p>
<a href="http://se.linkedin.com/in/johanhorvandersson"><button>Follow on <i class="icon-linkedin"></i></button></a>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/tove.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Tove Larsson</h2>
<p>Tove's got it all under control! Ain't a problem she can't fix.</p>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/rolen.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Andreas Rolén</h2>
<p>Knows everyone. Really no need for any presentation since he already knows you.</p>
<a href="https://twitter.com/intent/follow?screen_name=adderollen"><button>Follow on <i class="icon-twitter"></i></button></a>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/widar.png)">
</div>
<div class="people-text">
<span></span>
<h2>Widar</h2>
<p>Without doubt the coolest guy in the whole gang. Just look at that swag. ❤ ❤ ❤ ❤ ❤ ❤ ❤ ❤ ❤ ❤</p>
<a href="https://twitter.com/intent/follow?screen_name=widar"><button>Follow on <i class="icon-twitter"></i></button></a>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/materne.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Hanna Materne</h2>
<p>Own four trains and two original Apple ][. Has weirdly never seen a living eagle.</p>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/tomas.png)">
</div>
<div class="people-text">
<span></span>
<h2>Tomas Ohlson</h2>
<p>When he's not busy changing the world for the better, he takes care of stray kittens.</p>
<a href="https://twitter.com/intent/follow?screen_name=ohlsont"><button>Follow on <i class="icon-twitter"></i></button></a>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/bjoreman.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Fredrik Björeman</h2>
<p>Host of some of the best swedish podcasts in existence and an all around nice nerd.</p>
<a href="https://twitter.com/intent/follow?screen_name=bjoreman"><button>Follow on <i class="icon-twitter"></i></button></a>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/thinner.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Erik Larkö</h2>
<p>Brewer, nerd, owns a cat. 'nuf said.</p>
</div>
</div>
<div class="people">
<div class="people-picture" style="background-image: url(build/images/profilepictures/sella.jpg)">
</div>
<div class="people-text">
<span></span>
<h2>Tomas Selldén</h2>
<p>Starred in the 1926 version of Metropolis and has won the world championship in cinnamon bun baking.</p>
</div>
</div>
</div>
</section -->
<section id="last-year" class="last-year">
<h1>Memories ❤</h1>
<div class="last-year-grid">
<div class="content-holder">
<img src="build/images/lastyear1.jpg">
<div>
<h3>100</h3>
<h4>teams</h4>
</div>
</div>
<div class="content-holder">
<img src="build/images/lastyear2.jpg">
<div>
<h3>400</h3>
<h4>hackers</h4>
</div>
</div>
<div class="content-holder">
<img src="build/images/lastyear3.jpg">
<div>
<h3>2</h3>
<h4>tents</h4>
</div>
</div>
<div class="content-holder">
<img src="build/images/lastyear4.jpg">
<div>
<h3>3</h3>
<h4>towers</h4>
</div>
</div>
</div>
<div class="wrapper">
<div class="video">
<iframe src="http://www.youtube.com/embed/SR9Cr6t8qmY"></iframe>
</div>
</div>
<!-- <h2>Join us this year and make <strong>new</strong> memories.</h2> -->
</section>
</main>
<footer class="main-footer">
<div class="line"></div>
<h2>Want to be a part of next year's hack?</h2>
<h2><a href="mailto:[email protected]">[email protected]</a></h2>
<div class="line"></div>
<div class="social-media">
<a href="https://www.facebook.com/gbgstartuphack"><h3><i class="icon-facebook"></i> Facebook</h3></a>
<a href="http://twitter.com/gbgstartuphack" title="@gbgstartuphack"><h3><i class="icon-twitter"></i> Twitter</h3></a>
<a href="https://twitter.com/search?q=%23gbgstartuphack&src=typd" title="#gbgstartuphack"><h3><i class="icon-hashtag"></i> gbgstartuphack</h3></a>
<a href="https://instagram.com/gbgstartuphack" title="#gbgstartuphack"><h3><i class="icon-instagram"></i> Instagram</h3></a>
</div>
<div class="line"></div>
<div class="news">
<h2>Press</h2>
<p>Check out our <a href="http://www.mynewsdesk.com/se/gbgstartuphack">newsroom at MyNewsdesk</a>.</p>
</div>
<div class="line"></div>
<h4>Give me the Konami-code. With love, by John, Max and Tikka.</h4>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="build/scripts/main.js"></script>
<script src="https://platform.twitter.com/widgets.js"></script>
<script src="scripts/vendor/countdown.min.js"></script>
<!-- Magnific Popup core JS file -->
<script src="scripts/vendor/jquery.magnific-popup.js"></script>
<!-- Mail Chimp -->
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script>
<!-- ElevatorJS -->
<script type="text/javascript" src="scripts/vendor/elevator.min.js"></script>
<script>
window.onload = function() {
var elevator = new Elevator({
element: document.querySelector('.elevator-button'),
mainAudio: 'res/audio/elevator_music.mp3',
endAudio: 'res/audio/elevator_ding.mp3'
});
}
</script>
<script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery.noConflict(true);
</script>
<!-- MyNewsDesk -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//www.mynewsdesk.com/javascripts/follow-button.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","mynewsdesk-fjs");
</script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-47202681-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript" src="scripts/lightbox.min.js"></script>
</body>
</html>