-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1007 lines (934 loc) · 55.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property="fb:app_id" content="129939930906492">
<meta property="og:title" content="UtkalHacks - Emisha | March 15 - 17, 2019">
<meta property="og:type" content="website">
<meta property="og:url" content="https://utkalhacks.netlify.com/">
<meta property="og:image" content="https://utkalhacks.netlify.com/images/uh-200.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@emisha_gita">
<meta name="twitter:site" content="@emisha_gita">
<meta name="twitter:title" content="UtkalHacks - Emisha | March 15 - 17, 2019">
<meta name="description" content="UtkalHacks - Annual hackathon organized by Emisha. There are a lot of Hackathons being hosted every now
and then. A lot of Developers and Designers get together and build cool stuffs. But the problem here is, it still sound scary and not so
welcoming for the beginners yet! Even those who make it to the finals with some great prototypes, they also fail because their prototypes
remains prototype, and the story ends there. We are trying to solve this problem by putting up a lot of beginners friendly workshops to
on board newcomers. Prior to the Hackathon, participants will be provided with pre-event workshops on some of the most important topics
like Front end Development, UI / UX etc, by some of the most prominent speakers.">
<meta name="keywords" content="Hackathon, GITA ,Bhubaneswar, Utkal, Odisha, Hacks, 2019, Bootcamp, Emisha, getemisha, workshop, cuttack, community,
hackathon community, developer community, developer relations, api, sdk, technology, startups, innovation, hacks, hackathon india, hackathon hackers indiahackathon, hackathon ideas">
<meta name="author" content="Sourav Kumar Nanda<[email protected]>">
<meta name="author" content="Sk. Ayaz <[email protected]>">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="main.css" rel="stylesheet">
<title>UtkalHacks 1.0 - Emisha</title>
<link rel="shortcut icon" href="images/logo%20vertical.png">
</head>
<body>
<!-- Beta Badge
<div id="image">
<div class="badge">Beta</div>
</div>
-->
<header id="header">
<div class="hero-section">
<img src="images/uh-bg-animated-01.svg" />
<img width="500px" height="500px" src="images/UH-animated.svg" class="imtip img-fluid"/>
<!-- header button -->
<button id="devfolio-apply-now" type="button">
<svg class="logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px">
<path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z"/>
<path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/>
</svg>
Apply with Devfolio
</button>
</div>
</header>
<!-- Navigation -->
<div class="container sticky-top navbar-container">
<nav class="navbar navbar-expand-lg navbar-light" id="maiNav">
<div class="container">
<a class="brand-title js-scroll-trigger" href="#header"><img src="images/logo-horizontal.png" alt="UtkalHacks"></a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#schedule">Schedule</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#tracks">Tracks</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#events">Events</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#speakers">Speakers</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#sponsors">Sponsors</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#accordion">FAQ</a></li>
</ul>
</div>
</div>
</nav>
</div>
<!--About Section-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 col-12 text-white ">
<h1 class="section-heading">About UtkalHacks</h1><br>
<p class="text-justify">
Setting up milestones has always been the goal of Emisha. Now it's time for the most premier event brought to you by our community. So, get your adrenaline up and gear up for the first ever Hackathon at Silver City of Odisha, taking place from 15th - 17th of March.</p>
<p>Last date of Registration is 10th March at 11.59 PM.
</p>
</div>
<div class="col-lg-6 col-12">
<div class="iframe-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/1fYldR4We-Q" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!--<img src="images/about.svg">
<!--<h1 style="font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif;
font-weight: 500;
font-size: 2.8m;
color: #ffffff!important;
line-height: 1.2em;
text-align: center;
">Everthing starts with an Idea!</h1>!-->
</div>
</div>
</div>
</div>
</section>
<!--Diversity Section-->
<section id="diversity">
<div class="container">
<div class="row">
<h1>
How we support diversity?
</h1>
<br><br>
<p>UtkalHacks is dedicated to providing a safe and comfortable environment and harassment-free experience for everyone, regardless of gender, gender identity, and expression, age, sexual orientation, disability, physical appearance, body size, race, ethnicity, nationality, religion, political views etc. It's important because
Hackathons are about solving problems, and it's our responsibility to provide inclusive environments where all genders can flourish.
It's important because Hackathons are about solving problems, and it's our responsiblity to provide inclusive environments
where all genders can flourish.</p>
<p>To ensure this, we have seats reserved for Women and also aim to onboard underprivileged sectioned students who need a platform to build or showcase their work.</p>
<li>Encouraging mainly Girl Students and differently abled people to join communities learn, create and share knowledge to inspire other girls to develop themselves.
<li>Giving opportunities to girls and differently abled as mentors or speakers to share their experience and knowledge with others.</li>
<br><br><br>
</div>
<div id="diversity_carousel">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="images/diversity/1.JPG" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/diversity/2.JPG" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="images/diversity/3.jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<br>
<p style="text-align: center">See our Code of Conduct <a href="https://hackcodeofconduct.org/905-utkalhacks">here.</a></p>
</div>
</div>
</section>
<!--Info Section-->
<section id="schedule">
<div class="container">
<h1>
Schedule
</h1>
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<h1 style="font-size: 27px;">
Pre Events Schedule
</h1>
<ul class="timeline">
<li>
<p>Build and Deploy NodeJS Apps - 24th Feb, 2019</p>
</li>
<li>
<p>AR Vision - 28th Feb, 2019</p>
</li>
<li>
<p>ThinkDesign #1 - 2nd March, 2019</p>
</li>
<li>
<p>Conversational UI - 3rd March, 2019</p>
</li>
<li>
<p>ThinkDesign #2 - 6th March, 2019</p>
</li>
<li>
<p>Front-end - 9th March, 2019</p>
</li>
<li>
<p>Introduction to Agile & DevOps - 15th March, 2019</p>
</li>
</ul>
</div>
<div class="col-md-6 col-12">
<h1 style="font-size: 27px;">
Hackathon Schedule
</h1>
<ul class="timeline">
<li>
<p>Registration Opens - 23rd Feb, 2019</p>
</li>
<li>
<p>Registration Closes - 10th March, 2019</p>
</li>
<li>
<p>15th Mar - Talk Sessions from 9 AM to 6 PM</p>
</li>
<li>
<p>16th Mar - Check-in at 8 AM and Hack Begins</p>
</li>
<li>
<p>17th Mar - Hack Ends at 2 PM</p>
</li>
<li>
<p>17th Mar - Submission and Prize Distribution by 6 PM</p>
</li>
</ul>
</div>
<div class="col-lg-6 col-12">
<h1 style="font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif;
font-weight: 500;
font-size: 2.8m;
color: #000000!important;
line-height: 1.2em;
text-align: center;"></h1>
</div>
</div>
</div>
</div>
</section>
<section id="prize">
<div class="container">
<div class="text-white">
<h1 class="text-black">Prizes</h1><br>
</div>
<div class="row">
<div class="prize-card">
<img class="img-fluid" src="images/prize/1st.svg">
<h3 class="text-black" align="center">1st - ₹ 30,000/-</h3>
</div>
<div class="prize-card">
<img class="img-fluid" src="images/prize/2nd.svg">
<h3 class="text-black" align="center">2nd - ₹ 20,000/-</h3>
</div>
<div class="prize-card">
<img class="img-fluid" src="images/prize/3rd.svg">
<h3 class="text-black" align="center">3rd - ₹ 10,000/-</h3>
</div>
</div>
</div>
</section>
<section id="tracks">
<div class="container">
<div class="text-white">
<h1 class="text-black">Tracks</h1><br>
</div>
<div class="row">
<div class="track-card">
<img class="img-fluid" src="images/Tracks/blockchain.svg">
<h3 class="text-black" align="center">Blockchain</h3>
</div>
<div class="track-card">
<img class="img-fluid" src="images/Tracks/vr-glasses.svg">
<h3 class="text-black" align="center">AR/VR</h3>
</div>
<div class="track-card">
<img class="img-fluid" src="images/Tracks/ML.svg">
<h3 class="text-black" align="center">Machine Learning</h3>
</div>
<div class="track-card">
<img class="img-fluid" src="images/Tracks/AI.svg">
<h3 class="text-black" align="center">Artificial Intelligence</h3>
</div>
<div class="track-card">
<img class="img-fluid" src="images/Tracks/IOT.svg">
<h3 class="text-black" align="center">IOT</h3>
</div>
<div class="track-card">
<img class="img-fluid" src="images/Tracks/ethereum.svg">
<h3 class="text-black" align="center">Ethereum</h3>
</div>
</div>
</div>
</section>
<!-- Events -->
<section id="events">
<div class="container">
<div class="text-white">
<h1>Upcoming Events</h1><br>
</div>
<div class="row">
<!-- event-1-->
<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/nodejs-event.jpg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>Build and Deploy NodeJS Apps</b></h5>
<p class="card-text">
<p>Event Date: 24th Feb</p>
<p>Venue: Trident Academy of Technology</p>
<div class="reg-container">
<button class="btn btn-primary Register"><a class="register-link" href="http://meetu.ps/e/GnJ7H/zNPRs/d/">Register</a></button>
</div>
</p>
<p>
<div class="explore-container">
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-1" aria-expanded="false" aria-controls="collapseExample-1">
View Agenda
</button>
</div>
</p>
<div class="collapse" id="collapseExample-1">
<div class="card card-body">
<p>In this workshop, participants will explore the basics of Node.js and Express by making a HackerLog web app. We'll guide them through setting up their JavaScript development environments, installing Visual Studio Code, downloading and testing an app locally, How to use MongoDB, and seamlessly deploying it with Microsoft Azure.</p>
</div>
</div>
<!--<a href="#" class="btn btn-primary">Read more..</a>-->
</div>
</div>
</div>
<!-- event-2-->
<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/AR%20Vision%20Banner.jpg" alt="Project Image">
<div class="card-body">
<br>
<h5 class="card-title"><b>AR Vision</b></h5>
<p class="card-text">
<p>Event Date: 28th February</p>
<p>Venue: Gandhi Institute for Technological Advancement (GITA), BBSR</p>
<div class="reg-container">
<button class="btn btn-primary Register"><a class="register-link" href="https://goo.gl/forms/Z2BSJpU6djxiRjnl1">Register</a></button>
</div>
</p>
<p>
<div class="explore-container">
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-2" aria-expanded="false" aria-controls="collapseExample-2">
View Agenda
</button>
</div>
</p>
<div class="collapse" id="collapseExample-2">
<div class="card card-body">
<!--<div class="collapse-section">-->
<p>In this event we will be putting focus on and get on with glimpse into Augmented Reality and virtual reality and also we will be getting to know the benefits and uses of AR and its impact in today's technology</p>
</div>
</div>
</div>
</div>
</div>
<!-- event-3-->
<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/conversationalUI.jpg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>Conversational UI</b></h5>
<p class="card-text">
<p>Event Date: 3rd March</p>
<p>Venue: Ravenshaw University, Cuttack</p>
<div class="reg-container">
<button class="btn btn-primary Register"><a class="register-link" href="https://goo.gl/forms/u2U1svjmTBZ1lUXf2">Register</a></button>
</div>
<p>
<div class="explore-container">
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-4" aria-expanded="false" aria-controls="collapseExample-4">
View Agenda
</button>
</div>
</p >
<div class="collapse" id="collapseExample-4">
<div class="card card-body">
<li>Building conversational experiences</li>
<li>Conversational design intro</li>
<li>Build Actions for the Google Assistant</li>
<li>Creating your own actions for Google Assistant.</li>
</div>
</div>
</div>
</div>
</div>
<!-- event-4-->
<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/think%20design%202.jpg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>ThinkDesign- #1</b></h5>
<p class="card-text">
<p>Event Date: 6th March</p>
<p>Venue: Ravenshaw University, Cuttack</p>
<div class="reg-container">
<button class="btn btn-primary Register"><a class="register-link" href="http://meetu.ps/e/GqVWd/zNPRs/d">Register</a></button>
</div>
<p>
<div class="explore-container">
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-5" aria-expanded="false" aria-controls="collapseExample-5">
View Agenda
</button>
</div>
</p >
<div class="collapse" id="collapseExample-5">
<div class="card card-body">
<l1>Introduction to Design thinking.</l1>
<l1>Different disciplines of design </l1>
<l1>Double diamond structure for problem-solving</l1>
<l1>Data gathering 5. Ideation and brainstorming </l1>
<l1>Creating mockups </l1>
<l1>Workshop on how can we leverage Figma for Prototyping. </l1>
<li>Bring your laptops charged!</li>
<li><a href="www.figma.com">Visit www.figma.com, signup and install Figma for desktop.</a></li>
</div>
</div>
</div>
</div>
</div>
<!-- event-5-->
<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/front-end.jpg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>Front-end</b></h5>
<p class="card-text">
<p>Event Date: 9th March</p>
<p>Venue: Ravenshaw University, Cuttack</p>
<div class="reg-container">
<button class="btn btn-primary Register"><a class="register-link" href="url">Coming soon!</a></button>
</div>
<p>
<div class="explore-container">
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-6" aria-expanded="false" aria-controls="collapseExample-6">
View Agenda
</button>
</div>
</p >
<div class="collapse" id="collapseExample-6">
<div class="card card-body">
<l1>Javascript fundamentals</l1>
<l1>Build awesome hacks with JS</l1>
<l1>Modern JS</l1>
<l1>React Boot Camp</l1>
<l1>Component UI with JSX</l1>
<l1>Style react components</l1>
</div>
</div>
</div>
</div>
</div>
<!-- event-6-->
<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/Atlassian-event.jpg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>Introduction to Agile & DevOps</b></h5>
<p class="card-text">
<p>Event Date: 15th of March</p>
<p>Venue: Ravenshaw University, Cuttack</p>
<div class="reg-container">
<button class="btn btn-primary Register"><a class="register-link" href="https://aug.atlassian.com/events/details/atlassian-bhubaneswar-presents-introduction-to-agile-devops/">Register</a></button>
</div>
</p>
<p>
<div class="explore-container">
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-7" aria-expanded="false" aria-controls="collapseExample-7">
View Agenda
</button>
</div>
</p>
<div class="collapse" id="collapseExample-7">
<div class="card card-body">
<!--<div class="collapse-section">-->
<p>This is a workshop to help participants to understand Agile, DevOps, DevOps culture and Practices. This workshop is full of fun as well as provides introduction session on Continuous Development, Continuous Testing, Continuous Integration, and Continuous Deployment.</p>
<li>Introduction to Agile software development. </li>
<li>SCRUM principles</li>
<li>Managing remote team using Trello & Slack.</li>
<li>Introduction to Jira & Bitbucket Software.</li>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/Nodejs-event.svg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>NodeJS Bootcamp</b></h5>
<p class="card-text">
<p>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-4" aria-expanded="false" aria-controls="collapseExample-4">
Button with data-target
</button>
</p>
<div class="collapse" id="collapseExample-4">
<div class="card card-body">
<li>Why Node JS?</li>
<li>Introduction to Node JS</li>
<li>Tooling & set-up</li>
<li>Node Basics</li>
<li>Introduction to Node Modules & NPM</li>
<li>Introduction to asynchronous programming</li>
<li>Build a Shopify with Node & Express</li>
</div>
</div>
</P>
</p>
<!--<a href="#" class="btn btn-primary">Read more..</a>-->
</div>
</div>
</div>
<!--<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/js-event.svg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>Get Groovy with JavaScript</b></h5>
<p class="card-text">
<p>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-5" aria-expanded="false" aria-controls="collapseExample-5">
Button with data-target
</button>
</p>
<div class="collapse" id="collapseExample-5">
<div class="card card-body">
<li>Javascript fundamentals</li>
<li>Build awesome hacks with JS</li>
<li>Modern JS</li>
</div>
</div>
</p>
<!--<a href="#" class="btn btn-primary">Read more..</a>-->
</div>
</div>
</div>
<!--<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/blockchain-event.svg" alt="Project Image">
<div class="card-body">
<h5 class="card-title"><b>Blockchain 101</b></h5>
<p class="card-text">
<p>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample-6" aria-expanded="false" aria-controls="collapseExample-6">
Button with data-target
</button>
</p>
<div class="collapse" id="collapseExample-6">
<div class="card card-body">
<li>Blockchain Foundations</li>
<li>Brief history of Blockchain</li>
<li>What is Decentralisation?</li>
<li>What is Ledgers and Distributed Ledgers?</li>
<li>What is Blockchain and How it looks like?</li>
<li>Hash functions, public key & private key.</li>
<li>Cryptocurrency in today’s world.</li>
<li>Knowing Smart contracts.</li>
<li>Bitcoin vs Ethereum.</li>
<li>Introduction to Ethereum.</li>
<li>Blockchain use cases.</li>
</div>
</div>
</p>
<!--<a href="#" class="btn btn-primary">Read more..</a>-->
</section>
<!--<div class="col-md-4">
<div class="card" style="margin-top: 14px">
<img class="card-img-top" src="images/AR%20core-event.svg" alt="Project Image">
<div class="card-body">
<h5 class="card-title">Google AR Core</h5>
<p class="card-text">
<li>Introduction to AR/VR.</li>
<li>AR core overview.</li>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Spekaers -->
<section id="speakers">
<div class="containers">
<div class="text-black">
<h1 class="text-black">Our Speakers</h1><br>
</div>
<div class="row">
<!-- <div class="col-md-4">
<div class="card">
<img class="card-img-top" src="images/speakers/nirmal.png" alt="Speaker Image">
<div class="card-body" align="center">
<h5 class="card-title" >Nirmal Hota</h5>
<h6>Technical Project Lead at <b>Mindfire Solutions</b></h6>
<ul class="list-unstyled list-inline social text-center">
<li class="list-inline-item"><a href="https://twitter.com/nirmalhota?s=09"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/nirmalhota" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div> -->
<div class="col-md-4">
<div class="card">
<img class="card-img-top" style="height:500px;" src="images/speakers/karan.jpeg" alt="Speaker Image">
<div class="card-body" align="center">
<h5 class="card-title" >Karan Shaw</h5>
<h6>Cognitive Engineer at <b>Nexright Solutions</b></h6>
<ul class="list-unstyled list-inline social text-center">
<li class="list-inline-item"><a href="#"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/karan-shaw/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="images/speakers/tadit.png" alt="Speaker Image">
<div class="card-body" align="center">
<h5 class="card-title">Tadit Das</h5>
<h6>Sr. Software Engineer at <b>Mindfire Solutions</b></h6>
<ul class="list-unstyled list-inline social text-center">
<li class="list-inline-item"><a href="https://twitter.com/taditdash"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/taditdash" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img class="card-img-top" src="images/speakers/surya.png" alt="Speaker Image">
<div class="card-body" align="center">
<h5 class="card-title" >Surya Narayan Barik</h5>
<h6>Software Engineer(R&D) at <b>ProcessMAP Corporation</b></h6>
<ul class="list-unstyled list-inline social text-center">
<li class="list-inline-item"><a href="https://twitter.com/barik_surya"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/surya-narayan-barik-15961a8b" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
<!-- <div class="col-md-4">
<div class="card">
<img class="card-img-top" src="images/speakers/jayant.png" alt="Speaker Image">
<div class="card-body" align="center">
<h5 class="card-title" >Jayant Rajwani</h5>
<h6>Software Developer Engineer at <b>INTELLIBOT.IO</b></h6>
<ul class="list-unstyled list-inline social text-center">
<li class="list-inline-item"><a href="https://twitter.com/jayantrajwani"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/jayantrajwani" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div> -->
<!-- <div class="col-md-4">
<div class="card">
<img class="card-img-top" src="images/speakers/abhijeet.png" alt="Speaker Image">
<div class="card-body" align="center">
<h5 class="card-title" >Abhijeet Patnaik</h5>
<h6>Master's of technology (M. tech) from <b>SOA University.</b></h6>
<ul class="list-unstyled list-inline social text-center">
<li class="list-inline-item"><a href="https://twitter.com/AshruABHIJIT"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/abhijitashru" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div> -->
</div>
</div>
</section>
<section id="sponsors">
<div class="container">
<div class="text-white">
<h1>Sponsors</h1>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-4">
<center> <a href="https://github.com/"><img width="200px" height="200px" src="images/sponsors/github.svg" alt="" class="img-fluid" style="margin-bottom:30px"></a> </center>
</div>
<div class="col-md-4">
<center> <a href="https://github.com/"><img width="250px" height="250px" src="images/startup.png" alt="" class="img-fluid" style="margin-bottom:30px"></a> </center>
</div>
<div class="col-md-3"></div>
<div class="col-md-3">
<a href="https://www.atlassian.com/"><img width="270px" height="240px" src="images/sponsors/Atlassian-horizontal-blue-rgb.svg" alt="" class="sponsors img-fluid"></a>
</div>
<div class="col-md-3">
<a href="https://devfolio.co/"><img width="250px" height="220px" src="images/sponsors/Logo+Text.svg" alt="" class="sponsors img-fluid"></a>
</div>
<div class="col-md-3">
<a href="https://www.cloudflare.com"><img width="210px" height="210px" src="images/sponsors/cloudflare-1.svg" alt="" class="img-fluid" style="margin-bottom:15px;"></a>
</div>
<div class="col-md-3">
<a href="https://matic.network"><img width="200px" height="200px" src="images/sponsors/Copy of blue_dark.svg" alt="" class="img-fluid" style="margin-top:8px;"></a>
</div>
<div class="col-md-3">
<img width="250px" height="220px" src="images/sponsors/mongodb.svg" alt="" class="img-fluid" style="margin-right:20px; margin-top: 12px;" >
</div>
<div class="col-md-3">
<img width="130px" height="130px" src="images/sponsors/crowdsource.svg" alt="" class="img-fluid" style="margin-left: 50px;">
</div>
<div class="col-md-3">
<img width="200px" height="200px" src="images/sponsors/unity-technologies-logo.svg" alt="" class="img-fluid" style="margin-top:25px">
</div>
<div class="col-md-3">
<img width="110px" height="110px" src="images/sponsors/jetbrains.svg" alt="" class="img-fluid" style="margin-top:25px" >
</div>
<div class="col-md-3">
<img width="200px" height="200px" src="images/sponsors/sketch-1.svg" alt="" class="img-fluid">
</div>
<!-- <img width="200px" height="200px" src="images/sponsors/GDG%20svg.svg" alt="" class="img-fluid"> -->
<div class="col-md-3">
<img width="150px" height="150px" src="images/sponsors/mlh-logo-color.svg" alt="" class="img-fluid mlh-logo">
</div>
<div class="col-md-3">
<img width="200px" height="200px" src="images/sponsors/elastic.svg" alt="" class="img-fluid mlh-logo">
</div>
<div class="col-md-3">
<img width="120px" height="100px" src="images/sponsors/Topramen.jpg" alt="" class="img-fluid mlh-logo">
</div>
<div class="col-md-2">
<img width="120px" height="120px" src="images/sponsors/bounties.svg" alt="" class="img-fluid mlh-logo">
</div>
<div class="col-md-3">
<img width="200px" height="200px" src="images/sponsors/tech_logo.png" alt="" class="img-fluid mlh-logo">
</div>
<div class="col-md-3">
<img width="200px" height="200px" src="images/tie.png" alt="" class="img-fluid mlh-logo">
</div>
</div>
</div>
</section>
<!-- FAQ start -->
<div id="accordion">
<div class="container">
<div class="FAQ-container">
<div class="text-black">
<h1>FAQ's</h1>
</div>
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Who can participate?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
Everyone is welcome to apply, be it students, professionals. If you are under 18 years of age, we’ll need a parental consent form.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
How does the application process work?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body">
We’re looking for people who "do"! Those who are passionate enough to work on crazy world-changing ideas. We’ll get to know more about your abilities from the past projects, GitHub profile, participation/awards in other hackathons.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
When will application close?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body">
The application portal will be closed on March 10th at 11:59pm IST. We evaluate applications on a rolling basis and acceptances will be sent every weekend via email. The sooner you apply, the better chances you have of acceptance. Once accepted, you’ll have three days to confirm your attendance.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
How much does it cost?
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
Admission to UtkalHacks is completely free, thanks to our sponsors! We'll provide you with schwag, meals, drinks, snacks and a place to rest when you need a break from coding.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading5">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapse5" aria-expanded="false" aria-controls="collapse5">
How big can a team be?
</button>
</h5>
</div>
<div id="collapse5" class="collapse" aria-labelledby="heading5" data-parent="#accordion">
<div class="card-body">
You can form teams of up to 4 people. Most teams aim to have a mix of people with both design and developer skills.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading6">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapse6" aria-expanded="false" aria-controls="collapse6">
Once I am accepted, what do I need to bring?
</button>
</h5>
</div>
<div id="collapse6" class="collapse" aria-labelledby="heading6" data-parent="#accordion">
<div class="card-body">
A valid government issued photo ID, laptop, phone, chargers, any sleeping equipment you might want (we'll be providing mattresses) and a geeky t-shirt!
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading7">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapse7" aria-expanded="false" aria-controls="collapse7">
What if I don’t have a team or an idea?
</button>
</h5>
</div>
<div id="collapse7" class="collapse" aria-labelledby="heading7" data-parent="#accordion">
<div class="card-body">
Not to worry, most people don’t! We’ll have team formation and ideation events geared towards helping you find people to work with.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading8">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapse8" aria-expanded="false" aria-controls="collapse8">
What if I've never been to a Hackathon before?
</button>
</h5>
</div>
<div id="collapse8" class="collapse" aria-labelledby="heading8" data-parent="#accordion">
<div class="card-body">
Then we're so glad UtkalHacks will be your first ever! It’s helpful to have some programming or technical experience, but it’s not a requirement. We’ll have talks, mentors and workshops to help you with your project.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading9">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapse9" aria-expanded="false" aria-controls="collapse9">
What if I've never been to a Hackathon before?
</button>
</h5>
</div>
<div id="collapse9" class="collapse" aria-labelledby="heading9" data-parent="#accordion">
<div class="card-body">
No. In the interest of fairness, students should not be working on their projects before UtkalHacks begins and we do not allow participants to work on pre-existing projects. However, you can familiarize yourself with all the tools and technologies you intend to use beforehand!
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading10">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapse10" aria-expanded="false" aria-controls="collapse10">
How does Judging work?
</button>
</h5>
</div>
<div id="collapse10" class="collapse" aria-labelledby="heading10" data-parent="#accordion">
<div class="card-body">
A panel of some of the professional names in tech will evaluate hacks based on creativity, technical difficulty, design, and usefulness. The top 3 overall projects will demo what they have built in front of all of UtkalHacks during our closing ceremonies. New judges will be announced on a rolling basis on Twitter and Facebook, so make sure to follow us!
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ end-->
<!-- map -->
<br>
<div class="container">
<div class="text-white">
<h1>Venue</h1>
<div class="text">
<p>Ravenshaw Convention Centre (Seven Pillars of Wisdom)</p>
<p>Ravenshaw University, Cuttack, Odisha</p>
<p>India, 753003</p>
</div>
</div>
<div class="iframe-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3738.0427640107864!2d85.89383071475325!3d20.463436686307276!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a190d7a181999fd%3A0xe48e3475c7591d81!2z4Kyw4K2H4Kyt4K2H4Kyo4K2N4Ky44Ky-IOCsrOCsv-CstuCtjeCtseCsrOCsv-CspuCtjeCtn-CsvuCss-CtnyBSYXZlbnNoYXcgVW5pdmVyc2l0eQ!5e0!3m2!1sen!2sin!4v1550838805204" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
<!-- Footer -->
<br>
<section id="footer">
<div class="container">
<div class="text-black">
<h1>Contact Us</h1>
</div>
<div class="row">
</div>
<div class="col-xs-12 col-sm-12 col-md-12 mt-2 mt-sm-5">
<ul class="list-unstyled list-inline social text-center">
<li class="list-inline-item"><a href="https://www.facebook.com/getemisha/"><i class="fa fa-facebook"></i></a></li>
<li class="list-inline-item"><a href="https://twitter.com/emisha_gita"><i class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="https://www.instagram.com/getemisha/"><i class="fa fa-instagram"></i></a></li>
<li class="list-inline-item"><a href="mailto:[email protected]" target="_blank"><i class="fa fa-envelope"></i></a></li>
</ul>
</div>
</hr>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 mt-2 mt-sm-2 text-center text-white">
<p class="h6">© All right Reserved.<a class="text-green ml-2" href="https://getemisha.tech" target="_blank">Emisha</a></p>
</div>
</div>
</section>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
let devfolioOptions = {
buttonSelector: '#devfolio-apply-now',
key: 'utkalhacks2019',
}
let script = document.createElement('script');
script.src = "https://apply.devfolio.co";
document.head.append(script);
script.onload = function () {
new Devfolio(devfolioOptions);
}
script.onerror = function () {
document.querySelector(devfolioOptions.buttonSelector).addEventListener('click', function () {
window.location.href = 'https://devfolio.co/external-apply/' + devfolioOptions.key;
});