-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
1435 lines (1319 loc) · 106 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">
<!-- OFFLINE EDITION -->
<!--
,----..
/ / \ .--.--. ,---, ,----..
/ . : / / '. .' .' `\ / / \
. / ;. \ : /`. / ,---.' \ | : :
. ; / ` ; | |--` | | .`\ |. | ;. /
; | ; \ ; | : ;_ : : | ' |. ; /--`
| : | ; | '\ \ `. | ' ' ; :; | ;
. | ' ' ' : `----. \' | ; . || : |
' ; \; / | __ \ \ || | : | '. | '___
\ \ ', / / /`--' /' : | / ; ' ; : .'|
; : / '--'. / | | '` ,/ ' | '/ :
\ \ .' `--'---' ; : .' | : /
`---` | ,.' \ \ .'
'---' `---`
-->
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<!-- Link to local files -->
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.min.css">
<link rel="icon" href="assets/img/osdhack.png" type="image/png">
<title>OSDHACK'23 - JIIT EDITION</title>
<meta name="description" content="OSDHACK 2023: BACK TO THE FUTURE!" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="apple-touch-icon" href="assets/favicons/apple-touch-icon.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
<meta name="theme-color" content="#1b4481">
<!-- Facebook Code -->
<meta property="og:title" content="OSDHACK 2023" />
<meta property="og:url" content="https://OSDHACK.org" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Join us at JIIT's largest hackathon. April 21-24!" />
<meta property="og:type" content="website" />
<meta property="og:image" content="./assets/favicons/train_cover.png" />
<!-- Twitter Code -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="@OSDHACK" />
<meta property="twitter:creator" content="@OSDHACK" />
<meta property="twitter:title" content="OSDHACK 2023" />
<meta property="twitter:description" content="Join us at JIIT's largest hackathon. April 21-24!" />
<meta property="twitter:image" content="./assets/favicons/train_cover.png" />
<meta property="twitter:image:alt" content="OSDHACK 2023, April ." />
<style>
#discord:hover {
background-color: transparent;
border: 1px solid #1b4481;
}
</style>
<style>
.button {
background-color: #1c87c9;
-webkit-border-radius: 60px;
border-radius: 60px;
border: none;
color: #eeeeee;
cursor: pointer;
display: inline-block;
font-family: LemonMilkMedium;
font-size: 14px;
padding: 5px 15px;
text-align: center;
text-decoration: none;
}
@keyframes glowing {
0% {
background-color: #1b4481;
box-shadow: 0 0 5px #2023ce;
}
50% {
background-color: #1b4481;
box-shadow: 0 0 20px #1b4481;
}
100% {
background-color: #1b4481;
box-shadow: 0 0 5px #2023ce;
}
}
.button {
animation: glowing 1300ms infinite;
}
</style>
</head>
<body>
<div id="body-container" style="overflow-x: hidden; overflow-y: hidden; position:relative">
<div id="cover" class="section">
<div class="content">
<div id="cover-desktop">
<div class="navbar-wrap">
<div class="navbar">
<a href="index.html" class="navbar-btn hidden-mobile">
<h4 class="navbar-txt">Home</h4>
</a>
<a href="#about" class="navbar-btn">
<h4 class="navbar-txt">About</h4>
</a>
<a href="#prizes" class="navbar-btn">
<h4 class="navbar-txt">Prizes</h4>
</a>
<!-- <a href="#faq" class="navbar-btn">
<h4 class="navbar-txt">Faq</h4>
</a> -->
<!-- <a href="#sponsors" class="navbar-btn">
<h4 class="navbar-txt">Sponsors</h4>
</a> -->
<a href="rules.html" class="navbar-btn apply hidden-mobile">
<h4 class="navbar-txt no-underline">Rules & FAQ</h4>
</a>
</div>
</div>
<img src="assets/img/JIIT_LogoWhite.png" class="logo" style="left: 120px; width: 70px">
<img src="assets/img/osdhack.png" class="logo" />
<img src="assets/img/centerOfExcellenceLogo.png" class="logo" style="left: 205px; width: 100px; height: 100px; top: 4px;">
<div id="page-title">
<!-- <h1 id="title-header">OSDHACK 2023</h1> -->
<h2 id="title-sub1" style="margin-top: 0;padding-top: 0 ;font-size: 18px;padding-bottom: 0;">
OPEN SOURCE DEVELOPERS COMMUNITY</h2>
<h4 style="padding-top: 0;font-size: 14px;">Jaypee Institute Of Information Technology</h4>
<h4 style="padding-top: 10;font-size: 14px;padding-bottom: 25px;padding-top: 15px;">presents
</h4>
<img id="title-header" src="assets/img/osdhack-title.png" />
<!-- <img id="title-header-outline" src="./assets/img/Outline_Text.svg" /> -->
<h4 id="title-sub" style="font-size: 25px;margin-top: 0;padding-top: 0;margin-bottom: 5px;">
JIIT EDITION</h4>
<h4 id="title-sub"> BACK TO THE FUTURE</h4>
<h4 id="title-date" style="margin-top: 0;">April 21-24, 2023</h4>
<a href="https://discord.gg/kAH6WdNchQ" target="_blank">
<button id="discord"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;background-color: #1b4481;color: white;">
Discord Invite
</button>
</a>
<a href="https://forms.gle/WTHkNQYuQSZiqvHj6" target="_blank">
<button id="discord " class="button"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;">
Registration
</button>
</a>
</div>
</div>
<div id="cover-mobile">
<div class="menu">
<button id="menu-btn" style="border: none;background-color: transparent;"
class="hamburger hamburger--collapse" type="button">
<!-- <span class="hamburger-box">
<span class="hamburger-inner"></span>
</span> -->
<div class="container" onclick="myFunction(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</button>
<div id="menu-items" class="navbar">
<div class="menu-row">
<a href="index.html" class="navbar-btn">
<h4 class="navbar-txt">Home</h4>
</a>
<a href="#about" class="navbar-btn">
<h4 class="navbar-txt">About</h4>
</a>
</div>
<div class="menu-row">
<a href="#prizes" class="navbar-btn">
<h4 class="navbar-txt">Prizes</h4>
</a>
<!-- <a href="#sponsors" class="navbar-btn">
<h4 class="navbar-txt">Sponsors</h4>
</a> -->
<!-- <a href="rules.html" class="navbar-btn">
<h4 class="navbar-txt no-underline">Rules & FAQ</h4>
</a> -->
</div>
</div>
</div>
<img src="assets/img/osdhack.png" class="logo" />
<!-- <h1 id="title-header">OSDHACK 2023</h1> -->
<img id="title-header" src="" />
<h2>Open Source Developer's COMMUNITY</h2>
<h2 style="padding-top: 0;font-size: 14px;">Jaypee Institute Of Information Technology</h3>
<h5 id="presents"
style="margin-bottom: 0;font-weight: 100;margin-top: 0;font-family: LemonMilkMedium;">
PRESENTS</h5>
<h4 id="title-sub" style="padding-bottom: 0;font-size: 30px;font-weight: 500">OSDHACK'23</h4>
<h4 id="title-sub" style="padding-bottom: 20px;"> JIIT EDITION</h4>
<h4 id="title-sub"> <b>BACK TO THE FUTURE</b></h4>
<h4 id="title-date">April 21-24, 2023</h4>
<div class="more-footer" style="display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
flex-direction: column;">
<div class="icon-group">
<a target="_blank" href="https://www.instagram.com/osdcjiit/"> <img width="48px"
class="social-icon" src="assets/socials/instagram.svg" /> </a>
<a target="_blank" href="mailto:[email protected]"><img width="48px"
class="social-icon" src="assets/socials/mail.svg" /></a>
<!-- <a target="_blank" href="https://code.OSDHACK.org/"> <img class="social-icon" src="assets/socials/code.svg"/></a> -->
<!-- <a target="_blank" href="https://medium.com/OSDHACK-stories"> <img class="social-icon" src="assets/socials/medium.svg"/></i> </a> -->
<a target="_blank" href="https://twitter.com/osdcjiit"> <img width="48px"
class="social-icon" src="assets/socials/twitter.svg" /></a>
<a target="_blank" href="relativehttps://www.linkedin.com/company/osdcjiit/">
<svg xmlns="http://www.w3.org/2000/svg" width="44" height="44"
style="position: relative; top: -2px; border-radius: 15%;" fill="#001d55"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
<br>
<a href="https://discord.gg/kAH6WdNchQ" target="_blank">
<button id="discord" class="discord_but"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;background-color: #1b4481;color: white;">
Discord Invite
</button>
</a>
</div>
<div>
<a href="rules.html" target="_blank">
<button id="discord"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;background-color: #1b4481;color: white;">
Rules & FAQ
</button>
</a>
<a href="https://forms.gle/WTHkNQYuQSZiqvHj6" target="_blank">
<button id="discord" class="button"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;background-color: #1b4481;color: white;">
Registration
</button>
</a>
</div>
</div>
</div>
<div>
<img src="assets/img/Buildings.svg" class="building medium1" />
<img src="assets/img/Prudential.svg" class="building small1" />
</div>
</div>
</div>
<!-- <a href="https://www.google.com" class="navbar-btn apply-mobile">
<h4 class="navbar-txt no-underline">Apply</h4>
</a> -->
<!-- <div id="station" class="section">
</div> -->
<img id="train" class="reset" src="assets/img/Train.svg" />
<div id="tracks" class="section">
<!-- <div class="cloud-section" id="cloud-section1">
<img id="cloud-layer-a" class="cloud-layer" src="assets/img/Cloud_Layer_top.svg" />
<img id="cloud-layer-b" class="cloud-layer" src="assets/img/Cloud_Layer_top.svg" />
<img id="cloud-layer-c" class="cloud-layer" src="assets/img/Cloud_Layer_top.svg" />
</div> -->
<!-- <div class="content">
<h1 class="header">Tracks</h1>
<div id="Ambulance-box" class="track-box">
<img id="health-label" class="track-text" src="assets/img/health.svg">
<svg id="Ambulance-bb" class="building-bb" viewBox="0 0 341.75 422.85">
<polygon
points="0.77 148.41 0 359.07 88.27 422.85 341.75 275.96 341.17 48.98 254.66 0 0.77 148.41" />
</svg>
<img id="Ambulance" class="vehicle" src="assets/img/Ambulance.svg">
<div id="health-overlay" class="overlay">
<div class="overlay-box">
<img class="popup-road" src="assets/img/tracks_pop_up_road.svg" />
<img class="close-button" src="assets/img/x_tracks.svg">
<img id="Ambulance-popup" class="vehicle-popup" src="assets/img/Ambulance.svg">
<h1 class="popup-title"> Health Tech </h1>
<div class="overlay-text">
<h3 class="popup-sub-title"> Description </h3>
<p style = "text-indent : 1em;"> The Health Tech track aims to <b>improve the quality of life for individuals through health and assistance.</b> This includes a wide range of projects, such as tracking sleep for better sleep schedule maintenance, using machine learning on medical imaging to diagnose illnesses more accurately, utilizing speech-to-text to make resources more accessible to deaf patients, and much more. </p>
<h3 class="popup-sub-title"> Guiding Questions </h3>
<ul>
<li>How can we make health services more accessible and more affordable? </li>
<li>How can we encourage people to maintain healthy sleeping, activity, eating, etc habits?</li>
<li>How can we stay aware of the ongoing health situation in our local communities and states?</li>
<li>How can we make diagnosing illnesses more accurate and easier?</li>
</ul>
<h3 class="popup-sub-title"> Potential Topics </h3>
<ul>
<li> <b>Assistive Tech: </b>Although technology has greatly improved to aid individuals with disabilities, the world is still inaccessible to them. How can we engineer various solutions to make the world more disability accessible? </li>
<li><b>Addictions: </b>How can we help individuals recovering from addictions stay clean at home and without breaking the bank?</li>
<li> <b>Mental Health: </b>Is there a way we can spread more mental health awareness as well as information, treatments, and solutions?</li>
<li><b>Remote Healthcare: </b>How do we make obtaining subscriptions and receiving non-surgical care easier for individuals in the face of a pandemic?</li>
<li><b>Staying Fit with Social Distancing: </b>How can we stay fit and be motivated to stay fit during situations like COVID-19? How can we workout with friends while practicing social distancing?</li>
<li><b>Patient Tracking: </b>Hospitals have a hard time keeping tracks of patients’ records outside of their walls. How can we implement a way to track patients and reduce this problem?</li>
</ul>
<h3 class="popup-sub-title"> Past OSDHACK Projects </h3>
<ul>
<li><a href="http://leanonmeapp.com/" target="_blank" class="track-link">LeanOnMe: </a> An app to support people with cognitive differences</li>
<li><a href="https://devpost.com/software/detection-of-breast-cancer-based-on-image-analysis" target="_blank" class="track-link">Breast Cancer Detection: </a> Use of machine learning to break down images of breast cancer cells to aid in breast cancer diagnosis</li>
<li><a href="https://devpost.com/software/core-fh4pvs" target="_blank" class="track-link">Core: </a> An app connecting individuals looking to overcome drug addictions to a strong support network of volunteer mentors</li>
<li><a href="https://devpost.com/software/dispenser" target="_blank" class="track-link">DispenseRX: </a> An end-to-end prescription pipeline in the form of an app</li>
<li><a href="https://devpost.com/software/pilot-81xkaf" target="_blank" class="track-link">Pilot: </a> A motivational AI mood tracker that encourages users to break patterns of negative thinking by introducing new cultures and places</li>
<li><a href="https://devpost.com/software/verifast" target="_blank" class="track-link">Verifast: </a> Fast, secure log-in for healthcare professionals</li>
</ul>
<h3 class="popup-sub-title"> Resources </h3>
<ul>
<li><a href="https://console.cloud.google.com/marketplace/details/bigquery-public-datasets/covid19-public-data-program?_ga=2.61852266.-790027792.1588625217&pli=1" target="_blank" class="track-link">Google Cloud: </a> Access to COVID-19 Public Datasets</li>
<li><a href="http://api.citybik.es/v2/?ref=public-apis" target="_blank" class="track-link"> City Bikes API: </a> Bike sharing data</li>
<li><a href="https://wonder.cdc.gov/Welcome.html" target="_blank" class="track-link">CDC WONDER: </a> Wide-ranging Online Data for Epidemiological Research</li>
<li><a href="https://apps.who.int/gho/data/node.resources" target="_blank" class="track-link">World Health Organization (WHO): </a>Health-related datasets on member countries</li>
<li><a href="https://healthcare.ai/software/" target="_blank" class="track-link">Healthcare.ai: </a> Machine learning in healthcare data</li>
<li><a href="https://hcup-us.ahrq.gov/databases.jsp" target="_blank" class="track-link">HCUP: </a> Datasets from US hospitals</li>
<li><a href="https://dev.fitbit.com/build/" target="_blank" class="track-link">FitBit: </a> APIs and details on how to develop an app to pair with FitBit devices</li>
<li><a href="https://openneuro.org/" target="_blank" class="track-link">OpenNEURO: </a> Open platform for medical imaging data</li>
<li><a href="https://healthdata.gov/" target="_blank" class="track-link">HealthData.gov: </a> Public health data in the United States</li>
<li><a href="https://seer.cancer.gov/data-software/" target="_blank" class="track-link">SEER: </a> National Cancer Institute Surveillance, Epidemiology, and End Results</li>
<li><a href="https://www.re3data.org/" target="_blank" class="track-link">R3 Data: </a> Registry of Research Data Repositories </li>
</ul>
</div>
<div class="bottom-clouds">
<img class="popup-clouds" src="assets/img/track_popup_clouds_back.svg" />
<img id="above-clouds" class="popup-clouds"
src="assets/img/track_popup_clouds_front.svg" />
<img id="popup-building-a" class="building" src="assets/img/building_a.svg" />
<img id="popup-building-b" class="building" src="assets/img/building_b.svg" />
</div>
</div>
</div>
</div>
<div id="Bus-box" class="track-box">
<img id="education-label" class="track-text" src="assets/img/education.svg">
<svg id="Bus-bb" class="building-bb" viewBox="0 0 493.93 407.14">
<polygon
points="1.39 263.07 250.93 407.13 493.43 270.48 493.93 155.53 229.81 0 0 130.9 1.39 263.07" />
</svg>
<img id="Bus" class="vehicle" src="assets/img/Bus.svg">
<div id="education-overlay" class="overlay">
<div class="overlay-box">
<img class="popup-road" src="assets/img/tracks_pop_up_road.svg" />
<img class="close-button" src="assets/img/x_tracks.svg">
<img id="Bus-popup" class="vehicle-popup" src="assets/img/Bus.svg">
<h1 class="popup-title"> Education </h1>
<div class="overlay-text">
<h3 class="popup-sub-title"> Description </h3>
<p style = "text-indent : 1em;"> Education technology, or EdTech, is designed to <b> empower students of all ages and encourage lifelong learning.</b> These projects include any sort of technology that augments and enhances the learning experiences of students, whether it be studying traditional curriculum in a classroom or trying to pick up a new hobby or skill. This track also aims to increase the accessibility of information and accommodate various learning styles and strengths. </p>
<h3 class="popup-sub-title"> Guiding Questions </h3>
<ul>
<li>How can we use EdTech to enhance learning in a traditional classroom setting? </li>
<li>How can technology improve students’ retention of information?</li>
<li>Can education technology be used to make homework more useful and improve students’ experiences with their at-home assignments?</li>
<li>How can education technology make learning more engaging for students of all ages?</li>
<li>How can technology be used to introduce young students to STEM fields?</li>
</ul>
<h3 class="popup-sub-title"> Potential Topics </h3>
<ul>
<li> <b>Writing, Grammar, and Literature: </b>How can technology be used to improve students’ reading and writing skills? </li>
<li><b>Languages: </b>What can be built to help people of all ages pick up a new language?</li>
<li> <b>Early STEM Education: </b>Introducing young students to STEM fields like computer science, math, and biology is critical to developing a lifelong love of learning. How can EdTech best be used to facilitate that passion?</li>
<li><b>Pre-K Education: </b>How can education technology be used to positively shape children’s formative years?</li>
<li><b>Organization and Stress Management: </b>With tasks on to-do lists piling up for students and professionals alike, how can EdTech help people stay on top of their workload and prevent them from becoming anxious or overwhelmed?</li>
<li><b>Cutting-edge Technologies: </b>Can you incorporate advances in fields like machine learning and augmented reality to improve learning experiences? How can these fields be introduced and taught to students of all ages?</li>
</ul>
<h3 class="popup-sub-title"> Past OSDHACK Projects </h3>
<ul>
<li><a href="https://devpost.com/software/studydate-vxpws8" target="_blank" class="track-link">StudyDate: </a> An education platform for personalized and social learning: assess your current knowledge, identify your weaknesses, and find friends/mentors to help you learn!</li>
<li><a href="https://devpost.com/software/text2test" target="_blank" class="track-link">Text2Test: </a> A website that creates customized tests based on students’ notes</li>
<li><a href="https://devpost.com/software/afar" target="_blank" class="track-link">AFAR: </a> A learning platform that helps people with learning disabilities focus in distracting, noisy environments</li>
<li><a href="https://devpost.com/software/OSDHACK2019-qcu9y7" target="_blank" class="track-link">VocabViz: </a> An application that promotes learning new language vocabulary through an interactive AR experience</li>
<li><a href="https://devpost.com/software/onpause" target="_blank" class="track-link">OnPause: </a> A tool designed to streamline language learning when watching/listening to online streaming, YouTube videos, or podcasts</li>
</ul>
<h3 class="popup-sub-title"> Resources </h3>
<ul>
<li><a href="https://developers.google.com/classroom/guides/get-started" target="_blank" class="track-link">Google Classroom API: </a> Tools for teachers to facilitate digital learning</li>
<li><a href="https://conjuguemos.com/" target="_blank" class="track-link"> Conjuguemos: </a> Interactive tool to learn verb conjugations in a variety of languages</li>
<li><a href="https://www.khanacademy.org/profile/kaid_927284150536721664321295/courses" target="_blank" class="track-link">Khan Academy: </a> Videos and lessons on a variety of topics, including math, science, and grammar</li>
<li><a href="https://www.duolingo.com/" target="_blank" class="track-link">Duolingo: </a>Online resource for learning new languages</li>
<li><a href="https://play.typeracer.com/" target="_blank" class="track-link">Typeracer: </a> Fun game to improve typing speed and accuracy</li>
<li><a href="https://www.coursera.org/" target="_blank" class="track-link">Coursera: </a> Online courses on a myriad of topics</li>
<li><a href="https://quizlet.com/" target="_blank" class="track-link">Quizlet: </a> Interactive flashcards</li>
<li><a href="https://www.edx.org/" target="_blank" class="track-link">EdX: </a> Online courses, including lessons from colleges and universities</li>
<li><a href="https://scratch.mit.edu/" target="_blank" class="track-link">Scratch: </a> Block-based coding for computer science education</li>
</ul>
</div>
<div class="bottom-clouds">
<img class="popup-clouds" src="assets/img/track_popup_clouds_back.svg" />
<img id="above-clouds" class="popup-clouds"
src="assets/img/track_popup_clouds_front.svg" />
<img id="popup-building-a" class="building" src="assets/img/building_a.svg" />
<img id="popup-building-b" class="building" src="assets/img/building_b.svg" />
</div>
</div>
</div>
</div>
<div id="Wifi-box" class="track-box">
<img id="communication-label" class="track-text" src="assets/img/communication.svg">
<svg id="Wifi-bb" class="building-bb" viewBox="0 0 232.44 588.16">
<polygon points="0 543.26 100.29 588.16 232.44 514.13 172.19 0 58.44 33.22 0 543.26" />
</svg>
<img id="Wifi" class="vehicle" src="assets/img/Wifi.svg">
<div id="communication-overlay" class="overlay">
<div class="overlay-box">
<img class="popup-road" src="assets/img/tracks_pop_up_road.svg" />
<img class="close-button" src="assets/img/x_tracks.svg">
<img id="Wifi-popup" class="vehicle-popup" src="assets/img/Ambulance.svg">
<h1 class="popup-title"> Communication/ Connectivity </h1>
<div class="overlay-text">
<h3 class="popup-sub-title"> Description </h3>
<p style = "text-indent : 1em;"> The Connectivity track <b>brings people together, connecting them regardless of their physical locations. </b>These projects provide a platform for individuals to become part of a larger community, opening communication channels (both real-time and asynchronous) to help people connect with long-lost friends, meet new acquaintances with similar interests, challenge existing viewpoints, and more. </p>
<h3 class="popup-sub-title"> Guiding Questions </h3>
<ul>
<li>How can technology help us overcome the technological, physical, and psychological barriers that prevent humans from forming meaningful connections with others? </li>
<li>Which existing technologies are there to improve connectivity, and which ones are missing?</li>
<li>How might different age groups use these technologies differently? How can we use technology to bridge generational divides?</li>
<li>What can be built to mitigate feelings of isolation and loneliness (especially during an extended period of social distancing)?</li>
</ul>
<h3 class="popup-sub-title"> Potential Topics </h3>
<ul>
<li> <b>Virtual Connection: </b>In light of COVID-19, how can we find ways to meet up virtually to maintain social connection? </li>
<li><b>Fostering Conversation: </b>Now, more than ever, communication is key to improving society. How can technology help people with different opinions have civil discussions that promote understanding of different views?</li>
<li> <b>Blogging/Vlogging: </b>What can be created to better learn about or share the lives of individuals in different locations with varying backgrounds?</li>
<li><b>Online Communities: </b>How can we create virtual communities ranging from book clubs to research conferences that connect people based on similar interests or help people find new hobbies?</li>
<li><b>Gaming: </b>What are games that build communities of people who enjoy playing and encourage collaboration and teamwork?</li>
<li><b>Social Media: </b>Can you create the next Zoom or maybe even the next Facebook?</li>
</ul>
<h3 class="popup-sub-title"> Past OSDHACK Projects </h3>
<ul>
<li><a href="https://devpost.com/software/OSDHACK-xdjoke" target="_blank" class="track-link">Civvi: </a> A project that connects individuals to volunteering organizations</li>
<li><a href="https://devpost.com/software/OSDHACK2019" target="_blank" class="track-link">CounterPoint: </a> A website that accepts one article and outputs articles with different views on the topic</li>
<li><a href="https://devpost.com/software/studydate-vxpws8" target="_blank" class="track-link">StudyDate: </a> A personalized learning platform that connects people for study dates</li>
<li><a href="https://devpost.com/software/rap-scorer" target="_blank" class="track-link">Rap-Scorer: </a> A multiplayer game using speech-to-text technology to score raps!</li>
<li><a href="https://devpost.com/software/eye-in-the-sky-nm1l3k" target="_blank" class="track-link">Eye in the Sky: </a> An application where users can post info about natural disasters to help notify others </li>
</ul>
<h3 class="popup-sub-title"> Resources </h3>
<ul>
<li><a href="https://developers.facebook.com/" target="_blank" class="track-link">Facebook APIs: </a> Several Facebook APIs for developers</li>
<li><a href="https://www.ibm.com/watson/products-services" target="_blank" class="track-link">IBM Watson APIs: </a> APIs for image recognition, analyzing speech, translating languages, and more</li>
<li><a href="https://www.rev.ai/" target="_blank" class="track-link">Rev.AI: </a> Speech-to-text API to transform audio into written text</li>
<li><a href="https://developers.google.com/blogger" target="_blank" class="track-link">Blogger API: </a>Connects with the Blogger platform to interact with online blogs.</li>
<li><a href="https://github.com/Medium/medium-api-docs" target="_blank" class="track-link">Medium API: </a> API to interact with Medium blog posts</li>
<li><a href="https://developers.google.com/calendar" target="_blank" class="track-link">Google Calendar API: </a> Integrates Google Calendar with a new project (e.g. for scheduling events)</li>
<li><a href="https://www.twilio.com/docs/video" target="_blank" class="track-link">Twilio Video API: </a> Adds video-calling to your project</li>
</ul>
</div>
<div class="bottom-clouds">
<img class="popup-clouds" src="assets/img/track_popup_clouds_back.svg" />
<img id="above-clouds" class="popup-clouds"
src="assets/img/track_popup_clouds_front.svg" />
<img id="popup-building-a" class="building" src="assets/img/building_a.svg" />
<img id="popup-building-b" class="building" src="assets/img/building_b.svg" />
</div>
</div>
</div>
</div>
<div id="Construction-box" class="track-box">
<img id="urban-label" class="track-text" src="assets/img/urban.svg">
<svg id="Construction-bb" class="building-bb" viewBox="0 0 447.87 431.45">
<polygon
points="2.75 281.07 0 118 203.33 0 447.87 141.21 446.79 328.25 263.13 431.45 2.75 281.07" />
</svg>
<img id="Construction" class="vehicle" src="assets/img/Construction.svg">
<div id="urban-overlay" class="overlay">
<div class="overlay-box">
<img class="popup-road" src="assets/img/tracks_pop_up_road.svg" />
<img class="close-button" src="assets/img/x_tracks.svg">
<img id="Construction-popup" class="vehicle-popup" src="assets/img/Ambulance.svg">
<h1 class="popup-title"> Urban Innovation </h1>
<div class="overlay-text">
<h3 class="popup-sub-title"> Description </h3>
<p style = "text-indent : 1em;"> Urban Innovation strives to tackle the <b>emerging social, environmental, economic, cultural, and technological problems facing cities today. </b>This track welcomes any idea that is meant for the betterment of our community, whether it is on a scale as small as a single street or something as large as helping curb climate change. </p>
<h3 class="popup-sub-title"> Guiding Questions </h3>
<ul>
<li>How can we address the tradeoff between sustainability and affordability?</li>
<li>What are ways we can improve the rebuilding and opening up of cities?</li>
<li>How can we address safety issues surrounding transportation?</li>
<li>How can we improve upon the average person’s carbon footprint?</li>
</ul>
<h3 class="popup-sub-title"> Potential Topics </h3>
<ul>
<li> <b>Energy & Environment: </b>How can we build technology that helps more people consume energy in a sustainable and affordable way? </li>
<li><b>Transportation: </b>What are ways we can use technology to encourage public transportation, or usage of private vehicles that are battery-powered?</li>
<li> <b>Community & Housing: </b>In the face of COVID-19, paying rent has almost been impossible for the majority of Americans that do not own their own houses. How can we use technology to help millions of people find and pay for their shelter?</li>
<li><b>Civic Engagement: </b>During the past few months, forms of civic engagement, including voting by mail and protesting during the time of social distancing, have become vastly debated topics. What are ways to innovate technology that help citizens address public concerns while staying safe?</li>
<li><b>Immigration: </b>The flight industry has been one of the most impacted during the COVID-19 crisis, and many have had their immigrations processes disrupted. What are possible technological solutions to combat issues around immigration and ensure safe international travel?</li>
</ul>
<h3 class="popup-sub-title"> Past OSDHACK Projects </h3>
<ul>
<li><a href="https://devpost.com/software/villager-49dkvf" target="_blank" class="track-link">Villager: </a> A webapp that provides live updates of emergencies in your area</li>
<li><a href="https://devpost.com/software/lgtm" target="_blank" class="track-link">SaveMe: </a> A project that uses speech-to-text to determine whether you are too drunk</li>
<li><a href="https://devpost.com/software/mpgreen" target="_blank" class="track-link">MPGreen: </a> A system to track past driving history to advise drivers on ways they can save energy</li>
<li><a href="https://devpost.com/software/homeup" target="_blank" class="track-link">HomeUp: </a> A web application that shows the timeline of prices of a house to help inform your decision</li>
</ul>
<h3 class="popup-sub-title"> Resources </h3>
<ul>
<li><a href="https://www.rev.ai/" target="_blank" class="track-link">Rev.AI: </a> Speech-to-text service</li>
<li><a href="https://www.nasdaq.com/market-activity/quotes/historical" target="_blank" class="track-link"> Nasdaq Datasets: </a> Current information on home prices and stocks</li>
<li><a href="https://go.docusign.com/sandbox/productshot/?elqCampaignId=11223&utm_source=google&utm_medium=cpc&utm_campaign=developer_api_primary&utm_term=docusign%20api&utm_content=domestic_US&gclid=CjwKCAjwztL2BRATEiwAvnALcqcAKLTXMbBHjg0C_oxHDXFAavd5ZQo6XOSyzIz1nih3Xsr2lRijUhoCPXoQAvD_BwE" target="_blank" class="track-link">DocuSign API: </a> Safe sending of documents to ensure privacy</li>
<li><a href="http://openxcplatform.com/#:~:text=The%20OpenXC%20Platform,%2C%20even%20beyond%20OBD%2DII." target="_blank" class="track-link">Ford's OpenXC Platform: </a>Help for getting car data and writing custom vehicle functions</li>
<li><a href="https://developers.google.com/earth-engine" target="_blank" class="track-link">Google Earth API: </a> Analysis with geospatial datasets</li>
<li><a href="https://geopy.readthedocs.io/en/stable/" target="_blank" class="track-link">Geopy: </a> Tool to locate coordinates of places around the world</li>
</ul>
</div>
<div class="bottom-clouds">
<img class="popup-clouds" src="assets/img/track_popup_clouds_back.svg" />
<img id="above-clouds" class="popup-clouds"
src="assets/img/track_popup_clouds_front.svg" />
<img id="popup-building-a" class="building" src="assets/img/building_a.svg" />
<img id="popup-building-b" class="building" src="assets/img/building_b.svg" />
</div>
</div>
</div>
</div>
</div> -->
</div>
<div id="speakers" class="section">
<!-- <img class="building" id="upper-left" src="assets/img/building_a.svg" />
<img class="building" id="upper-right" src="assets/img/building_b.svg" /> -->
<h1 class="header" id="about">About</h1>
<div class="speaker-heads" style="display:flex;justify-content: center ;align-items: center ;border-radius: 10px;margin-bottom:50px;padding:70px 15pxs;font-size: 20px;
position: relative;
margin: auto;
max-width: 700px;
margin-top: 30px;
margin-bottom: 50px;">
<h3 style="font-size: 20px;">OSDHack 2023 is an offline hackathon being organised by the Open Source
Developers Community of JIIT, Noida. It is a 48-hour long congregation of like-minded hackers and
tech enthusiasts where participants will brainstorm and build on their idea.
</h3>
</div>
<h1 class="header" id="prizes">Prizes</h1>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:70px 15px;background-color: rgba(255,255,255,0.4);width:75%;margin-left: 12%;">
<h3 style="font-size: 24px;">
<div class="card-container">
<div style="display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;">
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img" src="assets/img/2.png" style="">
<h3 class="prize-value" style="margin-top: 10px;">2nd Prize<br>9000 INR</h3>
</div>
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img" src="assets/img/1.png" style="">
<h3 class="prize-value" style="margin-top: 10px;">1st Prize<br>12000 INR</h3>
</div>
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img" src="assets/img/3.png" style="">
<h3 class="prize-value" style="margin-top: 10px;">3rd Prize<br>6000 INR</h3>
</div>
</div>
<br>
<div>
<div>
<div class="mini-prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img src="assets/img/trophy.png"
style="width: 100%; height: auto; max-height: 110px; width: 110px; margin-bottom: 10px; transition: transform 0.3s ease;">
<h5 style="margin-top: 10px; color: #001d55;">CTF<br>1500 INR<br>Pool Prize</h5>
</div>
<div class="mini-prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img src="assets/img/trophy.png"
style="width: 100%; height: auto; max-height: 110px; width: 110px; margin-bottom: 10px; transition: transform 0.3s ease;">
<h5 style="margin-top: 10px; color: #001d55;">MYSTERIOUS EVENT<br>1500 INR<br>Pool Prize</h5>
</div>
</div>
</div><br>
<h1><u>SPECIAL TRACKS</u></h1><br>
<div style="display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;">
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img-ex" src="assets/img/all-girls.png" style="">
<h5 class="prize-value" style="margin-top: 10px;">All Girls Team<br>2000 INR</h5>
</div>
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img-ex" src="assets/img/education-track.png" style="">
<h5 class="prize-value" style="margin-top: 10px;">Education Track<br>2000 INR</h5>
</div>
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img-ex" src="assets/img/all-freshers.png" style="">
<h5 class="prize-value" style="margin-top: 10px;">All Freshers Team<br>2000 INR</h5>
</div>
</div>
</div>
<style>
.card-container:hover img {
transform: translateY(-5px);
}
</style>
</h3>
</div>
<h1 class="header">Speaker</h1>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:70px 15px;background-color: rgba(255,255,255,0.4);width:75%;margin-left: 12%;">
<h3 style="font-size: 24px;"></h3>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 201px;
">
<img style="height: 120px;" src="img1/ankur.png" alt="">
<a href="https://www.linkedin.com/in/flyankur/" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Ankur Saxena</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Grofers - Building Team</h4>
<h4 style="color: #c71239;padding-bottom: 10px;">(Alumnus - JIIT)</h4>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#1b4481"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- <div class="content speaker-slideshow">
<div class="slide" id="slide1">
<div class="speaker-border">
<div class="speaker-description">
<h2>Shivang Sharma</h2>
<h4>Co-Founder and CEO of Precisely, 23andMe</h4>
<p>Linda Avey is co-founder and CEO of Precisely, a San Francisco-based precision health company utilizing an intelligent agent technology that automates preventive health. They are initially focusing on the health system of India, where population growth is out-pacing clinical capacity. In 2006 Linda envisioned and co-founded 23andMe, which has become the world's largest consumer interactive genetics research platform. The idea stemmed from her work at Affymetrix and Perlegen Sciences, early tech providers in the genetics industry. Her involvement with patient communities cemented the idea that people would be willing to share their data in order to make progress in understanding their diseases. Today, millions of individuals are participating in 23andMe research studies, providing statistical power needed to make significant progress not feasible through academic models.
</p>
</div>
</div>
</div>
<div class="slide" id="slide2">
<div class="speaker-border">
<div class="speaker-description">
<h2>Karanjot Singh</h2>
<h4>Co-founder and CEO of Duolingo</h4>
<p>
Luis von Ahn is an entrepreneur and computer science professor at Carnegie Mellon University who is considered one of the pioneers of crowdsourcing. He is known for co-inventing CAPTCHAs, being a MacArthur Fellow and selling two companies to Google in his 20s.
<br>
He is currently the co-founder and CEO of Duolingo, a language-learning platform created to bring free language education to the world. With over 300 million users, it is now the most popular language-learning platform and the most downloaded education app in the world.
<br>
Luis has been named one of the 10 Most Brilliant Scientists by Popular Science Magazine, one of the 50 Best Brains in Science by Discover, one of the Top Young Innovators Under 35 by JIIT Technology Review, and one of the 100 Most Innovative People in Business by Fast Company Magazine.
</p>
</div>
</div>
</div>
<div class="slide" id="slide3">
<div class="speaker-border">
<div class="speaker-description">
<h2>Sai Kiran</h2>
<h4>Co-founder of Github and Chatterbug</h4>
<p>Tom Preston-Werner is a software developer, inventor, and entrepreneur living and working in San Francisco. He is currently the cofounder and Chief Product Officer of Chatterbug, the best way to learn a foreign language online. He’s also building RedwoodJS, a full-stack JavaScript web framework for the Jamstack. Prior to these, Tom cofounded GitHub in 2008, where he served as CEO and helped grow it into the world’s most popular code collaboration tool. On the side, Tom is an angel investor and philanthropist, with an investment thesis focused on fighting climate change. In his spare time, Tom enjoys flying helicopters, snowboarding, and chasing his three young children around the house while making dinosaur noises. </p>
</div>
</div>
</div>
<div class="slide" id="slide4">
<div class="speaker-border">
<div class="speaker-description">
<h2>Akshit Tyagi</h2>
<h4>Founder and CEO of Piazza</h4>
<p>
Pooja Sankar’s life story begins in a village in India. She became a computer scientist and started Piazza to solve the problems she had as one of only three women in her classes. She holds an undergraduate Computer Science degree from IIT, India, a Masters Computer Science degree from University of Maryland, College Park and an MBA from Stanford Business School.
<br>
Piazza Q&A is now the premier social learning platform, helping more than 5 million students learn beyond the traditional classroom in more than 2,000 universities spanning 90 countries. Students use Piazza to work together collaboratively despite differences in learning levels, gender, ethnicity, or socioeconomic status, and instructors address their questions as they arise. While Piazza Q&A enables inclusive learning, the Piazza Network opens up career opportunities.
</p>
</div>
</div>
</div>
<div class="slide" id="slide5">
<div class="speaker-border">
<div class="speaker-description">
<h2>Aryan Gupta</h2>
<h4>CEO of Applied Intuition</h4>
<p>
Qasar Younis is CEO at Applied Intuition and most recently was the COO at Y Combinator. Prior to YC, Qasar's second startup was funded by YC and acquired by Google Maps. Before startups, Qasar was an automotive engineer at GM and Bosch. He has a Bachelor’s in mechanical engineering from General Motors Institute and an MBA from Harvard Business School.
As the foremost enabler of autonomous vehicle development, Applied Intuition equips engineering and product development teams with software that makes it faster, safer, and easier to bring autonomy to market.
Applied’s suite of products, focused on simulation and analytics, delivers sophisticated infrastructure built for scale. Industry leading companies of all sizes use Applied to comprehensively test and rapidly accelerate their autonomous vehicle development.
</p>
</div>
</div>
</div>
<div class="slide" id="slide6">
<div class="speaker-border">
<div class="speaker-description">
<h2>Madhav Mehendiratta</h2>
<h4>Founder & Managing Partner, Cowboy Ventures</h4>
<p>
Aileen is founding Partner at Cowboy Ventures, a team that backs seed-stage technology companies re-imagining work and life through technology, what they call “life 2.0”. Cowboy Ventures works with a wide range of startups from modern enterprise oriented companies like Guild Education and Lightstep to new consumer digital native brands like Dollar Shave Club and Tally.
Prior to Cowboy, Aileen was a partner at Kleiner Perkins Caufield & Byers for over a decade, was founding CEO of digital media company RMG Networks and worked at Gap Inc in operating roles. She has degrees from JIIT and HBS, is mom of 3 and wife to a startup founder, and is an Aspen Institute Henry Crown Fellow and co-founder of the non-profit All Raise, aiming to accelerate success for women in the technology ecosystem.
</p>
</div>
</div>
</div>
</div> -->
<div>
<img src="assets/img/Buildings.svg" class="building medium2" />
<img src="assets/img/Prudential.svg" class="building small2" />
<img src="assets/img/Prudential.svg" class="building small3" />
</div>
<h1 class="header">HACKATHON SCHEDULE </h1>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:70px 15px;background-color: rgba(255,255,255,0.4);width:75%;font-family: Verdana, Geneva, Tahoma, sans-serif;margin-left: 12%;">
<!-- <h3 style="font-size: 24px;">TO BE ANNOUNCED</h3> -->
<div>
<ul>
<li>
<div>
<time><b>Tuesday, 14 April 2023: </b></time>
<br>
<p> → <b>12:00 PM</b> Registration Starts
<br><br>
</p>
</div>
</li>
<li>
<div>
<time><b>Friday, 21 April 2023: </b></time>
<br>
<p>
→ <b>12:00 PM </b>Registration Ends<br><br>
→ <b>5:00 to 7:00 PM </b><br>Opening Ceremony + Speaker Session
<br><br>
→ <b>9:00 PM </b>Hacking Period Starts
</p>
</div>
</li>
<li>
<div>
<time><b>Saturday, 22 April 2023:</b></time>
<br>
<p>
→ <b>1:00 PM</b> CTF Starts
<br><br>
→ <b>3:00 PM</b> Mid-Evaluation 1
</p>
</div>
</li>
<li>
<div>
<time><b>Sunday, 23 April 2023:</b></time>
<br>
<p>
→ <b>11:00 AM</b> Mid-Evaluation 2
<br><br>
→ <b>3:00 PM</b> CTF Ends
<br><br>
→ <b>7:00 PM</b> Mini-Event Starts
<br><br>
→ <b>9:00 PM</b> Hacking Period Ends
<br><br>
→ <b>10:00 PM</b> Mini-Event Ends
<br><br>
→ <b>11:00 PM</b> Project Submission Deadline
</p>
</div>
</li>
<li>
<div>
<time><b>Monday, 24 April 2023:</b></time>
<br>
<p>
→<b> 9:00 AM</b> Top-10 Teams Announcement
<br><br>
→<b> 5:00 PM</b> Top-10 Teams Project Demo & Presentation
<br><br>
→ <b>9:00 PM</b> Winners Announcement
</p>
</div>
</li>
</ul>
</div>
</div>
<h1 class="header">COORDINATORS </h1>
<h2 style="font-size: 24px; padding:40px;">Faculty In-charges</h2>
<div class="wrapper-flex" id="coordinators">
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/Vikassaxena-dir.jpeg" alt="">
<a href="https://www.jiit.ac.in/prof-vikas-saxena-0" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Prof. Vikas Saxena</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">DIRECTOR & HEAD (CSE & IT)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/Dr.Manish%20Kumar%20Thakur.jpg" alt="">
<a href="https://www.jiit.ac.in/dr-manish-kumar-thakur" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Prof. Manish K. Thakur</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Faculty Coordinator (OSDC)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/CS%20Prakash%20Kumar.JPG" alt="">
<a href="https://www.jiit.ac.in/dr-prakash-kumar" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">DR. Prakash Kumar</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">ASSOCIATE DEAN OF STUDENTS</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</a>
</div>
</div>
</div>
</div><br>
<div class="wrapper-flex" id="coordinators">
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/ANITA.jpg" alt="">
<a href="https://www.jiit.ac.in/dr-anita-sahoo" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Dr. Anita Sahoo</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">ASSISTANT PROFESSOR (SENIOR GRADE)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/CS%20Ankita.JPG" alt="">
<a href="https://www.jiit.ac.in/dr-ankita" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">DR. ANKITA</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">ASSISTANT PROFESSOR (SENIOR GRADE)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<h2 style="font-size: 24px; padding: 40px;">Student Coordinators</h2>
<div class="wrapper-flex" id="coordinators">
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 201px;
">
<img style="height: 120px;" src="assets/img/student_coord.png" alt="">
<a href="https://www.linkedin.com/in/prarit-agrawal-8038991b7/" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Prarit Agrawal</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Student Coordinator</h4>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#1b4481"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>