-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2506 lines (2232 loc) · 110 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>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-KJ7BBZ5');
</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>UtkalHacks 2.0| 31st January - 2nd February, 2020</title>
<meta property="fb:app_id" content="361151391074555" />
<meta property="og:title" content="UtkalHacks | 31st Jan - 2nd Feb, 2020 at Ravenshaw Convention Centre">
<meta property="og:type" content="website">
<meta property="og:url" content="index.html">
<meta property="og:image" content="img/fb-og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:description" content="UtkalHacks is Odisha's biggest hackathon being organised by Emisha community. UtkalHacks is a community initiative
to bring developers and designers to work together with their ideas. ">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@emishacommunity">
<meta name="twitter:site" content="@emishacommunity">
<meta name="twitter:title" content="Emisha">
<meta name="twitter:description" content="UtkalHacks is Odisha's biggest hackathon being organised by Emisha community. UtkalHacks is a community initiative
to bring developers and designers to work together with a problem statements.">
<meta name="twitter:domain" content="index.html">
<meta name="twitter:image:src" content="img/twitter-og.png">
<meta name="description" content="UtkalHacks is Odisha's biggest hackathon being organised by Emisha community.">
<meta name="keywords"
content="utkalhacks, emisha, emisha community, hackathon bhubaneswar, hackathon india, cuttack, india, community, hackathon community, developer community, developer relations, api, sdk, technology, startups, innovation, hacks" />
<meta name="author" content="UtkalHacks Team" />
<meta http-equiv="cache-control" content="public" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="favicons/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="favicons/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="favicons/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="favicons/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="favicons/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="favicons/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="favicons/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="favicons/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="favicons/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="favicons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="favicons/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicons/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="favicons/favicon-128.png" sizes="128x128" />
<meta name="application-name" content="UtkalHacks: Odisha's biggest hackathon." />
<meta name="theme-color" content="#111c33">
<meta name="msapplication-TileColor" content="#111c33" />
<meta name="msapplication-TileImage" content="favicons/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="favicons/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="favicons/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="favicons/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="favicons/mstile-310x310.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"
integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.min.css" rel="stylesheet">
<link
rel="stylesheet"
href="https://www.jacklmoore.com/colorbox/example1/colorbox.css"
/>
<link rel="stylesheet" href="css/glider.min.css">
</head>
<body id="page-top">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KJ7BBZ5" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Beta Badge -->
<div class="badge">Beta</div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-eth js-scroll-trigger" href="#page-top">
<img src="img/assests/text-logo.png" style="width: 250px; height: 45px" alt="UtkalHacks logo" />
</a>
<div class="badge">Beta</div>
<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" title="About" href="#about">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" title="Schedule" href="#schedule">SCHEDULE</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" title="Events" href="#events">EVENTS</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" title="Speakers" href="#speakers">SPEAKER</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" title="faq" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" title="venue" href="#venue">VENUE</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link " target="_blank" title="venue" href="https://wiki.utkalhacks.tech/">WIKI</a>
</li> -->
</ul>
</div>
</div>
</nav>
<header class="masthead text-white d-flex">
<div class="container my-auto home-container">
<div class="row">
<div id="bg">
<img src="img\assests\Earth.&Stars.jpg" alt="UtkalHacks Background" class="img-fluid bg">
<div class="rocketdiv parallax" data-parallax-ratio="6">
<img src="img\assests\Chandrayaan2.png" alt="chandrayaan image">
</div>
</div>
<div class="col-lg-12">
<h1>
<strong>Odisha's Biggest </h1> </strong>
<div >
<!-- /*class="typewriter"*/ -->
<strong>
<h1>Hackathon </h1>
</strong>
</div>
</div>
<div class="col-lg-12 mt-3">
<p class="text-faded" style="line-height: 1.8;">
<h5>It's not Just a Hackathon
<br><h9 class="date-location-text"><i class="fas fa-map-marker-alt" style="padding: 2px;"></i> Ravenshaw University |<i class="fas fa-calendar-alt" style="padding: 10px;"></i>31st January - 2nd February, 2020 </h9>
</h5>
</div>
<div class="col-lg-12" style="margin-top: 2.5rem !important">
<p class="text-faded"></p>
<button id="devfolio-apply-now"><svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#fff"
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>
<a href="./prizes.html">
<button id="prizes-button"><i class="fa fa-trophy prize-logo "></i>
View Prizes
</button>
</a>
</div>
</div>
</div>
</header>
<section id="about" class="bg-dark grd-1">
<div class="container">
<div class="row">
<div class="philo">
<img class="img-fluid td-hk-broken-img " src="./img/texts/Hackathon System is Broken.png">
<p>Hackathons nowadays are just being bloated with vaporware due to the lack of time to work on the
problem statements, the lack of direction and objective.
Participants tend to focus on the shiny thing, but they don’t necessarily follow that up with a
delivery model that will truly transform their initiative.
The problem is that the <b>organizers</b> running hackathons haven’t changed what is behind the
curtain in the way of resources, methods, processes and tooling. Which is why half the time
ideas fall off the side of the desk after an event.</p>
</div>
<div class="col-lg-12 text-center">
<a href="https://wiki.utkalhacks.tech/introduction/philosophy" target="blank"
style="color: aliceblue;text-decoration: underline;font-weight: bold; font-size: 22px;">Read
More</a>
</div>
</div>
</div>
<div class="framework">
<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>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
</ol>
<div class="container">
<div class="frameworkcontainer">
<img class="img-fluid" src="./img/texts/new framewok for hackathon.png">
<!--<h2 class="section-heading text-white text-center">A New Framework for Hackathon!</h2>-->
<div class="carousel-inner">
<div class="carousel-item active">
<div class="frameworksection d-block w-100">
<img class="frameworksectionimg d-block w-100" src="./img/assests/hack week-01.png"
alt="">
<div class="frameworksectiontext">
<a href="https://wiki.utkalhacks.tech/introduction/framework/hackweeks"
target="blank">
<h5> Escaping Gravity - Hackweek</h5>
<p>A month-long season of workshops on topics ranging from UI/UX, Front-End
& Back-End Development to DevOps basics and much more, revolving around
different colleges in Bhubaneswar to propel the reach of the aspiring
minds and our sponsors to launch themselves into a space of diverse
exploration!</p>
</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="frameworksection d-block w-100">
<img class="frameworksectionimg d-block w-100" src="./img/assests/Sprint-day.png"
alt="">
<div class="frameworksectiontext d-block w-100">
<a href="https://wiki.utkalhacks.tech/introduction/framework/sprintday"
target="blank">
<h5>Tracing the Trajectory - SprintDay</h5>
<p>Time to drift towards the moon! But, before you set sail, gather your
ideas, brainstorm on them, create the prototype, let no crap pass,
because just like the trajectory of a spacecraft, your project needs to
be well-focused and legitimate. In doing so, you even get to collaborate
with UI/UX designers to shape your path with finesse!</p>
</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="frameworksection d-block w-100">
<img class="frameworksectionimg d-block w-100" src="./img/assests/Hack Day-01.png"
alt="">
<div class="frameworksectiontext d-block w-100">
<a href="https://wiki.utkalhacks.tech/introduction/framework/hackday"
target="blank">
<h5>Entering the Orbit - HackDay</h5>
<p>The second and third day will see the participants work on the
development of their projects to give it its final shape. So get ready
to fire your retro thrusters and enter the orbit of full-on innovation
as you go through the HackDay, hustling to fix the pieces into the
puzzle! At the end, a practice pitch will be presented to a panel of
judges.</p>
</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="frameworksection d-block w-100">
<img class="frameworksectionimg d-block w-100" src="./img/assests/pitch day-01.png"
alt="">
<div class="frameworksectiontext d-block w-100">
<a href="https://wiki.utkalhacks.tech/introduction/framework/pitchday"
target="blank">
<h5>The Touchdown - PitchDay</h5>
<p>Slow down turbo! The last day will see the shortlisted teams deliver the
final pitch of their projects to the judges. Make sure the landing is
soft and smooth, hard and improper landings can cause failure, be it a
spacecraft or your presentation. Rewards are synonymous to success, that
means you get to win cash prizes and pilot opportunities with VC
partners.</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--How it works-->
<section id="howitworks" class="grd-2">
<img class="bg-01" src="./img/assests/ch-round the earth-01.svg">
<div class="container">
<div class="row">
<div class="howitworks-title col-lg-12 text-center">
<img class="img-fluid" src="./img/texts/registration-process.png">
<!--<h2>Registration Process!</h2>-->
</div>
</div>
<br>
<p>
To begin with, participants will have to make a quick submission of some of the onboarding
questionnaires on the Devfolio platform. See the questionnaires <a
href="https://wiki.utkalhacks.tech/how-it-works/registration-process" target="blank">here. </a>
Once you are done with the onboarding questionnaires, you will have to update your Devfolio profile if
needed.
After the final submission, your Devfolio profile along with the answers of the questionnaires will be
evaluated and the top 30 teams will be shortlisted to attend the<a
href="https://wiki.utkalhacks.tech/introduction/framework/sprintday" target="blank"> SprintDay</a>
and <a href="https://wiki.utkalhacks.tech/introduction/framework/hackday" target="blank">HackDay. </a>
</p>
<div class="col-lg-12 text-center">
<a href="https://wiki.utkalhacks.tech/how-it-works" target="blank"
style="color: aliceblue;text-decoration: underline;font-weight: bold; font-size: 22px;">Read
More</a>
</div>
</div>
</section>
<!--SCHEDULE-->
<section id="schedule" class="schedule-box grd-3">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center mb-3">
<img class="img-fluid" src="./img/texts/schedule.png">
<!--<h2>Schedule</h2>-->
<ul class="nav nav-pills text-center mt-5" role="tablist" data-tabs="tabs">
<li class="nav-item">
<a href="#workshop" class="nav-link " data-toggle="tab" role="tab"> JANUARY 31 , 2020</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#hackday1" role="tab">FEBRUARY 1 , 2020</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#hackday2" role="tab">FEBRUARY 2 , 2020</a>
</li>
</ul>
</div>
<div class="tab-content text-center schedule-details">
<div role="tabpanel" class="tab-pane active show" id="workshop">
<div class="col-lg-12">
<!-- DAY 1 -->
<div id="day-1" class="schedule-day">
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>8:30 AM</strong>
</td>
<td>
Check-In
</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>9:00 AM</strong>
</td>
<td>
Inauguration
<!--<div class="subtitle">ETHGlobal & ETHIndia Team + Our Sponsors</div>
<p style="font-size: 0.9rem;margin:0;line-height: 24px;color:inherit">NuCypher, Maker, Status, Dharma, Lendroid, ECF, ConsenSys, Gitcoin, Matic, Quantstamp, Web3 & Bounties
Network </p>-->
</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>9:30 AM</strong>
</td>
<td>
<div class="tag">Talk</div>
<br>The power of Hackathons and how it matters?
<div class="subtitle">- by TBD</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>10:00 AM</strong>
</td>
<td>
<div class="tag">talk</div>
<br> What's MVP and how to quickly build it?
<div class="subtitle">- by Anurag kyal</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>10:45 AM</strong>
</td>
<td>
<div class="tag">Talk</div>
<br> Talk session
<div class="subtitle">- by Pratilipi Team</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>11:30 AM</strong>
</td>
<td>
<div class="tag">workshop</div>
<br> Unity Workshop & Talk session
<div class="subtitle">- by Khagendra Kumar</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>12:30 PM</strong>
</td>
<td>
<!-- <div class="tag">workshop</div> -->
Yet To be Revealed
<!--<div class="subtitle">by Andy Tudhope</div>-->
</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>1:15 PM</strong>
</td>
<td>
Lunch
</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>2:15 PM</strong>
</td>
<td>
<div class="tag">Talk</div>
<br> Building high performance web apps in Gatsby.js
<div class="subtitle">- by Harshil Agrawal</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>3:00 PM</strong>
</td>
<td>
<div class="tag">Workshop</div>
<br> How to build a search engine in Elastic search
<div class="subtitle">- by Aravind Putrevu</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>4:00 PM</strong>
</td>
<td>
<div class="tag">Workshop</div>
<br> Design Sprint Bootcamp
<div class="subtitle">- by Vikram Kaushik</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>5:30 PM</strong>
</td>
<td>
<!--<div class="tag">talk</div>-->
Tea Break
<!--<div class="subtitle">by Jack Platts</div>-->
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>6:00 PM</strong>
</td>
<td>
<!-- <div class="tag">workshop</div> -->
SprintDay Starts
<!--<div class="subtitle">by Sean Brennan</div>-->
</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>9:00 PM</strong>
</td>
<td>
<!-- <div class="tag">workshop</div> -->
Dinner
<!--<div class="subtitle">by Sean Brennan</div>-->
</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>9:30 PM</strong>
</td>
<td>
<!-- <div class="tag">workshop</div> -->
SprintDay Continues
<!--<div class="subtitle">by Sean Brennan</div>-->
</td>
</tr>
<!--<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>3:15 PM</strong>
</td>
<td>
<div class="tag">talk</div>
<br> Virtual State Channels
<div class="subtitle">by Arjun Bhuptani</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>3:45 PM</strong>
</td>
<td>
<div class="tag">workshop</div>
<br> Building end-to-end encrypted decentralized applications using NuCypher network
<div class="subtitle">by Dr. Michael Egorov</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>4:30 PM</strong>
</td>
<td>
<div class="tag">talk</div>
<br> Collaboration and Collective Knowledge
<div class="subtitle">by Andy Tudhope</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>5:00 PM</strong>
</td>
<td>
<div class="tag">talk</div>
<br> Meta Analysis of Consensus Protocols
<div class="subtitle">by Aparna Krishnan</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>5:30 PM</strong>
</td>
<td>
Tea Break
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>6:00 PM</strong>
</td>
<td>
<div class="tag">talk</div>
<br> Revolutionising Lending on the Blockchain
<div class="subtitle">by Vii Sundaram</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>6:30 PM</strong>
</td>
<td>
<div class="tag">talk</div>
<br> DFINITY & The Road to Randomness
<div class="subtitle">by Arthur Falls</div>
</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>7:00 PM</strong>
</td>
<td>Closing & High-Tea</td>
</tr>-->
</tbody>
</table>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="hackday1">
<div class="col-lg-12 schedule-row">
<!-- DAY 2 -->
<div class="schedule-day">
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>2:00 AM</strong>
</td>
<td>Midnight Snacks & Break </td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>8:00 AM</strong>
</td>
<td>Breakfast</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>8:30 AM</strong>
</td>
<td>
<!-- <div class="tag">Workshops</div> -->
Sprintday Continues </td>
</tr>
<!-- <tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
</td>
<td>Hacking Continues</td>
</tr> -->
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>
12:00 PM
</strong>
</td>
<td>Hackathon Begins</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>1:00 PM</strong>
</td>
<td>
<!--<div class="tag">talk</div>-->
Lunch
<!--<div class="subtitle">by Augusto Lemble</div>-->
</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>
2:30 PM
</strong>
</td>
<td> Hackathon Continues</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>
5:30 PM
</strong>
</td>
<td>Coffee & Snacks</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>
6:00 PM
</strong>
</td>
<td>Hackathon Continues..</td>
</tr>
<!-- <tr>
<td>
<p class="schedule-time night"></p>
</td>
<td></td>
<td>Hacking Continues</td>
</tr> -->
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>
9:00 PM
</strong>
</td>
<td>Dinner</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>
10:00 PM
</strong>
</td>
<td>Hackathon Continues..</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="hackday2">
<div class="col-lg-12 schedule-row">
<!-- DAY 3 -->
<div class="schedule-day">
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>
2:00 AM
</strong>
</td>
<td>Midnight Snacks & Coffee</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>
8:00 AM
</strong>
</td>
<td>Breakfast</td>
</tr>
<!-- <tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td></td>
<td>Hacking Continues</td>
</tr> -->
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>
8:30 AM
</strong>
</td>
<td>Hackathon Continues..</td>
</tr>
<!-- <tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td></td>
<td>Hacking Continues</td>
</tr> -->
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>1:30 PM</strong>
</td>
<td>Lunch</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>
4:00 PM
</strong>
</td>
<td>Evaluation starts</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>
6:30 PM
</strong>
</td>
<td>Result Declaration</td>
</tr>
<!--- <tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>
10:00 PM
</strong>
</td>
<td>Goodbye!</td>
</tr>-->
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="grd-12" id="events">
<div class="container ">
<img class="img-fluid event-heading-text" src="./img/texts/events.png">
<!--<h1 style="text-align: center;" class="event-heading">Events</h1>-->
<div class="glider-contain multiple">
<button class="glider-prev">
<i class="fas fa-arrow-circle-left" ></i>
</button>
<div class="glider">
<div class="event-card">
<img src="img/assests/blockchain 101.jpg" alt="" class="blockchain 101" style="width: 100%; ">
<div class="event-container">
<h4 style="color:black;"><strong>BlockChain 101</strong> </h4>
<!-- <a href="https://forms.gle/r5uR5JJchWaoaNmT7" target="_blank" style="color: #fff; " ><button class="event-apply-btn">Register Here</button></a>-->
</div>
</div>
<div class="event-card">
<img src="img/assests/backend_day.jpeg" alt="Backenc day" style="width: 100%;">
<div class="event-container">
<h4><strong>Backend Day</strong> </h4>
<!--<a href="http://resources.emsiha.community" target="_blank" > <button class="event-apply-btn">Get Resources</button></a> -->
</div>
</div>
<div class="event-card">
<img src="img/assests/think design print poster.jpg" alt="" style="width: 100%;">
<div class="event-container">
<h4><strong>Think Design</strong> </h4>
<!-- <button class="event-apply-btn"><a href="http://bit.ly/thinkdesign2" target="_blank" style="color: #fff;">apply now</a></button> -->
<a href="http://resources.emsiha.community" target="_blank" style="color: #fff;" ><button class="event-apply-btn">Get Resources</button></a>
</div>
</div>
<div class="event-card">
<img src="img/assests/HackWeeks2 poster.jpg" alt="" class="" style="width: 100%;">
<div class="event-container">
<h4><strong>Frontend Day</strong> </h4>
<a href="http://resources.emsiha.community" target="_blank" style="color: #fff;" ><button class="event-apply-btn">Get Resources</button></a>
</div>