-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
986 lines (819 loc) · 41.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" />
<title>Gothenburg Startup Hack - May 3 / 2014 #GBGStartupHack</title>
<link type="text/css" href="build/css/master.css" rel="stylesheet" />
<link type="text/css" href="build/css/magnific-popup.css" rel="stylesheet" />
<link href="http://fonts.googleapis.com/css?family=Pacifico|Open+Sans:700,300,400,600" rel="stylesheet" />
<link rel="shortcut icon" href="images/favicon.png" />
<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" name="keywords" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Gothenburg Startup Hack" property="og:title">
<meta content="website" property="og:type">
<meta itemprop="url" content="http://gbgstartuphack.com/" property="og:url">
<meta itemprop="image" content="http://gbgstartuphack.com/images/startuphack-city.jpg" property="og:image">
<meta itemprop="description" content="Bring your idea to our vault and realize it. This hackathon is about turning great ideas into cool prototypes. You will meet the startup community, learn, create and have fun!" property="og:description">
</head>
<body itemscope itemtype="http://schema.org/Event">
<header role="banner" class="header">
<h1 class="reveal" itemprop="name">
<em>Gothenburg</em> Startup Hack
</h1>
<p class="reveal tagline">
Bring your idea to our <a class="smooth light-on-dark" href="#the-location">Vault</a> and realize it. You will meet the startup community, learn, create and have fun!
</p>
<h2 class="reveal"><span itemprop="startDate" content="2014-05-03T08:00">May 3 2014</span> at
<a class="smooth light-on-dark" href="#the-location" itemprop="location">Chalmerska Huset</a></h2>
<p class="reveal read-more-container watch-video">
<button class="btn-white large" id="watch-video" title="Video shot from The Meetup (April 1)">Watch our intro video</button>
</p>
<a href="#" id="vault-button">♥</a>
<div id="meetup-video" class="fade">
<a class="close" title="Close video">✕</a>
<iframe src="//player.vimeo.com/video/91508376?title=0&byline=0&portrait=0&color=ff0179&api=1"
id="meetup-video-player"
width="500"
height="281"
frameborder="0"
webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
</div>
</header>
<main>
<section class="white-box intro">
<p><strong>This hackathon is about</strong> turning great ideas into cool prototypes.</p>
<p><strong>This hackathon is about</strong> igniting the startup community, celebrating creativity and opening up the world of tech to more people.</p>
<p>Also, code. ❤</p>
<a href="#the-hack" class="smooth link-unstyled"><i class="icon-arrow-down read-more"></i></a>
</section>
<section class="the-event">
<h1 class="hidden">The Hack</h1>
<ul class="list tab-switch">
<li><a class="current" href="#the-hack">The Hack</a></li>
<li><a href="#the-party">The Party</a></li>
<li><a href="#the-open-track">The Open Track</a><i class="bubble">New</i></li>
</ul>
<section class="during-the-day" id="the-hack">
<h1>During the Day</h1>
<div class="text-box text-columns">
<p>You and your team have exactly one day to turn your product idea into a working prototype.
<p>Use your time wisely — at the end of the day you will take the stage to demo what you have built.
<p>The day starts when you enter the Vault. We will show you to your seats and help you get set up — the goal is to get up and running with the hacking.
<p>During lunch, we will all take a break and eat together — a good opportunity to meet with other hackers and share ideas.
<p>We will keep hacking until sunset — this is when we start the demos. Be sure to pay attention and remember your favorite teams — the winning team will be decided through majority vote.
<p>Oh, and by the way. The day ends with a huge-ass <a href="#the-party">party</a>!
</div>
</section>
<section class="during-the-night" id="the-party">
<h1>During the Night</h1>
<div class="text-box">
<p>
All great days end with a great party. It's for everyone attending the hack and their friends.
<a href="https://www.facebook.com/events/1375588442712582/permalink/1415062012098558">Read more in the post</a> in the Facebook event.
</p>
<p>
We are also super excited to have the mighty <a href="http://dunderpatrullen.nu/">Dunderpatrullen</a> playing during the evening!
</p>
<p class="center">
<a href="https://www.facebook.com/events/1375588442712582/" class="btn-facebook">
<i class="icon-facebook"></i> Visit event page at Facebook</a>
</p>
</div>
</section>
<section class="the-open-track" id="the-open-track">
<h1>The Open Track</h1>
<div class="text-box">
<div class="text-columns">
<p>Won’t participate in the hack but would love to be there and take part of the vibe? The Open Track is for you!</p>
<p>This workshop series is aligned with our purpose to bring together the startup community, celebrate creativity and open up the world of tech to more people.</p>
<p>We will kick off with an exciting life story told by one of Gothenburg’s entrepreneurial legends. After this, four different startups will host sessions on topics relevant to us all.</p>
<p>The series is open for anyone interested in startups. It is drop-in based and doesn’t require formal pre-registration. In-between the workshops, guided tours down to the bank vault are offered.</p>
</div>
<p class="center">
<a href="https://www.facebook.com/events/219761364901592/" class="btn-facebook">
<i class="icon-facebook"></i> Visit event page at Facebook</a>
<a href="flyer_theopentrack.pdf" class="btn-white"><i class="icon-arrow-down"></i> Download Open Track agenda</a>
</p>
</div>
</section>
<img src="build/images/during-the-day.jpg" data-id="the-hack" class="the-hack-back" alt="The Hack" />
<img src="build/images/fest.jpg" data-id="the-party" class="the-party-back" alt="The Party" />
<img src="build/images/the-open-track.jpg" data-id="the-open-track" class="the-open-track-back" alt="The Open Track" />
</section>
<section class="white-box practical-info">
<h1>Practical info</h1>
<p>Gothenburg Startup Hack is about <strong>building and demoing a product prototype</strong>.
<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 are hosting a <a href="https://www.facebook.com/events/628014860580893" target="_blank">meetup on April 1</a><a class="fb-link" href="https://www.facebook.com/events/628014860580893" target="_blank"> <i class="icon-facebook"></i></a> — where we all hang out and meet each other. Looking for a team or more team members? This is the right place to be!
<p>Once you have put together a versatile team, make sure to sign up before the application deadline — <strong><time datetime="2014-04-13">April 13</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 3</strong>. Be prepared to hack from early in the morning till late in the evening.
<p>We will keep you comfortable and make sure you are fed all the way trough to the <a href="https://www.facebook.com/events/1375588442712582" target="_blank">epic party</a><a class="fb-link" href="https://www.facebook.com/events/1375588442712582" target="_blank"> <i class="icon-facebook"></i></a>.
<a href="https://www.facebook.com/events/1375588442712582" target="_blank"></a>
<footer>
<p>Questions? Please see our <a class="smooth" href="#questions">FAQ</a></p>
<p>
Any further questions are answered on <a href="mailto:info@gbgstartuphack.com">info@gbgstartuphack.com</a>,<br /><a href="http://twitter.com/gbgstartuphack" title="@gbgstartuphack">Twitter</a> or <a href="https://www.facebook.com/gbgstartuphack">Facebook</a>.
</p>
</footer>
</section>
<section id="the-location" class="the-location">
<h1>The Location</h1>
<div>
<div class="text-box">
<h3>The Inside (Hacker) Job</h3>
<p>We're proud to host Gothenburg Startup Hack inside of one of Gothenburg's
most prestigious buildings: Chalmerska Huset.</p>
<p>
Forget garages and offices: come and take the chance to write your code among marble, teak, copper and chandeliers.
</p>
<p>
The only thing we can't guarantee is that your product will be as secure as the vault it was built in.
</p>
<section itemprop="location" itemscope itemtype="http://schema.org/PostalAddress" class="location-address">
<h4 itemprop="name">Chalmerska Huset</h4>
<p class="address">
<span itemprop="streetAddress">Södra Hamngatan 11</span>, <span itemprop="addressLocality">Gothenburg</span>
</p>
<p>
<a class="light-on-dark" href="https://www.google.com/maps/preview/place/S%C3%B6dra+Hamngatan+11,+411+14+G%C3%B6teborg,+Sverige/@57.7056825,11.963654,17z/data=!3m1!4b1!4m2!3m1!1s0x464ff366661bc2b9:0x21b480daf83d7493">
<i class="icon-location"></i> Google Maps →</a>
</p>
</section>
<section class="gallery location-gallery">
<a href="build/images/location-1.jpg"><img src="build/images/location-1-thumb.jpg" /></a><a href="build/images/location-2.jpg"><img src="build/images/location-2-thumb.jpg" /></a><a href="build/images/location-3.jpg"><img src="build/images/location-3-thumb.jpg" /></a><a href="build/images/location-4.jpg"><img src="build/images/location-4-thumb.jpg" /></a><a href="build/images/location-5.jpg">
<img src="build/images/location-5-thumb.jpg" /></a><a href="build/images/location-6.jpg"><img src="build/images/location-6-thumb.jpg" /></a>
</section>
</div>
</div>
</section>
<section class="the-sponsors content">
<h1>The Sponsors</h1>
<div class="group flower">
<section class="column half spotify">
<h2>
<a title="Spotify" href="http://www.spotify.com/">
<img src="images/sponsors/spotify.png" alt="Spotify" />
</a>
</h2>
<p>Every day, millions of people around the world soundtrack their lives with Spotify.</p>
<p><a href="http://www.spotify.com/">Spotify.com</a></p>
</section>
<section class="column half dropbox">
<h2>
<a title="Dropbox" href="http://dropbox.com/">
<img src="images/sponsors/dropbox.png" alt="Dropbox" />
</a>
</h2>
<p>Dropbox is one of the fastest growing startups in the world. We have a service that touches over 200 million users in 200 countries. We’re building the next great technology company and are looking for world-class graduate talent from all backgrounds (social science, finance, engineering) to develop our operations internationally!</p>
<p><a href="http://www.dropbox.com/">Dropbox.com</a></p>
</section>
</div>
<div class="group flower">
<section class="column half antura">
<h2>
<a title="Antura" href="http://www.antura.se/">
<img src="images/sponsors/antura.png" alt="Antura" />
</a>
</h2>
<p>
Antura develops innovative and cutting edge solutions for enterprise project- and portfolio management. The product Antura Projects has over 100,000 satisfied users worldwide. Antura is recognized as no 24 of Sweden's 50 most innovative and hyped growth companies within the IT industry - a HIT-company according to Computer Sweden.
</p>
<p><a href="http://www.antura.se/">Antura.se</a></p>
</section>
<section class="column half burt">
<h2>
<a title="Burt" href="http://www.burtcorp.com/">
<img src="images/sponsors/burt.png" alt="Burt" />
</a>
</h2>
<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>
<p><a href="http://www.burtcorp.com/">Burtcorp.com</a></p>
</section>
</div>
<div class="group flower">
<section class="column half glesys">
<h2>
<a title="Glesys" href="http://www.glesys.com/">
<img src="images/sponsors/glesys.jpg" alt="Glesys" />
</a>
</h2>
<p>
With our third generation virtual servers (VPS) you're in total control. We provide you with the tools to easily create new VPS-servers, upgrade and downgrade as well as clone servers instantly.
Choose and assign IP addresses directly from our ready-to-use IP address pools.
</p>
<p><a href="http://www.glesys.com/">Glesys.com</a></p>
</section>
<section class="column half monocl">
<h2>
<a title="Monocl" href="http://www.monocl.com/?page_id=66">
<img src="images/sponsors/monocl.png" alt="Monocl" />
</a>
</h2>
<p>
Monocl is a Life Science strategy and software firm improving the decision-making for company executives. We develop software products, based on our Life Science Intelligence analytics platform, to empower our clients with a competitive edge and capabilities for lasting business impact.
</p>
<p><a href="http://www.monocl.com/?page_id=66">Monocl.com</a></p>
</section>
</div>
<div class="group flower">
<section class="column third almi">
<h2>
<a title="Almi" href="http://www.almi.se/">
<img src="images/sponsors/almi.png" alt="Almi" />
</a>
</h2>
<p>
Almi's vision is to create opportunities for all viable ideas and companies to be developed. We offer advisory services, loans and venture capital through all phases of the establishment of a business – from idea to successful company.
</p>
<p><a href="http://www.almi.se/">Almi.se</a></p>
</section>
<section class="column third mynewsdesk">
<h2>
<a title="MyNewsDesk" href="http://www.mynewsdesk.com/">
<img src="images/sponsors/mynewsdesk.png" alt="MyNewsDesk" />
</a>
</h2>
<p>Pioneered in Sweden by journalists and web innovators, Mynewsdesk is a platform for PR and brand engagement. Many of the world's best brands and agencies use Mynewsdesk's newsrooms to tell their stories.</p>
<p><a href="http://mynewsdesk.com/">MyNewsDesk.com</a></p>
</section>
</div>
<div class="group">
<section class="column half goteborg">
<h2>
<a title="Goteborg&co" href="http://goteborg.com/">
<img src="images/sponsors/goteborg.png" alt="Goteborg&co" />
</a>
</h2>
<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>
<p>
<a href="http://goteborg.com/">goteborg.com</a>
</p>
</section>
</div>
<!-- Seed sponsors -->
<div class="group seed">
<section class="column fifth proleads">
<h2>
<a title="Proleads" href="http://proleads.io/">
<img src="images/sponsors/proleads.png" alt="Proleads" />
</a>
</h2>
</section>
<section class="column fifth elabs">
<h2>
<a title="Elabs" href="http://elabs.se/">
<img src="images/sponsors/elabs_trans.png" alt="Elabs" />
</a>
</h2>
</section>
<section class="column fifth myinternship">
<h2>
<a title="MyInternship" href="http://myinternship.se/">
<img src="images/sponsors/myinternship.png" alt="MyInternship" />
</a>
</h2>
</section>
</div>
<div class="group seed">
<section class="column fifth janssonnorin">
<h2>
<a title="Jansson & Norin" href="http://janssonnorin.se/">
<img src="images/sponsors/janssonnorin.png" class="square" alt="jansson & Norin" />
</a>
</h2>
</section>
<section class="column fifth svenskaform">
<h2>
<a title="Svenska Form" href="http://svenskaform.se/">
<img src="images/sponsors/svenskaform.png" alt="Svenska Form" />
</a>
</h2>
</section>
<section class="column fifth lurn">
<h2>
<a title="Lurn" href="http://lurn.se/">
<img src="images/sponsors/lurn.png" alt="Lurn" />
</a>
</h2>
</section>
</div>
<div class="group seed">
<section class="column fifth">
<h2>
<a title="Chalmers Innovation" href="http://www.chalmersinnovation.com/">
<img src="images/sponsors/ci.png" alt="Chalmers Innovation" />
</a>
</h2>
</section>
<section class="column fifth">
<h2>
<a title="Raket Webbyrå" href="http://www.raketwebbyra.se/">
<img src="images/sponsors/raket.png" class="square" alt="Raket Webbyrå" />
</a>
</h2>
</section>
<section class="column fifth">
<h2>
<a title="Remente" href="http://www.remente.com/">
<img src="images/sponsors/remente.png" alt="Remente" />
</a>
</h2>
</section>
</div>
<div class="group seed">
<section class="column fifth">
<h2>
<a title="Fishbrain" href="http://www.fishbrain.com/">
<img src="images/sponsors/fishbrain.png" alt="Fishbrain" />
</a>
</h2>
</section>
</div>
<section class="group prize-sponsors">
<h2>Prize sponsors</h2>
<section class="column third google">
<h2>
<a href="http://google.com">
<img src="images/sponsors/google.png" alt="Google" />
</a>
</h2>
<p>Google’s mission is to organise the world’s information and make it universally accessible and useful.</p>
</section>
<section class="column third humblebee">
<h2>
<a href="http://humblebee.se/">
<img src="images/sponsors/humblebee.png" class="square" alt="Humblebee" />
</a>
</h2>
</section>
</section>
<section>
<h2>Strategic partners</h2>
<div class="group">
<section class="column fourth squareone">
<h2>
<a title="Square One" href="http://www.squareone.se/">
<img src="images/sponsors/squareone.png" alt="Square One" />
</a>
</h2>
</section>
<section class="column fourth brewhouse">
<h2>
<a title="Brewhouse" href="http://www.brewhouse.se/">
<img src="images/sponsors/brewhouse.png" alt="Brewhouse" />
</a>
</h2>
</section>
<section class="column fourth ff">
<h2>
<a title="Framtidens Företag" href="http://www.framtidensforetag.se/">
<img src="images/sponsors/ff.png" class="square" alt="Framtidens Företag" />
</a>
</h2>
</section>
</div>
<div class="group">
<section class="column fourth startupgrind">
<h2>
<a title="Startup Grind" href="http://startupgrind.se/">
<img src="images/sponsors/startupgrind.png" class="square" alt="Startup Grind" />
</a>
</h2>
</section>
<section class="column fourth swedishstartupspace">
<h2>
<a title="Swedish Startup Space" href="http://swedishstartupspace.com/">
<img src="images/sponsors/swedishstartupspace.png" class="square" alt="Swedish Startup Space" />
</a>
</h2>
</section>
<section class="column fourth yeos">
<h2>
<a title="YEOS" href="http://www.yeos.se/">
<img src="images/sponsors/yeos.png" alt="YEOS" />
</a>
</h2>
</section>
</div>
<div class="group">
<section class="column fourth brg">
<h2>
<a title="Business Region Göteborg" href="http://www.businessregion.se/">
<img src="images/sponsors/brg.png" class="square" alt="Business Region Göteborg" />
</a>
</h2>
</section>
<section class="column fourth drivhuset">
<h2>
<a title="Drivhuset" href="http://www.drivhuset.se/">
<img src="images/sponsors/drivhuset.png" alt="Drivhuset" />
</a>
</h2>
</section>
<section class="column fourth collaboratory">
<h2>
<a title="Collaboratory" href="http://www.collaboratory.se/">
<img src="images/sponsors/collaboratory.png" alt="Collaboratory" />
</a>
</h2>
</section>
</div>
<div class="group">
<section class="column fourth natverkstan">
<h2>
<a title="Nätverkstan" href="http://www.natverkstan.net/">
<img src="images/sponsors/nv.png" alt="Nätverkstan" />
</a>
</h2>
</section>
<section class="column fourth chalmers">
<h2>
<a title="Chalmers School of Entrepreneurship" href="http://www.entrepreneur.chalmers.se/">
<img src="images/sponsors/chl.png" class="square" alt="Chalmers School of Entrepreneurship" />
</a>
</h2>
</section>
<section class="column fourth geekgirl">
<h2>
<a title="Geek Girl Meetup" href="http://geekgirlmeetup.com/goteborg/">
<img src="images/sponsors/geekgirls.png" class="square" alt="Geek Girl Meetup" />
</a>
</h2>
</section>
</div>
<div class="group">
<section class="column fourth guerrilla">
<h2>
<a title="Guerrilla Office" href="http://guerillaoffice.com/gothenburg/">
<img src="http://guerillaoffice.com/wp-content/uploads/2014/04/GO-Gothenburg.png" alt="Guerrilla Office" />
</a>
</h2>
</section>
</div>
</section>
<section class="contributors">
<h2>Contributors</h2>
<div class="group">
<section class="column fourth">
<h2>
<a href="http://www.cloetta.se/" title="Cloetta">
<img src="images/sponsors/cloetta.png" alt="Cloetta" />
</a>
</h2>
</section>
<section class="column fourth">
<h2>
<a href="http://www.estrella.se/" title="Estrella">
<img src="images/sponsors/estrella.png" alt="Estrella" />
</a>
</h2>
</section>
<section class="column fourth">
<h2>
<a href="http://nobealoevera.com/" title="Nobe">
<img src="images/sponsors/nobe.png" class="square" alt="Nobe" />
</a>
</h2>
</section>
</div>
</section>
<section>
<h2>Featured in</h2>
<div class="group">
<section class="column third expressen">
<h2>
<a target="_blank" title="Expressen" href="http://www.expressen.se/gt/google-sponsrar-event-i-goteborg/">
<img src="images/press/expressen.gif" alt="Expressen" />
</a>
</h2>
</section>
<section class="column third nyteknik">
<h2>
<a target="_blank" title="Ny Teknik" href="http://www.nyteknik.se/nyheter/it_telekom/allmant/article3817515.ece">
<img src="images/press/nyteknik.gif" alt="Ny Teknik" />
</a>
</h2>
</section>
</div>
<div class="group">
<section class="column third internetworld">
<h2>
<a target="_blank" title="InternetWorld" href="http://www.idg.se/2.1085/1.559073/bilden-av-goteborg-behover-forandras">
<img src="images/press/internetworld.png" alt="InternetWorld" />
</a>
</h2>
</section>
<section class="column third gp">
<h2>
<a target="_blank" title="GP" href="http://www.gp.se/nyheter/goteborg/1.2360044-de-vann-gothenburg-startup-hack">
<img src="images/press/gp.png" alt="GP" />
</a>
</h2>
</section>
</div>
</section>
<footer>
<h2>Missing your company logo here?</h2>
<p>Have a look at our <a href="gbgstartuphack-2014-sponsorship-opportunities.pdf">sponsorship brochure</a>. We would love to hear from you on <a href="mailto:sponsorship@gbgstartuphack.com">sponsorship@gbgstartuphack.com</a>!
</p>
</footer>
</section>
<section class="signup" id="signup">
<div>
<div class="text-box">
<h1>Sign up</h1>
<p>
We're sorry, but the sign up is closed as of April 13th. Thanks for your interest!
</p>
<p>
Still want to experience the hacking vibe? Check out our parallell activity, open for the public –
<a class="light-on-dark" href="https://www.facebook.com/events/219761364901592/">The Open Track</a>.
</p>
</div>
</div>
</section>
<section class="timeline">
<h1>Timeline</h1>
<div class="group">
<section class="column fifth">
<a href="#signup" class="smooth"></a>
<h2>Signup</h2>
<p>Now!</p>
</section>
<section class="column fifth fb">
<a href="https://www.facebook.com/events/628014860580893" target="_blank"></a>
<h2>Meetup</h2>
<p>April 1</p>
</section>
<section class="column fifth">
<a href="#signup" class="smooth"></a>
<h2>Signup closes</h2>
<p>April 13</p>
</section>
<section class="column fifth">
<a href="#signup" class="smooth"></a>
<h2>Hack!</h2>
<p>May 3 · 08:30</p>
</section>
<section class="column fifth fb">
<a href="https://www.facebook.com/events/1375588442712582" target="_blank"></a>
<h2>Party!</h2>
<p>May 3 · 21:00</p>
</section>
</div>
</section>
<section class="the-organisers content">
<h1>The Organisers</h1>
<div class="group">
<section class="column fifth offset-fifth">
<img src="images/organizers/poscar.png">
<div>
<h2>Oscar Söderlund</h2>
<h3><a href="https://www.spotify.com/">Spotify</a></h3>
<p>Hi, I'm Oscar, and I'm hooked on a feeling — the feeling I get from hammering away at my keyboard. Right now, I'm building optimisations for your playback experience at Spotify, and the next edition of <a href="http://spotifymonkeymusicchallenge.splashthat.com"/>Monkey Music Challenge</a>. Building makes me feel good!
<p class="organiser-follow">
<iframe src="http://ghbtns.com/github-btn.html?user=odsod&type=follow" allowtransparency="true" frameborder="0" scrolling="0" width="132" height="20"></iframe>
</p>
</div>
</section>
<section class="column fifth">
<img src="images/organizers/per.png">
<div>
<h2>Per Bergström</h2>
<h3><a href="http://www.startupgrind.se/">Startup Grind</a></h3>
<p>Student and a big fan of people, design, entrepreneurship and urban development. Inspires people at Startup Grind and help students find their whys in life through World Values Day.</p>
<p class="organiser-follow">
<a href="https://twitter.com/mynameisper" class="twitter-follow-button" data-show-count="false" data-lang="en" data-size="small">Follow @mynameisper</a>
</p>
</div>
</section>
<section class="column fifth">
<img src="images/organizers/tomas.png">
<div>
<h2>Tomas Ohlson</h2>
<h3><a href="https://www.thegreatwild.com">The Great Wild</a></h3>
<p>Engineer and entrepreneur who loves building stuff. Always working with many projects and startups at once, sometimes even getting results (except fun).</p>
<p class="organiser-follow">
<a href="https://twitter.com/ohlsont" class="twitter-follow-button" data-show-count="false" data-lang="en" data-size="small">Follow @ohlsont</a>
</p>
</div>
</section>
</div>
<div class="group">
<section class="column fifth offset-fifth">
<a href="http://johanbrook.com"><img src="images/organizers/johan.jpg" /></a>
<div>
<h2>Johan Brook</h2>
<h3><a href="https://spotify.com">Spotify</a></h3>
<p>I like designing and coding at the same time. I also love new ideas, travelling and building lasting products with and for great people.</p>
<p class="organiser-follow">
<a href="https://twitter.com/johanbrook" class="twitter-follow-button" data-show-count="false" data-size="small">Follow @johanbrook</a>
</p>
</div>
</section>
<section class="column fifth">
<img src="images/organizers/anton.jpg">
<div>
<h2>Anton Lindgren</h2>
<h3><a href="https://spotify.com">Spotify</a></h3>
<p>A passionate IT student who loves the web, and a Student ambassador at Spotify. When he's not fencing with exams you find him reading up on the latest Hacker News trends. His biggest passion IRL is coffee.</p>
<p class="organiser-follow">
<iframe src="http://ghbtns.com/github-btn.html?user=atamon&type=follow" allowtransparency="true" frameborder="0" scrolling="0" width="132" height="20"></iframe>
</p>
</div>
</section>
<section class="column fifth">
<img src="images/organizers/widar.png">
<div>
<h2>Alexander Widar</h2>
<h3><a href="http://geecity.se">GeeCity</a></h3>
<p>Software Engineer with a great interest for mobility. Loves learning new things and always juggles a few project in the air. Addicted to coffee, code and games.</p>
<p class="organiser-follow">
<a href="https://twitter.com/widar" class="twitter-follow-button" data-show-count="false" data-lang="en" data-size="small">Follow @widar</a>
</p>
</div>
</section>
</div>
<div class="group">
<section class="column fifth offset-fifth">
<img src="images/organizers/stroem.jpg">
<div>
<h2>Jonathan Ström</h2>
<h3><a href="http://cliccloud.eu">Cliccloud</a></h3>
<p>Chalmers student, developer and Linux hacker (addicted to terminals). Love to build stuff fast from the ground up and eat bananas.</p>
<p class="organiser-follow">
<a href="https://twitter.com/streten" class="twitter-follow-button" data-show-count="false" data-size="small">Follow @streten</a>
</p>
</div>
</section>
<section class="column fifth">
<img src="images/organizers/paula.jpg">
<div>
<h2>Paula Nilsson</h2>
<h3><a href="http://twitter.com/paulanilsson">@paulanilsson</a></h3>
<p>I'm a life-loving girl from the south of Sweden. Music gives me energy and smiles makes me happy,
so please give me a big smile when you see me. I'm a mensa member, awesome at driving a
tractor and currently studying event marketing.</p>
<p class="organiser-follow">
<a href="https://twitter.com/paulanilsson" class="twitter-follow-button" data-show-count="false" data-size="small">Follow @paulanilsson</a>
</p>
</div>
</section>
<section class="column fifth">
<img src="images/organizers/cedrik.jpg">
<div>
<h2>Cedrik Sjöblom</h2>
<h3></h3>
<p>Code-enthusiast and positive doer. Patience is my everyday solution, forking into ambition, curiosity & understanding. You should attack me with a smile. It's super effective.</p>
</div>
<p class="organiser-follow">
<a class="cedriks-follow-button"></a>
</p>
</section>
</div>
</section>
<section class="the-advisors content">
<h1>Advisors</h1>
<div class="group">
<section class="column fifth offset-fifth">
<img src="http://d1s5ydch4uejls.cloudfront.net/assets/jocke-313c75fdacd4e66222ee7332e8ee7ba4.jpg">
<div>
<h2>Joakim Ekberg</h2>
<h3><a href="https://www.tictail.com/">Tictail</a></h3>
<p>Barefoot Hacker making software for iPhone, iPad and the Web. Currently building the future of e-commerce at Tictail. Also, I'm a nice guy.</p>
</div>
</section>
<section class="column fifth">
<img src="http://d1s5ydch4uejls.cloudfront.net/assets/martina-d6875861296603ca8c5fbaeb684b51f9.jpg">
<div>
<h2>Martina Elm</h2>
<h3><a href="http://www.hyperisland.com/">Hyper Island</a></h3>
<p>Freelance communications manager & event planner that loves food and the web. Head of marketing at Island in the sun.</p>
</div>
</section>
<section class="column fifth">
<img src="http://d1s5ydch4uejls.cloudfront.net/assets/jonny-aa524b9a0949830d0168fcf00177370e.jpg">
<div>
<h2>Jonny Strömberg</h2>
<h3><a href="http://getconfetti.com/">Confetti</a></h3>
<p>A swedish product designer & engineer. Founder of Confetti, Silarapp & Nordic.js. Creator of List.js. Organiser of Sthlm.js. Dribbble: @javve.</p>
</div>
</section>
</div>
</section>
</main>
<footer role="contentinfo">
<section class="questions group" id="questions">
<h2>Questions?</h2>
<div class="zigzag">
<h3>Can I sign up alone?</h3>
<p>Sorry, but no. A hackathon is about building cool things together. But why not bring your idea
and find your team at <a href="https://www.facebook.com/events/628014860580893">The Meetup</a>?</p>
</div>
<div class="zigzag">
<h3>How large can our team be?</h3>
<p>At most 5 people, and you should be at least 2.</p>
</div>
<div class="zigzag" id="find-members">
<h3>Where do I find team members?</h3>
<p>IRL, at the internet, or at <a href="https://www.facebook.com/events/628014860580893">The Meetup</a>.
Try using our hashtag <a href="https://twitter.com/search?q=%23gbgstartuphack">#gbgstartuphack</a>
when looking for prospective team members!</p>
</div>
<div class="zigzag">
<h3>Do I get favored in the selection process if I sign up early?</h3>
<p>Nope. Just make sure you <a href="#signup">sign up</a> before April 13<sup>th</sup>.</p>
</div>
<div class="zigzag">
<h3>My idea and/or team has somehow changed since we entered our signup information, what do I do?</h3>
<p>Mail us at <a href="mailto:info@gbgstartuphack.com">info@gbgstartuphack.com</a> and we’ll get back to you!</p>
</div>
<div class="zigzag">
<h3>Can we start hacking on our idea before the hack?</h3>
<p>Please use common sense; do not bring your startup’s finished product/prototype. Use this day to hack on the things you do not normally get time for.</p>
</div>
<div class="zigzag">
<h3>There’s no Facebook event for The Hack? Where and how do I sign up?</h3>
<p><a href="#signup">Here</a>.</p>
</div>
<div class="zigzag">
<h3>Does the idea/prototype have to be strictly based on IT?</h3>
<p>This is a hackathon, so it should include hacking code in one way or the other. If you’re unsure if your idea fits the format, just <a href="mailto:info@gbgstartuphack.com">drop us a mail</a>.</p>
</div>
<div class="zigzag">
<h3>Do I need to be able to code in order to apply?</h3>
<p>Oh no! It's all about <a href="#find-members" class="smooth">building a team</a> which eventually will deliver something cool during the day.
Feel free to be the planning person in your group.</p>
<h4>A sample team</h4>
<p>
A neat team compilation of four people consist of:
</p>
<ul>
<li>Two developers</li>
<li>One designer</li>
<li>One <em>planning person</em> overseeing the progress, creating the presentation, engineering the
overall vision, and more.</li>
</ul>
<p>
Or, why separate the roles?
</p>
<ul>
<li>Three developers knowing design, or three designers who can code</li>
<li>One <em>planning person</em></li>
</ul>
</div>
</section>
<section class="more-questions">
<h2>Still got questions?</h2>
<a class="contact-email" href="mailto:info@gbgstartuphack.com">info@gbgstartuphack.com</a>
</section>
<ul class="list social-links">
<li><a href="https://facebook.com/gbgstartuphack"><i class="icon-facebook"></i> Facebook</a></li>
<li><a href="https://twitter.com/gbgstartuphack"><i class="icon-twitter"></i> Twitter</a></li>
<li><a href="https://twitter.com/search?q=%23gbgstartuphack"><i class="icon-hashtag"></i> gbgstartuphack</a></li>
</ul>
<section class="press">
<h2>Press</h2>
<p>Check out our <a href="http://www.mynewsdesk.com/se/gbgstartuphack">newsroom at MyNewsdesk</a>.</p>
</section>
<p style="color: #666">
<small>Site made with all the love in the world by Johan, Anton, Oscar, Tomas and Per.</small>
</p>
</footer>
<!-- Modal -->
<div class="modal reveal" id="signup-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<iframe src="https://docs.google.com/forms/d/1YNl-agqel1g8cCTA7m_mMTVGMGKN9SzqRiyomstjGbQ/viewform?embedded=true" frameborder="0" marginheight="0" marginwidth="0">Läser in...</iframe>
</div>
</div>
</div>
</div>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.js"></script>
<script src="javascripts/vendor/vimeo.froogaloops.js"></script>
<script src="javascripts/vendor/magnific-popup.js"></script>
<script src="javascripts/vendor/jquery.smooth-scroll.min.js"></script>
<script src="javascripts/ui.js"></script>
<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', 'gothenburgstartuphack.com');
ga('send', 'pageview');
</script>
<!-- By Per, Tomas, Anton, Oscar, and Johan -->
</body>
</html>