-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1051 lines (987 loc) · 56.6 KB
/
index.html
File metadata and controls
executable file
·1051 lines (987 loc) · 56.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>Hack Cyprus 2019 - The Comeback</title>
<meta name="description" content="Hack Cyprus 2019 - The Comeback">
<meta name="keywords" content="Hackathon Cyprus hackcyprus hack cyprus cel cypriot enterprise link projectcel">
<meta name="author" content="Cypriot Enterprise Link">
<meta property="og:type" content="event">
<meta property="og:url" content="http://comeback.hackcyprus.com">
<meta property="og:title" content="Hack Cyprus 2019 - The Comeback">
<meta property="og:image" content="http://comeback.hackcyprus.com/assets/img/social-media.png?v=2">
<meta property="og:description"
content="We are back with something new that was never tried before in Cyprus. ONE hackathon running in all
cities at the same time. A set of winners from each city will be finalist for the ONE winner of whole Cyprus. Stay tuned..">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@hackcyprus">
<meta name="twitter:creator" content="@hackcyprus">
<meta name="twitter:title" content="Hack Cyprus 2019 - The Comeback">
<meta name="twitter:image" content="http://comeback.hackcyprus.com/assets/img/social-media.png">
<meta name="twitter:description"
content="We are back with something new that was never tried before in Cyprus. ONE hackathon running in all
cities at the same time. A set of winners from each city will be finalist for the ONE winner of whole Cyprus. Stay tuned..">
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="assets/img/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/img/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="assets/img/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="assets/img/favicons/favicon-16x16.png" sizes="16x16">
<!--<link rel="manifest" href="assets/img/favicons/manifest.json">-->
<link rel="mask-icon" href="assets/img/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="assets/img/favicons/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="assets/css/custom-animations.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/style.css?v=10"/>
<link rel="stylesheet" type="text/css" href="assets/css/custom.css?v=10"/>
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143273983-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-143273983-1');
</script>
</head>
<body>
<img src="assets/img/backgrounds/hackathon-wristbands.jpg" alt="HackCyprus wristbands" class="parallax"/>
<div class="preloader-mask">
<div class="preloader"></div>
</div>
<header class="header header-black">
<div class="header-wrapper">
<div class="container">
<div class="col-md-2 col-sm-3 col-xs-12 navigation-header">
<a href="#" class="logo">
<img src="assets/img/hcs.png" alt="HackInParallel" class="header-logo retina-hide">
<img src="assets/img/hcs.png" alt="HackInParallel" class="header-logo retina-show">
</a>
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navigation"
aria-expanded="false" aria-controls="navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="col-md-10 col-sm-9 col-xs-12 navigation-container">
<div id="navigation" class="navbar-collapse collapse">
<ul class="navigation-list pull-left light-text">
<li class="navigation-item extra-padding-left"><a href="#venues" class="navigation-link">The Venues</a></li>
<li class="navigation-item"><a href="#counters" class="navigation-link">What to expect</a></li>
<li class="navigation-item"><a href="#sponsors" class="navigation-link">Sponsors</a></li>
<li class="navigation-item"><a href="#schedule" class="navigation-link">Schedule</a></li>
<li class="navigation-item"><a href="#rules" class="navigation-link">The Rules</a></li>
<li class="navigation-item"><a href="#prizes" class="navigation-link">Prizes</a></li>
</ul>
<a href="#" target="_blank" class="pull-right buy-btn">Get
Tickets</a>
</div>
</div>
</div>
</div>
</header>
<section id="hero">
<div style="position: fixed; top:0; left:0; right:0; bottom:0; background: black; opacity: 0.7;">
</div>
<ul class="socials-nav">
<li class="socials-nav-item"><a href="https://twitter.com/hackcyprus" target="_blank"><span
class="fa fa-twitter"></span></a></li>
<li class="socials-nav-item"><a href="https://www.facebook.com/groups/hackcyprus" target="_blank"><span
class="fa fa-facebook"></span></a></li>
</ul>
<div class="heading-block centered-block align-center">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h5 class="heading-alt custom-color" style="margin-bottom: 8px;"><span class="fa fa-calendar-o base-clr-txt"></span>
19 - 21 July 2019
<span class="fa fa-map-marker base-clr-txt" style="margin-left: 14px;"></span>Cyprus
</h5>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<img class="img-responsive" src="assets/img/hcs.png">
</div>
</div>
<div class="row extra-padding-top">
<div class="col-sm-12">
<h3 class="custom-color">
<strong>The Comeback</strong>
</h3>
</div>
</div>
<div class="row extra-padding-top">
<div class="col-sm-12">
<h4 class="custom-color">
<strong>#hackinparallel</strong>
</h4>
</div>
</div>
<div class="row extra-padding-top">
<div class="col-sm-12 extra-padding-top">
<div class="extra-padding-top">
<a class="btn btn-md" href="https://join.slack.com/t/hackcyprus/shared_invite/enQtNjc0MDM0MDAwMzU1LTNhMjgxZGQ5ODU2M2UzMjg3YTc5MzBlOGJmYzgwNmEyZDUxYjhhNDFlYjBiNmJjM2Y0Yzc5NjkyNmIwNDhjZDI?fbclid=IwAR3Q1HIz8p5nXGU58NQjnpyRfxQZ5pJW_lprllyLB95qQggvptvyoQGPhNU">
Join our Slack.
</a>
</div>
<div class="extra-padding-top">
<a href="#counters" class="btn btn-outline btn-md" data-modal-link="0">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="venues" class="black-bg section align-center line-separator">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h2>The Venues</h2>
</div>
</div>
<div clas="row extra-padding-top">
<div class="col-sm-12 extra-padding-top">
<p class="h3">This year Hackcyprus is going beyond the expected with a throughout the island parallel hackathon.</p>
<p class="h3">Click the pins and find out where Hack{Cyprus}2019 will be happening!</p>
</div>
<div class="col-sm-12 extra-padding-top">
<img src="assets/img/cyprus/cyprus-map-pin-animated.gif?v=1" alt="Cyprus cities" usemap="#image-map">
<map name="image-map">
<area target=""
alt="Hügge Coworking - Paphos"
title="Hügge Coworking - Paphos Venue"
coords="15,242,56,357,159,393,134,202"
shape="poly"
data-toggle="modal"
data-target="#paphos-venue"
>
<area target=""
alt="The Business Bar"
title="The Business Bar"
coords="164,386,224,423,328,361,286,276,156,292"
shape="poly"
data-toggle="modal"
data-target="#limassol-venue"
>
<area target="" alt="Youth Makerspace Larnaca Venue"
title="Youth Makerspace Larnaca Venue"
coords="338,275,373,336,440,321,464,284,426,229,407,240,355,275,346,292,439,240,394,247"
shape="poly"
data-toggle="modal"
data-target="#larnaka-venue"
>
<area target=""
alt="Palia Agora Palouriotissas"
title="Palia Agora Palouriotissas"
coords="285,195,313,256,410,210,374,165,360,160"
shape="poly"
data-toggle="modal"
data-target="#nicosia-venue"
>
<area target=""
alt="Girne Gençlik Merkezi (GiGEM) Venue"
title="Girne Gençlik Merkezi (GiGEM) Venue"
coords="253,115,286,178,384,148,344,77"
shape="poly"
data-toggle="modal"
data-target="#kerynia-venue"
>
<area target=""
alt="Famagusta Culture and Congress Center Venue Venue"
title="Famagusta Culture and Congress Center Venue Venue"
coords="425,182,478,252,554,209,502,132"
shape="poly"
data-toggle="modal"
data-target="#ammochostos-venue"
>
</map>
</div>
</div>
</div>
</section>
<section id="counters" class="disable-background black-bg section align-center line-separator">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h2>What to expect</h2>
</div>
</div>
<div class="row counters-wrapper top100">
<div class="col-sm-3">
<h3 class="highlight yellow">
250+
</h3>
<h5>Attendees</h5>
<p>250+ creative developers, designers and ideators</p>
</div>
<div class="col-sm-3">
<h3 class="highlight">
<i class="fa fa-code "></i>
</h3>
<h5>Limitless Hacking</h5>
<p>40+ hours of hacking, designing, tinkering and making awesome things.</p>
</div>
<div class="col-sm-3">
<h3 class="highlight">
<i class="fa fa-cutlery"></i>
</h3>
<h5>We provide</h5>
<p>We'll provide food, drinks, energy, swag and internet.</p>
</div>
<div class="col-sm-3">
<h3 class="highlight">
<i class="fa fa-lightbulb-o"></i>
</h3>
<h5>You need</h5>
<p>Bring your laptop, hardware, your creativity and skills and turn your ideas into bytes and pixels!</p>
</div>
</div>
</div>
</section>
<section id="sponsors" class="black-bg section align-center line-separator">
<div class="container text-center">
<div class="row sponsors">
<h2>Sponsors</h2>
<div class="col-sm-12 extra-padding-top extra-padding-bottom" style="background-color:#a3a3a3;">
<div class="row sponsors text-center" >
<div class="col-sm-4 medium-sponsor">
<a href="https://www.proto.io" target="_blank">
<img src="assets/img/sponsors/protoio.png" alt="Proto.io sponsor logo">
</a>
</div>
<div class="col-sm-4 small-sponsor">
<a href="https://bionic.com.cy/" target="_blank">
<img src="assets/img/sponsors/bionic.png" alt="Bionic sponsor logo">
</a>
</div>
<div class="col-sm-4 medium-sponsor">
<a href="https://overflow.io/" target="_blank">
<img src="assets/img/sponsors/overflow.png" alt="Overflow sponsor logo">
</a>
</div>
</div>
<div class="row sponsors text-center" >
<div class="col-sm-4 tiny-sponsor">
<a href="https://www.jppmarketing.com/" target="_blank">
<img src="assets/img/sponsors/JPPlogo.png?v=1" alt="JPP Marketing sponsor logo">
</a>
</div>
<div class="col-sm-4 tiny-sponsor">
<a href="https://www.gov.uk/world/organisations/british-high-commission-nicosia" target="_blank">
<img src="assets/img/sponsors/BHC.png" class="sponsor-height" alt="British High Commission sponsor logo">
</a>
</div>
<div class="col-sm-4 tiny-sponsor extra-padding-bottom">
<a href="https://ruby.technology/">
<img src="assets/img/sponsors/ruby.png" alt="Ruby Technology">
</a>
</div>
</div>
<div class="row sponsors text-center">
<div class="col-sm-12">
<h5>Supported by</h5>
</div>
</div>
<div class="row text-center extra-padding-bottom">
<div class="col-md-2 col-md-offset-3 col-sm-12 tiny-sponsor extra-padding-bottom">
<a href="https://www.crepaland.com.cy">
<img src="assets/img/sponsors/crepaland.png" alt="Crepaland">
</a>
</div>
<div class="col-md-2 col-sm-12 tiny-sponsor extra-padding-bottom">
<a href="https://wolf.ooo">
<img src="assets/img/sponsors/wolf.png" alt="Wolf.oooo">
</a>
</div>
<div class="col-md-2 col-sm-12 tiny-sponsor extra-padding-bottom">
<a href="https://www.novatexsolutions.eu/">
<img src="assets/img/sponsors/novatex.png" alt="Novatex">
</a>
</div>
</div>
</div>
</div>
<br><br>
<div class="row sponsors">
<div class="col-sm-12">
<h4>Part of</h4>
<div class="sponsors venues text-center">
<div>
<p class="h3">Hack{cyprus} hackathon 2019 is part of</p>
</div>
<div class=" main big">
<a href="http://leadcyprus.com/">
<img src="assets/img/sponsors/lead-cyprus.png" alt="LEAD Cyprus" style="width:300px;">
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="schedule" class="black-bg section align-center" style="border-top: 5px solid #F0C40F; padding-top:25px; ">
<div class="container">
<h2>Schedule</h2>
<div class="col-md-10 col-md-offset-1 top32">
<!-- Schedule start -->
<div class="row schedule schedule-light">
<!-- Navigation by day start -->
<div class="nav-wrapper">
<ul class="nav nav-schedule">
<li class="active"><a href="#schedule3_day1" data-toggle="tab">Friday, July 19</a></li>
<li class=""><a href="#schedule3_day2" data-toggle="tab">Saturday, July 20</a></li>
<li class=""><a href="#schedule3_day3" data-toggle="tab">Sunday, July 21</a></li>
</ul>
</div>
<!-- Navigation by day end -->
<!-- First level content start -->
<div class="tab-content">
<!-- Day 1 content start -->
<div id="schedule3_day1" class="tab-pane fade active in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day1_timeline">
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">19:00 - 19:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.register();</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">19:30 - 20:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-users"></span></div>
<h6 class="title">Hackathon.welcome(Hello, Sponsors, Procedure, Rules);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">20:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.begin(all_cities);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">21:30 - 22:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.eat(Dinner);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">23:00 - 09:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue();</h6>
</a>
</div>
</div>
<!-- Accordion end -->
</div>
<!-- Day 1 content end -->
<!-- Day 2 content start -->
<div id="schedule3_day2" class="tab-pane fade">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day2_timeline">
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">09:00 - 10:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.eat(Breakfast(coffee, snacks));</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">10:00 - 13:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue();</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">13:00 - 14:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.eat(Lunch);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">14:00 - 21:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue();</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">21:00 - 22:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.eat(Dinner);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">22:00 - 09:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue();</h6>
</a>
</div>
</div>
<!-- Accordion end -->
</div>
<!-- Day 2 content end -->
<!-- Day 3 content start -->
<div id="schedule3_day3" class="tab-pane fade">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day3_timeline">
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">09:00 - 10:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.eat(Breakfast(coffee, snacks));</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">10:00 - 12:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue();</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">12:00 - 13:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.eat(Lunch);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">13:00 - 14:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.presentIdeas(Video, 60seconds);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">14:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.stop(keyboards_down);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">14:00 - 15:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.judging();</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">16:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.announce(top10_finalists);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">16:15</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.close(ceremony);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">16:30 - 18:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">top10_finalists.present_again(Presentation, Q&A);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">18:00 - 18:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Hackathon.pause(Coffee, snacks);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">19:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.announce(City_Winner_2019,<br/>
Company_Winner_2019,Country_Winner_2019);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">20:30 - infinite </strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.party();</h6>
</a>
</div>
</div>
<!-- Accordion end -->
</div>
<!-- Day 3 content end -->
</div>
<!-- First level content end -->
</div>
<!-- Schedule end -->
</div>
</div>
</section>
<section id="judges" class="black-bg section align-center line-separator">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h3>Our Judges</h3>
</div>
</div>
<div class="row top32">
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded">
<img src="assets/img/judges/antigoni.jpg" alt="Antigoni Mios - Proto.io" class="img-responsive"></div>
<h6 class="white">Antigoni<br>Mios</h6>
<h6 class=" name">Operations Manager <br> Proto.io</h6>
<p></p>
<p class="about">Antigoni is the Operations Manager of Protoio Inc. She has more than 20 years of experience
in software development, having worked for various industries throughout her career. Antigoni is an Agile
enthusiast, enjoys facilitating retrospectives and is always on the lookout for new ways to improve existing
processes.</p>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded">
<img src="assets/img/judges/nearchos.png" alt="Nearchos Paspallis" class="img-responsive"></div>
<h6 class="white">Nearchos<br>Paspallis</h6>
<h6 class=" name">Associate Professor<br> UCLan Cyprus </h6>
<p class="about">
Nearchos Paspallis is an Associate Professor at <a href="http://www.uclancyprus.ac.cy/en/">
the University of Central Lancashire — Cyprus (UCLan Cyprus)</a>. He specializes in Mobile and
Distributed Systems in the wider area of Software Engineering. Nearchos is the founder of Code Cyprus,
a yearly event aiming to encourage high school students to learn programming <a href="http://nearchos.github.io" target="_blank">
apps
</a>.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded">
<img src="assets/img/judges/elena.jpg" alt="Elena Georgiou Strouthos" class="img-responsive"></div>
<h6 class="white">Elena Georgiou<br>Strouthos</h6>
<h6 class=" name">CTO<br> Cocoon Creations </h6>
<p class="about">
Elena studied Computer Science at University of Cyprus and University of Manchester.
She is the Co-Founder & CTO of Cocoon Creations, an award-winning agency focusing on mobile platforms
design, development and consultation. Before founding Cocoon Creations, she worked for many years in the IT sector of the
hospitality business. She is an executive Board Member of Cypriot Enterprise Link and served as
the team lead for hack {cyprus}.
</p>
</div>
</div>
</div>
<div class="row top32">
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded">
<img src="assets/img/judges/terzi.jpg" alt="Maria Terzi" class="img-responsive"></div>
<h6 class="white">Maria<br>Terzi</h6>
<h6 class=" name">Post-Doc Researcher<br>KIOS CoE,UCY</h6>
<p class="about">
Maria holds a PhD in machine learning and semantics from Lancaster University. She is a proud winner of two Google/RSA hackathons.
She was a finalist Woman Techmaker Scholar in 2017 and has worked at Google as a Software Engineering Intern.
She currently investigates how drone swarms can be used in emergency response at KIOS CoE, UCY.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="speaker">
<div class="photo-wrapper rounded">
<img src="assets/img/judges/nicolas.jpeg" alt="Nicolas Kourtellis" class="img-responsive"></div>
<h6 class="white">Nicolas<br>Kourtellis</h6>
<h6 class=" name">Research Scientist<br>Telefonica Research, Barcelona</h6>
<p class="about">
Nicolas holds a PhD in Computer Science and Engineering from the University of South Florida, USA (2012).
He has done research @Yahoo Labs, USA & Telefonica Research, Spain, on online user behavior modeling and internet measurements of distributed systems,
with 60+ published papers.
Lately, he focuses on web transparency, user online privacy and exposing persona data leaks to advertising ecosystem in the post-GDPR era.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="rules" class="disable-background black-bg section align-center line-separator">
<div class="container">
<h2>The Rules</h2>
<div class="col-md-10 col-md-offset-1 top32">
<!-- Schedule start -->
<div class="row schedule schedule-light">
<div class="tab-content">
<div id="rules-pane" class="tab-pane fade active in">
<ul class="panel-group" id="rules-group">
<li class="panel schedule-item li-disk">
<h6 class="title">Team size <= 5 people - Yes, 1 person teams are allowed.</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">Bring your idea, do not code it from home.</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">Push on a GitHub repository the code you will develop.</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">You can use any technology (hardware or software) along with any programming language.</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">University students are welcome.</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">You will have full ownership & IP of whatever you build.</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">You can design, sketch and conceptualise beforehand, but all code must be fresh.</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">
To submit your idea, you must provide the GitHub repository link and a one minute video that demonstrates your implemented idea (e.g.
<a href="https://www.youtube.com/watch?v=azep6YQy2Io">https://www.youtube.com/watch?v=azep6YQy2Io</a>).
</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">
The judges will watch the videos and select the winners for each city (CITY WINNERS), the Best Company Winners and the TOP 10 teams that will go to the finals!
</h6>
</li>
<li class="panel schedule-item li-disk">
<h6 class="title">
If your team has been selected to the TOP 10, then you will present your hack again to your judges, this time over live video stream and you shall be ready to answer any questions they may have!
The judges will then vote and the 6 City Winners, the 1st, 2nd, and 3rd country winners as well as the Best Company Winners will be announced and awarded!
</h6>
</li>
<li class="panel schedule-item li-disk">
<h5 class="title">MOST IMPORTANT IS TO HAVE FUN AND ENJOY.</h5>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="prizes" class="section align-center black-bg line-separator">
<div class="container">
<h2><strong>The Prizes</strong></h2>
<h4 class="top32 yellow"><strong>Country Winners</strong></h4>
<div class="row top32">
<div class="col-sm-4">
<h5 class="extra-padding-top">{001} Place</h5>
<h6 class="top32 thin">
1500€ voucher from Bionic Electronics
</h6>
</div>
<div class="col-sm-4">
<h5 class="extra-padding-top">{010} Place</h5>
<h6 class="top32 thin">
Sphero BOLT App-Enabled Robot for each member of the team
</h6>
</div>
<div class="col-sm-4">
<h5 class="extra-padding-top">{011} Place</h5>
<h6 class="top32 thin">
3 Overflow annual licenses from <a href="https://overflow.io">Overflow.io</a>
</h6>
</div>
</div>
<h4 class="top32 yellow"><strong>City Winners</strong></h4>
<div class="row top32">
<div class="col-sm-2">
<h5>{001} Nicosia</h5>
<img src="assets/img/prizes/vector-medal-icon-png.png" alt="City winners medal"/>
</div>
<div class="col-sm-2">
<h5>{001} Larnaka</h5>
<img src="assets/img/prizes/vector-medal-icon-png.png" alt="City winners medal"/>
</div>
<div class="col-sm-2">
<h5>{001} Limassol</h5>
<img src="assets/img/prizes/vector-medal-icon-png.png" alt="City winners medal"/>
</div>
<div class="col-sm-2">
<h5>{001} Paphos</h5>
<img src="assets/img/prizes/vector-medal-icon-png.png" alt="City winners medal"/>
</div>
<div class="col-sm-2">
<h5>{001} Kyrenia</h5>
<img src="assets/img/prizes/vector-medal-icon-png.png" alt="City winners medal"/>
</div>
<div class="col-sm-2">
<h5>{001} Famagusta</h5>
<img src="assets/img/prizes/vector-medal-icon-png.png" alt="City winners medal"/>
</div>
</div>
<h4 class="extra-padding-top top32 yellow"><strong>Best Company Award</strong></h4>
<div class="row">
<div class="col-sm-12">
<h6 class="top32 thin">
<p>Companies/Organizations/Institutions are encouraged to send teams to represent their technical prowess.</p>
<p>We have a best company award with a fancy trophy.</p>
</h6>
</div>
</div>
</div>
</section>
<section id="faq" class="section black-bg section align-center line-separator">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h3><strong>FAQs</strong></h3>
</div>
<div class="col-sm-6 top32">
<div class="panel-group panel-group-alt" id="accordion">
<div class="panel">
<a data-toggle="collapse" data-parent="#accordion" href="#panel1" aria-expanded="false" class="collapsed">When is Hack{Cyprus}?</a>
<div id="panel1" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
<p>19th July - 21st July 2019</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel2" aria-expanded="false">Wait, what's a hackathon?</a>
<div id="panel2" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
<p>Hackathons are events where people compete to build interesting technical projects in
just over 40 hours. People come together, form teams, brainstorm, share ideas, and
help each other build awesome things. All skill levels are highly welcome, so don't
be intimidated if you don't feel your coding is up to scratch.</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel4" aria-expanded="false">Is it really free?</a>
<div id="panel4" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
<p>Yep.</p>
</div>
</div>
</div>
<div class="panel">
<a class="" data-toggle="collapse" data-parent="#accordion" href="#panel7" aria-expanded="false">Even food?</a>
<div id="panel7" class="panel-collapse collapse" style="height: auto;">
<div class="panel-body">
<p>Yes! Thanks to our amazing sponsors we will be offering meals, snacks and drinks to
everyone.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 top32">
<div class="panel-group panel-group-alt" id="accordion2">
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel5" aria-expanded="false">Can I attend Hack{Cyprus}?</a>
<div id="panel5" class="panel-collapse collapse">
<div class="panel-body">
<p>Everyone is welcome! As long as you are ready to bring your awesome idea to life and
follow our simple guidelines you are good to come!</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel6" aria-expanded="false">What time should I arrive?</a>
<div id="panel6" class="panel-collapse collapse">
<div class="panel-body">
<p>The schedule can be found <a href="#schedule">here</a>.</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel8" aria-expanded="false">Do I need to have a team?</a>
<div id="panel8" class="panel-collapse collapse">
<div class="panel-body">
<p>You're welcome to make a team before the event, but loads of people come without a
team. At the start of the event, we'll help everyone find a team. One of the best
things about hackathons is meeting hackers from all over the country.</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel9" aria-expanded="false">Who's organising Hack{Cyprus}?</a>
<div id="panel9" class="panel-collapse collapse">
<div class="panel-body">
<p>Hack{Cyprus} Hackathons is organised by the Cypriot Enterprise Link.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Cel -->
<section class="footer black-bg">
<div class="container">
<div class="col-sm-4 col-sm-offset-4 text-center">
<div class="widget about-widget">
<img src="assets/img/hcs.png" class="footer-logo">
<p class="text-alt">
<small>Hack Cyprus was created by CEL, with a clear ambition in mind — putting Cyprus on the
technology map. We think Cyprus is able to attract and produce world-class technologists, and we
envision Cyprus being a prominent startup hub in Europe and the world.
</small>
</p>
<a href="http://www.projectcel.com" target="_blank"><img src="assets/img/cel.png" alt="cel"></a>
</div>
</div>
</div>
</section>
<!-- Cel -->
<!-- City Modals -->
<div class="modal fade" id="nicosia-venue" tabindex="-1" role="dialog" aria-labelledby="nicosia-venue-long-title" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="nicosia-venue-long-title">Palia Agora Palouriotissas</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d815.3214200177193!2d33.3762554!3d35.1744316!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14de176c7d4f415b%3A0x7efbb0c46db6c691!2sPalia+Agora+Palouriotissas!5e0!3m2!1sen!2s!4v1563465099113!5m2!1sen!2s" width="100%" height="300" frameborder="0" style="border:0" allowfullscreen></iframe> </div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="paphos-venue" tabindex="-1" role="dialog" aria-labelledby="paphos-venue-long-title" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="paphos-venue-long-title">Hügge Coworking - Paphos Venue</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d13108.92709243575!2d32.4211056!3d34.7749401!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xafc30485fda661da!2sH%C3%BCgge+Coworking+-+Paphos!5e0!3m2!1sen!2s!4v1562606242376!5m2!1sen!2s" width="100%" height="300" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="limassol-venue" tabindex="-1" role="dialog" aria-labelledby="limassol-venue-long-title" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="limassol-venue-long-title">The Business Bar Venue</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3281.1761214331464!2d33.04213401523165!3d34.67550418044099!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14e7338f56d330fb%3A0x6fd69b6414f362b5!2sThe+Business+Bar!5e0!3m2!1sen!2s!4v1563465225623!5m2!1sen!2s" width="100%" height="300" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="larnaka-venue" tabindex="-1" role="dialog" aria-labelledby="larnaka-venue-long-title" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="larnaka-venue-long-title">Youth Makerspace Larnaka Venue</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3271.646202674184!2d33.621999315742755!3d34.915327180379926!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14e083c14e2a03c5%3A0xf942d5f2d9b32c72!2sYouth+Makerspace+Larnaka!5e0!3m2!1sen!2s!4v1561876027872!5m2!1sen!2s" width="100%" height="300" frameborder="0" style="border:0" allowfullscreen></iframe> </div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="kerynia-venue" tabindex="-1" role="dialog" aria-labelledby="kerynia-venue-long-title" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="kerynia-venue-long-title">Girne Gençlik Merkezi (GiGEM)</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3254.8142043577873!2d33.30504631524941!3d35.33543498027642!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14de139c74e210f9%3A0xabe8d27f3bd26a48!2sGirne+Gen%C3%A7lik+Merkezi+%7C+G%C4%B0GEM!5e0!3m2!1sen!2s!4v1563465311014!5m2!1sen!2s" width="100%" height="300" frameborder="0" style="border:0" allowfullscreen></iframe> </div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>