-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1116 lines (1038 loc) · 52.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JSHacks 2019 - EduTech Edition</title>
<meta name="author" content="JSHacks.io">
<meta name="Title" content="JSHacks.io">
<meta name="description" content="JSHacks is the annual JavaScript hackathon organized by developers for developers dedicated (but not limited) to all those passionate about JavaScript and innovation. Proudly crafted by the JSLeague team 🤟"
/>
<meta name="keywords" content="community, javascript, hackathon, framework, angularjs bucharest, jsgirls, bucharestjs, reactjs, vuejs"
/>
<meta property="og:title" content="jshacks.io">
<meta property="og:url" content="https://jshacks.io/" />
<meta property="og:description" content="JSHacks is the annual JavaScript hackathon organized by developers for developers dedicated (but not limited) to all those passionate about JavaScript and innovation. Proudly crafted by the JSLeague team 🤟"
/>
<meta name="Language" content="EN">
<meta name="country" content="Romania">
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="jshacks.io">
<meta itemprop="description" content="JSHacks is the annual JavaScript hackathon organized by developers for developers dedicated (but not limited) to all those passionate about JavaScript and innovation. Proudly crafted by the JSLeague team 🤟"
/>
<meta itemprop="image" content="https://jshacks.io/img/cover.png">
<!-- Twitter Card data -->
<meta name="twitter:card" content="JSHacks.io">
<meta name="twitter:site" content="@jshacksio" />
<meta name="twitter:title" content="jshacks.io">
<meta name="twitter:description" content="JSHacks is the annual JavaScript hackathon organized by developers for developers dedicated (but not limited) to all those passionate about JavaScript and innovation. Proudly crafted by the JSLeague team 🤟"
/>
<meta name="twitter:creator" content="@jshacksio">
<meta name="twitter:image:src" content="https://jshacks.io/img/cover.png">
<!-- Open Graph data -->
<meta property="og:title" content="JSHacks.io" />
<meta property="og:type" content="post" />
<meta property="og:url" content="https://jshacks.io/" />
<meta property="og:image" content="https://jshacks.io/img/cover.png">
<meta property="og:description" content="JSHacks is the annual JavaScript hackathon organized by developers for developers dedicated (but not limited) to all those passionate about JavaScript and innovation. Proudly crafted by the JSLeague team 🤟"
/>
<meta property="og:site_name" content="JSHacks.io" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="fonts/flaticon/flaticon.css">
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<!-- Booooooootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
</head>
<body>
<main class="main">
<div class="stars"></div>
<div class="blobs toright hidden-xs hidden-sm">
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
</div>
<header>
<nav class="navbar navbar-inverse transparent navbar-expand-md fixed-top">
<div class="container">
<a class="navbar-brand" href="https://jshacks.io/">
<img src="img/logo-blue.png" height="20" alt="image">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav3" aria-controls="navbarNav3" aria-expanded="false" aria-label="Toggle navigation">
<span class="text-white">
<i class="fa fa-bars"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarNav3">
<ul class="navbar-nav ml-auto justify-content-end">
<li class="nav-item">
<a href="#" class="nav-link">home</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">about</a>
</li>
<li class="nav-item">
<a href="#agenda" class="nav-link">agenda</a>
</li>
<li class="nav-item">
<a href="#mentors" class="nav-link">mentors</a>
</li>
<li class="nav-item">
<a href="#partners" class="nav-link">partners</a>
</li>
<li class="nav-item">
<a href="team.html" class="nav-link">team</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="fadein relative">
<div class="row mt-5">
<div class="col-md-12 mt-5">
<h1 class="f1 text-purple font-nasa m-a-0 mt-5" data-rellax-speed="-4">JSHacks 2019</h1>
<h2 class="f3 font-nasa m-a-0" data-rellax-speed="-4">EduTech Edition
<span class="f4">v4.0</span>
</h2>
</div>
</div>
<div class="row mt-5">
<div class="col-md-4 mt-5">
<h2 class="font-nasa text-orange mb-0">25 - 27
<sup>th</sup> October</h2>
<h2 class="mb-30 font-nasa text-orange mt-0">TechHub Bucharest</h2>
<a href="https://forms.gle/EyCPZAGU27rAZpb29" class="btn btn-blue mt-5 btn-cta" target="_blank">REGISTER FOR JSHACKS</a>
</div>
</div>
<div class="row">
<div class="offset-md-5 col-md-3 hidden-xs hidden-sm">
<div class="rellax" data-rellax-speed="5">
<img src="img/swags/hero-book.png" style="margin-top:-37rem;"/>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="h-10vh"></section>
<!-- <section class="h-90vh hidden-md hidden-lg"></section> -->
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-md-3 pr-0 jsh-sm-no-padding">
<h3 class="mt-0 jsh-sm-text-center">Main Sponsor:</h3>
</div>
<div class="col-md-4 pl-0 jsh-sm-no-padding jsh-sm-text-center">
<a href="https://modex.tech/" target="_blank" class="highlighted">
<img src="img/sponsors/modex.png" class="w-75" />
</a>
</div>
</div>
<div class="row mt-5 align-items-center">
<div class="col-md-3 pr-0 jsh-sm-no-padding">
<h4 class="mt-0 jsh-sm-text-center">Supported by:</h4>
</div>
<div class="col-md-2 pl-0 jsh-sm-no-padding jsh-sm-text-center">
<a href="https://www.wildcodeschool.com/en-GB/campuses/bucharest" target="_blank" class="highlighted">
<img src="img/sponsors/wcs.png" class="w-75"/>
</a>
</div>
</div>
</div>
</section>
<!-- challenges -->
<section class="mt-10">
<div class="container" id="challenges">
<div class="row mb-3">
<div class="col-md-12 text-center">
<h4 class="font-nasa f3 f-bold">EduTech Challenges</h4>
<h4 class="font-nasa f4 f-bold text-purple mt-0">for the brave ones</h4>
</div>
<div class="col-md-8 offset-md-2 text-center mt-5">
<p>Education isn't simple right ? But it has a broad spectrum of areas where it can be improved and innovated! So it's up to you to
change the future through education! We have a couple of ideas:
</p>
</div>
</div>
<div class="row mt-4">
<div class="col-12 col-md-4 col-sm-12">
<ul class="text-center jsh-sm-no-padding list-blank">
<li>Digital literacy</li>
<li>Personalised learning</li>
<li>Alternatives to grading</li>
</ul>
</div>
<div class="col-12 col-md-4 col-sm-12">
<ul class="text-center jsh-sm-no-padding list-blank">
<li>Alternatives to traditonal school</li>
<li>Robotics / Coding</li>
<li>Adaptive learning algorithms</li>
</ul>
</div>
<div class="col-12 col-md-4 col-sm-12 ">
<ul class="text-center jsh-sm-no-padding list-blank">
<li>Mobile learning</li>
<li>Game based learning</li>
<li>Team learning</li>
</ul>
</div>
</div>
</div>
</section>
<!-- challenge -->
<section class="mt-10">
<div class="container">
<div class="row">
<div class="col-md-12 text-right jsh-sm-text-center">
<h4 class="font-nasa f-bold f3">Modex</h4>
<h4 class="font-nasa f-bold f4 text-purple mt-0">challenge</h4>
</div>
</div>
<div class="row mt-5">
<div class="col-md-4 col-sm-6 text-left jsh-sm-text-center">
<img src="img/swags/modex-db.png" class="w-100" />
</div>
<div class="col-md-8 col-sm-6 text-right jsh-sm-text-center">
<p>This year Modex is challenging one team to take on a special project called
<strong>Educational Portal </strong>: online grades catalog,
portal for parents and professors, homework, schedule and help for students.
<br/><br/>
The team that develops this challege will benefit from all Modex infrastructure & blockchain DB and
future mentorship and incubation at Modex HQ to develop this into a fully fledged startup.
<br/><br/>
How awesome is that ? 🤩
</p>
</div>
</div>
</div>
</section>
<!-- agenda -->
<section class="relative">
<div class="stars full" style="height: 900px;"></div>
<div class="absolute above mobile-hide" style="pointer-events: none;">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="rellax" data-rellax-speed="4" style="transform: rotate(12deg); margin-top: 30px;">
<img src="img/swags/bottle.png" class="w-25"/>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row mt-10" id="agenda">
<div class="col-md-12 text-center">
<h4 class="font-nasa f3 f-bold">JSHacks Agenda</h4>
<h4 class="font-nasa f4 f-bold text-purple mt-0">3 days of EduTech</h4>
<div class="row mt-5">
<div class="col-md-4 col-sm-4 mt-5">
<div class="wrap">
<div class="blob2">
<span class="blob2-content">
<h5 class="text-orange font-nasa">Friday</h5>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content">
<p class="text-small">18:30 - Registration</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-right">
<p class="text-small">19:00 - Opening Talks & Goodies</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-left">
<p class="text-small">19:45 - Ideas Presentation & Team Formation</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-right">
<p class="text-small">21:00 - 23:00 Start Hacking</p>
</span>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 mt-5">
<div class="wrap">
<div class="blob2">
<span class="blob2-content">
<h5 class="text-pink font-nasa">Saturday</h5>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content">
<p class="text-small">09:00 Breakfast & Good Time</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-right">
<p class="text-small">10:00 - 13:00 Intense Coding</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-right">
<p class="text-small">13:00 - 14:00 Lunch, Drinks & Surprises</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-right">
<p class="text-small">14:00 - 17:00 Mentorship</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-left">
<p class="text-small">17:00 Hacking Continues 'till Night (or 'till 23:00)</p>
</span>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 mt-5">
<div class="wrap">
<div class="blob2">
<span class="blob2-content">
<h5 class="text-blue font-nasa">Sunday</h5>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content">
<p class="text-small">09:00 Breakfast & Good Time</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-right">
<p class="text-small">10:00 Hacking Continues with fun</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-right">
<p class="text-small">13:00 Lunch & Drinks</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-left">
<p class="text-small">13:00 - 16:00 Pitch Practice with Ardor Muntenia</p>
<span class="blob2-connector"></span>
</span>
</div>
<div class="blob2">
<span class="blob2-content offset-left">
<p class="text-small">16:00 Demos & Ending Ceremony</p>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- workshop -->
<section class="mt-10">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-8">
<h4 class="font-nasa f2 f-bold">Pitch Practice</h4>
<h4 class="text-orange f4 mb-4 f-bold font-nasa mt-0">by Ardor Muntenia</h4>
<span class="label-darkblue">Sunday, 27
<sup>th</sup> October
</span>
<p class="mt-5">
The boys from Ardor Muntenia, the most awesome debate organization in Romania, are going to provide mentorship
and help for the presenters from each team to make their final pitch shine in front of the jury.
This is the first time we introduce Pitch Practice in the JSHacks format to sustain the development of future startups.
</p>
</div>
</div>
</div>
<div class="col-md-3 pull-right d-none d-lg-block" style="margin-top: -70px;">
<div class="stars full" style="height: 1200px;"></div>
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg" filter="url(#goo)" fill="#08112b">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" />
<feComposite in="SourceGraphic" in2="goo" operator="atop" />
</filter>
</defs>
<g>
<circle r="100" cy="145" cx="150">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 145 150" to="360 145 150" dur="10s"
repeatCount="indefinite" />
</circle>
<circle r="100" cy="155" cx="150">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="360 155 150" to="0 155 150" dur="20s"
repeatCount="indefinite" />
</circle>
<circle r="100" cy="150" cx="145">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 150 145" to="360 150 145" dur="30s"
repeatCount="indefinite" />
</circle>
<circle r="100" cy="150" cx="155">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="360 150 155" to="0 150 155" dur="20.5s"
repeatCount="indefinite" />
</circle>
</g>
</svg>
</div>
</section>
<!-- goodies -->
<section class="mt-10 jsh-sm-no-margin">
<div class="blobs3 d-none d-lg-block">
<div class="blob3"></div>
<div class="blob3"></div>
<div class="blob3"></div>
<div class="blob3"></div>
<div class="blob3"></div>
<div class="blob3"></div>
</div>
<div class="container relative pt-2">
<div class="row pl-4 jsh-sm-no-padding">
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-pink">
<i class="fa fa-code" aria-hidden="true"></i>
</p>
<p class="font-nasa text-white jsh-sm-text-blue">Coding</p>
</div>
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-blue pl-5 jsh-sm-no-padding">
<span class="flaticon-beer"></span>
</p>
<p class="font-nasa text-white pl-5 jsh-sm-no-padding jsh-sm-text-blue">Drinks</p>
</div>
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-green pl-5 jsh-sm-no-padding">
<span class="flaticon-pizza"></span>
</p>
<p class="font-nasa text-white pl-5 jsh-sm-no-padding jsh-sm-text-blue">Food</p>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-purple">
<span class="flaticon-network"></span>
</p>
<p class="font-nasa text-white jsh-sm-no-padding jsh-sm-text-blue">Network</p>
</div>
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-orange jsh-sm-no-padding">
<span class="flaticon-sticker"></span>
</p>
<p class="font-nasa text-white jsh-sm-no-padding jsh-sm-text-blue">T-shirts</p>
</div>
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-turquoise mr-5 jsh-sm-no-padding jsh-sm-no-margin">
<span class="flaticon-t-shirt"></span>
</p>
<p class="font-nasa text-white mr-5 jsh-sm-no-padding jsh-sm-no-margin jsh-sm-text-blue">Prizez</p>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-orange jsh-sm-no-padding">
<span class="flaticon-giftbox"></span>
</p>
<p class="font-nasa text-white jsh-sm-no-padding jsh-sm-text-blue">Mentors</p>
</div>
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-green jsh-sm-no-padding">
<i class="fa fa-smile-o" aria-hidden="true"></i>
</p>
<p class="font-nasa text-white jsh-sm-no-padding jsh-sm-text-blue">Connections</p>
</div>
<div class="col-4 col-md-2 col-sm-4 col-xs-4 text-center">
<p class="f2 text-pink mr-5 jsh-sm-no-padding jsh-sm-no-margin">
<span class="flaticon-presentation"></span>
</p>
<p class="font-nasa text-white mr-5 jsh-sm-no-padding jsh-sm-no-margin jsh-sm-text-blue">Stickers</p>
</div>
</div>
<div class="blob-container-4 d-none d-lg-block">
<div>
<svg id="organic-blob" width="150" height="150" xmlns="http://www.w3.org/2000/svg" filter="url(#goo)" fill="#08112b">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" />
<feComposite in="SourceGraphic" in2="goo" operator="atop" />
</filter>
</defs>
<g>
<circle r="50" cy="72" cx="75">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 72 75" to="360 72 75" dur="10s" repeatCount="indefinite"
/>
</circle>
<circle r="50" cy="72" cx="75">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="360 82 75" to="0 72 75" dur="20s" repeatCount="indefinite"
/>
</circle>
<circle r="50" cy="75" cx="72">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 75 72" to="360 75 72" dur="30s" repeatCount="indefinite"
/>
</circle>
<circle r="50" cy="75" cx="73">
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="360 75 72" to="0 75 73" dur="20.5s" repeatCount="indefinite"
/>
</circle>
</g>
</svg>
</div>
</div>
</div>
</section>
<!-- jury -->
<section class="mt-5">
<div class="container">
<div class="row">
<div class="col-md-12 text-right jsh-sm-text-center">
<h4 class="font-nasa f-bold f3">Jury</h4>
<h4 class="font-nasa f-bold f4 text-purple mt-0">the experts</h4>
</div>
</div>
<div class="row mt-5">
<div class="col-md-3 col-sm-6 text-center">
<div class="user-pic">
<img src="img/jury/dorin-stan.jpg" />
</div>
<h4 class="font-nasa f5 mt-4">Dorin Stan</h4>
<p class="text-orange text-small">
Software Engineer <br>@Modex
</p>
</div>
<div class="col-md-3 col-sm-6 text-center">
<div class="user-pic">
<img src="img/jury/irina-dumitru.png" />
</div>
<h4 class="font-nasa f5 mt-4">Irina Dumitru</h4>
<p class="text-orange text-small">
Bucharest Campus Manager <br>@WildCodeSchool
</p>
</div>
<div class="col-md-3 col-sm-6 text-center">
<div class="user-pic">
<img src="img/jury/radu-gramatovici.jpg" />
</div>
<h4 class="font-nasa f5 mt-4">Radu Gramatovici</h4>
<p class="text-orange text-small">
Decan <br>@Facultatea de Mate-Info Universitate Bucuresti
</p>
</div>
<div class="col-md-3 col-sm-6 text-center">
<div class="user-pic center-block">
<img src="img/mentors/eduard-budacu.png" />
</div>
<h4 class="font-nasa f5 mt-4">Eduard Budacu</h4>
<p class="text-orange text-small">Agile Coach & Founder @Dovelopers</p>
</div>
</div>
</div>
</section>
<div class="absolute above mobile-hide" style="pointer-events: none;">
<div class="container">
<div class="row">
<div class="offset-md-10 col-md-5 pull-right">
<div class="rellax" data-rellax-speed="4" style="transform: rotate(12deg); margin-top: 30px;">
<img src="img/swags/book.png" class="w-25" />
</div>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="stars full" style="height: 100%;"></div>
<svg version="1.1" id="Layer_1" class="jsh-swooosh" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1800px" height="321.829px" viewBox="0 0 1800 321.829" enable-background="new 0 0 1800 321.829" xml:space="preserve">
<path fill="#08112B" d="M703.731,185.495C293.502,136.274,87.615,187.899,0,224.085V0.001l1799.999,0v294.773
C1500.028,327.082,1179.88,242.432,703.731,185.495z M1799.999,0.001H0v321.828h1799.999V0.001z" />
</svg>
</div>
<!-- mentors -->
<section class="bg-inversed relative" style="margin-top: -10px;">
<div class="stars full" style="height: 100%;"></div>
<div class="container">
<div class="row" id="mentors">
<div class="col-md-12">
<h4 class="font-nasa f3 f-bold">Mentors</h4>
<h4 class="font-nasa mb-3 f4 f-bold mt-0 text-purple">the wizards</h4>
</div>
</div>
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/alin-iftemi.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Alin Iftemi</h4>
<h5 class="text-orange">Head @Modex</h5>
<p class="mt-4 text-small">
Alin is the Head of Modex, the blockchain database company. A fully skilled programmer, he is the driving force behind the technological breakthrough platform designed for developers and enterprises engaged in the blockchain world.
<br /><br />
Passionate about artificial intelligence (AI) and machine learning, Alin is currently one of the guys who is working to adopt the blockchain revolution in the real life with real results. With almost 20 years work experience in big tech companies, he sees the future as a close relation between technology and people.
</p>
</div>
</div>
<!-- mentor 2 -->
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/matthias-margot.JPG" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Matthias Margot</h4>
<h5 class="text-orange">JS Trainer @WildCodeSchool | JS App Developer @Aggero</h5>
<p class="mt-4 text-small">
As a Trainer for WildCodeSchool Matthias leads students of any prior experience level on their journey into the realms of JavaScript & its ecosystem.
He's the technical face of the school in Bucharest representing them at workshops & events and helping the european network of campuses expand by adding a node to the Bucharest landscape for the first time.
<br /><br />
At Aggero he's building the application for its big data & machine learning driven adtech analytics tool.
</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/adrian-malaies.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Adrian Malaies-Popescu</h4>
<h5 class="text-orange">CEO & Trainer @Ardor Muntenia</h5>
<p class="mt-4 text-small">
Adrian has been training young people in speech and argumentation since 2010, when he joined the training team of ARDOR Muntenia. Over the years, he has accumulated thousands of hours and training with young students, both professionally and on a volunteer basis. Currently, his training work focuses on young professionals looking to improve their argumentation, delivery and conflict management skills. In his free time he judges public speaking tournaments and reads SF literature.
<br /><br />
He also happens to manage ARDOR Muntenia and as executive director he coordinates the activity of more than 50 debate clubs and most of the projects with and about debate in the south of Romania.
</p>
</div>
</div>
<!-- mentor 4 -->
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/giorgiana-vlasceanu.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Giorgiana Vlasceanu</h4>
<h5 class="text-orange">Co-founder @Codette</h5>
<p class="mt-4 text-small">
Giorgiana is the Co-founder and Vice President of Codette, an organization for people with a passion for technology that promotes diversity and education at all levels.
She is currently pursuing her PhD in Computer Science, Teaching Assistant at University Politehnica of Bucharest, Faculty of Automatic Control and Computers.
<br /><br />Giorgiana received the Forbes Romania “30 Under 30” award in 2017.
</p>
</div>
</div>
<!-- mentor 5 -->
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/eduard-budacu.png" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Eduard Budacu</h4>
<h5 class="text-orange">Agile Coach & Founder @Dovelopers</h5>
<p class="mt-4 text-small">
Eduard has a background in software development, agile consultancy and teaching. He is specialised in Agile, Scrum, Mobile & Web Development. Passionate about personal growth and learning how computers "think".
<br /><br />
As a JSHacks mentor he looks forward to support any team that aims to create awesome digital learning experiences.
</p>
</div>
</div>
<!-- mentor 6 -->
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/andrei-onel.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Andrei Onel</h4>
<h5 class="text-orange">Founder @edumo.org</h5>
<p class="mt-4 text-small">
Andrei always had a interest for education and technology. Inspired by Khan academy, he founded edumo.org, which offers free online math videos and exercises.
<br /><br />
As a member of Code 4 Romania he is responsible redirectioneaza.ro, a website that helps NGOs collect the 2% form.
</p>
</div>
</div>
<!-- mentor 7 -->
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/anca-bundaru.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Anca Bundaru</h4>
<h5 class="text-orange">Lead Product Marketing Manager @Bitdefender</h5>
<p class="mt-4 text-small">
Anca Bundaru leads product marketing at Bitdefender. Her job is to demonstrate how Bitdefender’s products solve the world's security, making the customer the priority, and ultimately, letting technology speak for itself.
<br /><br />
She keeps close to the entrepreneurial culture and she likes to immerse herself in innovation ecosystems.
</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/team/claudia-ifrim.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Claudia Ifrim</h4>
<h5 class="text-orange">Software Engineer</h5>
<p class="mt-4 text-small">
Claudia is software engineer and currently a PhD student at Politehnica University of Bucharest Doctoral School.
During the course of her career she gained a strong background in web development with a focus on Java, Drupal, AngularJS, VueJS, Node.js, Python and Apache Solr.
<br /><br />
She believes education is very important, whether formal or not, and for some years she has taught computer science courses at the University of Bucharest, Politehnica University of Bucharest and other technology oriented events.
</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/bogdan-raduta.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Bogdan Raduta</h4>
<h5 class="text-orange">Applications Cluster Manager @rinftech</h5>
<p class="mt-4 text-small">
Bogdan Raduta delivers managed digital products at RINF TECH. His job is to design and build products based on different technologies, including Machine Learning, Robotics mixed with AR, VR, or even IoT on all possible platforms mobile, web, embedded and many more.
<br /><br />
He is addicted to startup culture and loves to work hands-on on products and see how an idea can become a reality. He is also part of our code community, supporting @BSOAI (Bucharest School of AI).
</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-2 mt-5">
<div class="user-pic ml-0">
<img src="img/mentors/andrei-olaru.jpg" />
</div>
</div>
<div class="col-md-8 mt-5">
<h4 class="font-nasa f4 text-blue">Andrei Olaru</h4>
<h5 class="text-orange">CEO @Critique Gaming & Senior Trainer @ARDOR Muntenia</h5>
<p class="mt-4 text-small">
An economics and security studies graduate but more importantly a debater with titles like Oxford or Cambridge IV ESL Finalist under his belt, Andrei spent the first part of his adult life working as a debate, public speaking and argumentation trainer.
<br /><br />
In 2017 he co-founded Critique Gaming, a studio committed to developing meaningful games that explore relevant contemporary topics. The studio is on the verge of releasing its first title, the noir detective game "Interrogation".
</p>
</div>
</div>
</div>
</section>
<div class="relative">
<div class="stars full" style="height: 100%;"></div>
<svg version="1.1" id="Layer_1" class="jsh-swooosh" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1800px" height="321.829px" viewBox="0 0 1800 321.829" enable-background="new 0 0 1800 321.829" xml:space="preserve">
<path fill="#08112B" d="M1799.999,294.774V0L0,0.001v224.084c87.615-36.187,293.502-87.812,703.731-38.591
C1179.88,242.432,1500.028,327.082,1799.999,294.774z" />
</svg>
</div>
<!-- supporters -->
<section style="margin-top: -40px;">
<div class="container">
<div class="row" id="partners">
<div class="col-md-12">
<h4 class="font-nasa f3 f-bold">Supporters</h4>
<h4 class="font-nasa text-purple f4 f-bold mt-0">so grateful</h4>
</div>
</div>
<div class="row mt-5 align-items-center">
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://bucharest.techhub.com/" target="_blank" class="highlighted">
<img src="img/supporters/techhub.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://ardor.org.ro/" target="_blank" class="highlighted">
<img src="img/supporters/ardor.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://www.howtoweb.co/" target="_blank" class="highlighted">
<img src="img/supporters/htw.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://www.creative-tim.com//" target="_blank" class="highlighted">
<img src="img/supporters/creative-tim.png" class="w-75" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://jsheroes.io/" target="_blank" class="highlighted">
<img src="img/supporters/jsheroes.svg" class="w-75" />
</a>
</div>
</div>
<div class="row mt-5 align-items-center">
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://critique-gaming.com/" target="_blank" class="highlighted">
<img src="img/supporters/critique-gaming.png" class="w-75" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://www.bookster.ro/landing/" target="_blank" class="highlighted">
<img src="img/supporters/bookster.png" class="w-75" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://www.jerryspizza.ro/" target="_blank" class="highlighted">
<img src="img/supporters/jp.png" class="w-75" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 text-left jsh-sm-text-center">
<a href="https://www.eisberg.ro/ro/" target="_blank" class="highlighted">
<img src="img/supporters/eisberg.jpg" class="w-75" />
</a>
</div>
</div>
</div>
</div>
</section>
<!-- media -->
<section class="mt-150">
<div class="container">
<div class="row" id="partners">
<div class="col-md-12">
<h4 class="font-nasa f3 f-bold">Media Partners</h4>
<h4 class="font-nasa text-purple f4 f-bold mt-0">spreading the word</h4>
</div>
</div>
<div class="row mt-5 align-items-center">
<div class="col-6 col-md-3 col-sm-6 text-left jsh-sm-text-center">
<a href="https://start-up.ro/" target="_blank" class="highlighted">
<img src="img/partners/start-up.svg" class="w-75" />
</a>
</div>
<div class="col-6 col-md-3 col-sm-6 text-left jsh-sm-text-center">
<a href="https://nomade.ro/" target="_blank" class="highlighted">
<img src="img/partners/nomade.png" class="w-75" />
</a>
</div>
<div class="col-6 col-md-3 col-sm-6 text-left jsh-sm-text-center">
<a href="https://www.romaniapozitiva.ro/" target="_blank" class="highlighted">
<img src="img/partners/romania-pozitiva.png" class="w-100" />
</a>
</div>
</div>
</div>
</div>
</section>
<!-- community partners -->
<section class="mt-150 mb-150">
<div class="container">
<div class="row">
<div class="col-md-12 text-right">
<h4 class="font-nasa f3 f-bold">Communities</h4>
<h4 class="font-nasa f4 f-bold text-purple mt-0">our friends</h4>
</div>
</div>
<div class="row mt-5">
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://jsleague.ro" target="_blank" class="highlighted">
<img src="img/communities/jsleague.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="http://fmi.unibuc.ro/en/" target="_blank" class="highlighted">
<img src="img/communities/fmiunibuc.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://www.facebook.com/groups/angularjs.bucharest/" target="_blank" class="highlighted">
<img src="img/communities/angularjs.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://jsgirls.ro/" target="_blank" class="highlighted">
<img src="img/communities/jsgirls.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://codette.ro/" target="_blank" class="highlighted">
<img src="img/communities/codette.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://dovelopers.com" target="_blank" class="highlighted">
<img src="img/communities/dovelopers.png" class="w-75" />
</a>
</div>
</div>
<div class="row mt-4">
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://www.facebook.com/groups/BucharestJS/" target="_blank" class="highlighted">
<img src="img/communities/bucharestjs.png" class="w-50 rounded" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://incremental.community/" target="_blank" class="highlighted">
<img src="img/communities/incremental-community.png" class="w-50" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://www.softlead.ro/" target="_blank" class="highlighted">
<img src="img/partners/softlead.png" class="w-50 mt-4" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="http://www.rosedu.org/" target="_blank" class="highlighted">
<img src="img/communities/rosedu.png" class="w-75 mt-4" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://www.bestbucuresti.ro/" target="_blank" class="highlighted">
<img src="img/communities/best.png" class="w-75 mt-2" />
</a>
</div>
<div class="col-6 col-md-2 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="http://as-mi.ro/" target="_blank" class="highlighted">
<img src="img/communities/asmi.png" class="w-75 mt-2" />
</a>
</div>
</div>
<div class="row mt-4">
<div class="col-6 col-md-2 offset-md-10 col-sm-6 col-xs-6 text-right jsh-sm-text-center">
<a href="https://www.facebook.com/lseorgro/" target="_blank" class="highlighted">
<img src="img/communities/lse.png" class="w-50 mt-2" />
</a>
</div>
</div>
</div>
</section>
<section class="mt-150 mb-10em">
<div class="container">