-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1594 lines (1457 loc) · 99 KB
/
index.html
File metadata and controls
1594 lines (1457 loc) · 99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class=no-js lang=en>
<head>
<meta http-equiv=content-type content="text/html; charset=utf-8" />
<meta http-equiv=X-UA-Compatible content="IE=edge" />
<meta name=viewport content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>MAKE-A-THON 1.0</title>
<meta name=keywords content="hackathon cum conference, tech conference, conference, hackathon in october, biggest hackathon in india, biggest hackathon in Dehradun, Techfest"
/>
<meta name=author content=MAKE-A-THON />
<link rel="shortcut icon" type="image/x-icon" href="icons/favicon.ico" />
<link rel=icon type="image/x-icon" href="icons/favicon.ico" />
<link rel=manifest href="assets/img/favicon/manifest.html">
<link rel=stylesheet href="assets/libs/bootstrap/css/bootstrap.min.css" media=all />
<link rel=stylesheet href="assets/libs/fontawesome/css/font-awesome.min.css" media=all />
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700|Oswald:400,700|Raleway:300,400" rel=stylesheet>
<link id=lgx-master-style rel=stylesheet href="assets/css/style-default.min.css" media=all />
<link rel=stylesheet href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css">
<script src="assets/js/vendor/modernizr-2.8.3.min.js"></script>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css'>
<link rel="stylesheet" href="assets/css/style.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/lightgallery/1.6.11/css/lightgallery.css'>
<link rel='stylesheet' href='https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css'>
<link rel="stylesheet" href="assets/css/faq.css">
<link rel="stylesheet" href="assets/css/swag.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="assets/css/workshop.css">
<link rel="stylesheet" href="assets/css/popup.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120130047-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-120130047-4');
</script>
</head>
<body class=home>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<style>
a {
text-decoration: none !important;
}
.clr-white {
color: white;
}
.clr-black {
color: black;
}
.sponsor_space {
margin-bottom: 50px;
}
.zero-padding {
padding: 0;
}
.sponsor_space_bitalino {
margin-bottom: 70px;
}
.sponsor_space_linode {
margin-bottom: 34px;
}
.sponsor_bugsee {
margin-bottom: 50px;
}
.sponsor_cloud {
margin-bottom: 75px;
}
.mlh-badge {
width: 10%;
position: fixed;
top: 84px;
right: 12px;
z-index: 9999;
min-width: 56px;
}
.sponsor_large {
width: 250px;
}
.col-md-4 {
height: 260px !important;
}
.sponsored-heading-media {
font-size: 2.6rem;
line-height: 3.9000000000000004rem;
font-weight: 700;
color: #ec398b;
text-transform: uppercase;
text-align: center;
margin: 0.5rem 0 2rem;
display: block
}
.resource_color {
color: beige;
}
.profile_height {
height: 360px!important;
}
.speaker_box .speaker_img .info_box {
padding: 2px;
min-width: 70%;
bottom: 8px;
padding-left: 10px;
}
.disabled {
background: #8d8d8d !important;
color: fff !important;
box-shadow: none !important;
border-radius: unset !important;
cursor: no-drop;
}
}
.workshop {
padding-bottom: 15px;
}
/* .card__image--flowers {
background-image: url(assets/img/keynote/cognitive_services.jpeg);
}
.card__image--river {
background-image: url(assets/img/keynote/workshop.jpeg);
}
.card__image--record {
background-image: url(https://unsplash.it/800/600?image=39);
} */
.keynote1 {
background-image: url(assets/img/keynote/hackers_superheros.jpg);
}
.workshop1 {
background-image: url(assets/img/keynote/cognitive_services.jpeg);
}
.keynote2 {
background-image: url(assets/img/keynote/psychology.jpg);
}
.workshop2 {
background-image: url(assets/img/keynote/nextjs.jpeg);
}
.workshop3 {
background-image: url(assets/img/keynote/bugbounty.jpeg);
}
.workshop4 {
background-image: url(assets/img/keynote/workshop4.jpeg);
}
.border-microsoft {
border-left: 20px solid #ca00db;
}
.microsoft-logo {
width: 100%;
transform: translate(3%, 0%);
}
.border-mlh {
border-right: 20px solid #f7c000;
}
.border-cb {
border-right: 20px solid #ff3d45;
}
.mlh-logo {
max-width: 65%;
transform: translate(23%, 36%);
}
.cbs {
width: 70% !important;
transform: translate(23%, 36%);
}
</style>
<div class="lgx-container ">
<header>
<div id=lgx-header class=lgx-header>
<div class="lgx-header-position lgx-header-position-white lgx-header-position-fixed ">
<div class=lgx-container-fluid>
<nav class="navbar navbar-default lgx-navbar">
<div class=navbar-header>
<button type=button class="navbar-toggle collapsed" data-toggle=collapse data-target="#navbar" aria-expanded=false aria-controls=navbar>
<span class=sr-only>Toggle navigation</span>
<span class=icon-bar></span>
<span class=icon-bar></span>
<span class=icon-bar></span>
</button>
<div class=lgx-logo>
<a href=# class="lgx-scroll">
<img src="images/make a thon1.png" height="100px" width="100px" alt="MAKEATHON Logo" />
</a>
</div>
</div>
<div id=navbar class="navbar-collapse collapse lgx-collapse">
<ul class="nav navbar-nav lgx-nav">
<li>
<a href="index.html" class=active role=button aria-haspopup=true aria-expanded=false>Home</a>
<li><a class=lgx-scroll href="#about">About</a></li>
<!-- <li><a class=lgx-scroll href="#workshops">Workshops</a></li> -->
<li><a class=lgx-scroll href="#registration">Registration</a></li>
<li><a class=lgx-scroll href="#schedule">Schedule</a></li>
<!-- <li><a class=lgx-scroll href="mentor.html">Mentors</a></li> -->
<!-- <li><a class=lgx-scroll href="#themes">Themes & Problem Statements</a></li> -->
<!-- <li><a class=lgx-scroll href="#rules">Rules</a></li> -->
<li><a class=lgx-scroll href="#sponsors">Sponsors</a></li>
<li><a class=lgx-scroll href="#contact">Contact</a></li>
</ul>
<!--
<div class="lgx-logo">
<div class=lgx-cart-area>
<a class="lgx-btn lgx-btn-red lgx-scroll" href="#registration">Register</a>
</div>
</div>
-->
</div>
</nav>
</div>
</div>
</div>
<!-- <div class="mlh-badge lgx-scroll">
<a id="mlh-badge mlh-trust-badge lgx-scroll" style="display:block;max-width:90px;min-width:60px;position:fixed;right: 4.5%;top:63px;width:10%;z-index:10000" href="https://hackp.ac/apac" target="_blank">
<img src="https://s3.amazonaws.com/logged-assets/trust-badge/2020/mlh-trust-badge-2020-apac-white.svg" alt="Major League Hacking 2020 Hackathon Season" style="width:100%">
</a>
</div>
--> <!--
<div class="mlh-badge lgx-scroll">
<a href="https://mlh.io/seasons/apac-2020/events" target="_blank"><img src="assets/img/mlh-badge.png" alt="MLH Badge"></a>
</div>
-->
</header>
<section>
<div id=lgx-parallax-banner class="lgx-banner lgx-banner-parallax">
<div class=lgx-section>
<div id=layer-wrapper class=lgx-item-parallax-banner>
<div class=banner-content >
<div class=lgx-hover-link >
<div class=lgx-vertical style="background-color: rgb(0,0,0,0.8);">
<div class="lgx-banner-info lgx-banner-info-center">
<div class=lgx-countdown-area>
<div id=lgx-countdown data-date="2019/11/7"></div>
</div>
<h2 class=title>MAKE-A-THON <span><b>1</b>.<b>0</b></span><br></h2>
<h3 class=location><i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/MqFeaZ3Lg7gZf6Lv6" target="_blank"> DIT University, Dehradun</a></h3>
<h3 class=date><i class="fa fa-calendar"></i><a href="https://calendar.google.com/event?action=TEMPLATE&tmeid=NnZ2NmdoZXZscnZvbmZqZ3BzdTljZTBwNDUgNmkzc3Vja250b283Ymljcmk2Ympjc3JxczRAZw&tmsrc=6i3suckntoo7bicri6bjcsrqs4%40group.calendar.google.com" target="_blank"> 7-9 November, 2019</a></h3>
<!--
<div class="row">
<div class="col-md-6 col-md-push-3" style="text-align: center;margin-top: 40px;">
<a href="#"><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>
</div>
</div>
-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pt100 pb100" id=about>
<div class=container>
<div class=section_title>
<h3 class=title>
About the event
</h3>
</div>
<div class="row text-justify">
<div class="col-12 col-md-12">
<p class="text-justify"><b>A Maker Space culture, one that emphasizes creation over memorization, open source sharing over knowledge, and process over conduct, gives new ways for students to explore concepts and show what they know. MAKE-A-THON 1.0 is a 48 hour Hackathon scheduled in Youthopia’19 the Techno-Cultural fest of DIT University. The participants would be asked to develop something out of scratch or innovate any idea, Software or Hardware based and complete the development task in the given period of time. Each teams would be allotted some virtual money and they’ll have to purchase the components with that virtual money. Using those components each team will have to develop something innovative and out of the box. The team coming out with the best idea and with the best utilization of resources will take a lead. </b></p>
</div>
</div>
</div>
</section>
<section class="counter-section section-padding">
<div class="container">
<div class="row text-center">
<div class="col-sm-6">
<div class="counter">
<div class="icon-swag"><img src="assets/img/icons/hackathon1.svg" style="color: black;" class="img-responsive" width="100px"></div>
<p class="swagpara"><b>Cash Prizes</b></p>
</div>
</div>
<div class="col-sm-6 work-counter-widget">
<div class="counter">
<div class="icon-swag"><img src="assets/img/icons/hackathon2.svg" class="img-responsive" width="100px"></div>
<p class="swagpara"><b>48 Hours Hackathon</b></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pb-profile" id=registration>
<div id=lgx-photo-gallery class="lgx-gallery-popup lgx-photo-gallery-normal lgx-photo-gallery-black">
<div class="lgx-inner" >
<div class=container>
<div class="section_title">
<h3 class="title clr-white">
Pre - Registration
</h3>
</div>
</div>
<div class="container" >
<!--Comment Start-->
<!-- <div class="row">
<div class="col-md-3">
<div class="card">
<div class="card__image workshop1"></div>
<div class="card__content">
<div class="card__title">Cognitive Services</div>
<p class="card__text">Mr. Bernd Verst <br> Cloud Developer Advocate<br><b>Microsoft</b></p>
<button data-js2="open2">Learn More</button>
<div class="popup2">
<img src="assets/img/speakers/berndportrait.jpg" alt="speaker name" style="border-radius: 50%;"><br>
<p><b>Mr. Bernd Verst</b></p>
<img src="assets/img/sponsors/microsoft.png" style="width:50%;">
<p>Detecting emotion with Python and Azure Cognitive Services Abstract: Azure provides powerful AI tools, wrapped up in APIs that you can use from your apps to add intelligence without being an AI expert. In this
hands-on workshop you will build a Python app that takes advantage of one of these APIs to detect emotions in faces, alerting you if you have a sad face too often.</p>
<button name="close">Close</button>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card__image workshop2"></div>
<div class="card__content">
<div class="card__title">ZEIT Now</div>
<p class="card__text">Mr. Amandeep Singh<br>Organizer, ZEIT Community India<br><b>ZEIT</b></p>
<button data-js3="open3">Learn More</button>
<div class="popup3">
<img src="assets/img/speakers/Amandeepsingh.png" alt="speaker name" style="border-radius: 50%;" width="200px"><br>
<p><b>Mr. Amandeep Singh</p>
<img src="assets/img/sponsors/zeit.png" width="150px">
<p> In this workshop, you'll see how ZEIT now can prove to be the single most productive tool for quickly deploying Web Applications and Lambdas. Their web interface, <a href="https://zeit.co/new" target="_blank">zeit.co/new</a> provides a variety of starter kits for choosing between a number of front-end frameworks or simply Vanilla JS with Lambdas. There will be exercises to ensure that the audience gets to hands-on apply what
they learn in the workshop there itself.
</p>
<button name="close">Close</button>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card__image workshop3"></div>
<div class="card__content">
<div class="card__title">Bug Bounty</div>
<p class="card__text">Mr. Sandeep Singh<br>Security Analyst<br><b>HackerOne</b></p>
<button data-js4="open4">Learn More</button>
<div class="popup4">
<img src="assets/img/speakers/Sandeep%20Singh%20Picture.JPG" alt="speaker name" style="border-radius: 50%;"><br>
<p><b>Mr. Sandeep Singh</b></p>
<img src="assets/img/keynote/HackerOne.png" width="150px;"><br><br>
<p>A full-time bug bounty hunter & geekboy, Sandeep Singh will be presenting his journey of hacking at Makeathon 1.0, with an experience of 5 years and earning the prestigious title of Top 10 hackers on HackerOne.
Come check out his talk to learn how you can become a full-time bug bounty hunter!</p>
<button name="close">Close</button>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card__image workshop4"></div>
<div class="card__content">
<div class="card__title">Augmented Reality</div>
<p class="card__text"><br><br><b>DreamAR</b></p>
<button data-js5="open5">Learn More</button>
<div class="popup5"> -->
<!-- Comment End -->
<!-- <img src="assets/img/speakers/Sandeep%20Singh%20Picture.JPG" alt="speaker name" style="border-radius: 50%;"><br> -->
<!-- <p><b>DreamAR</b></p> -->
<!-- Comment Start -->
<!-- <img src="assets/img/sponsors/DreamAR.png" width="150px;"><br><br>
<p><b>Immersive Tech</b> is an upcoming tech also termed as <b>Industry 4.0</b> as it is believed to disrupt each and every industry. This is the sole reason why all the big companies like Google, Facebook,
Apple, etc are trying their best to get into the business of AR. Be a part of the upcoming technology revolution and get started with Immersive Tech with the Hands-on Session on Augmented Reality by
DreamAR
</p>
<button name="close">Close</button>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Comment End--> <!-- <h2 class="text-center" style="color: #fff"> COMING SOON!</h2> -->
</div>
</div>
</section>
<section id=workshop>
</section>
<section id=registration>
<div id=lgx-registration class=lgx-registration >
<div id=lgx-photo-gallery class="lgx-gallery-popup lgx-photo-gallery-normal lgx-photo-gallery-black">
<div class=lgx-inner>
<div class=container>
<div class=row>
<div class=col-xs-12>
<div class="lgx-registration-area">
<div class="lgx-single-registration recommended">
<div class=lgx-single-registration-inner>
<a class=icon href="#"><img src="assets/img/icons/3.svg" alt=ticket style="width: 200px" /></a>
<div class=single-top>
<h3 class=title>REGISTER FOR MAKEATHON</h3>
</div>
<div class=single-bottom>
<ul class="list-unstyled list">
<li>Free Entry</li>
<li>SWAGs + Prizes</li>
<li>Networking and Q/A sessions with Mentors</li>
<li>Certificate of Participation</li>
<!-- <li>Deadline for Registrations 5th November</li> -->
</ul>
<!-- <button disabled>Resgiter</button> -->
<a class="lgx-btn" href="http://youthopia.co.in/events/144">REGISTER HERE</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class=pb100 id=schedule>
<div class=container>
<div class="section_title mb50">
<h3 class=title>
Event Schedule
</h3>
</div>
</div>
<!-- Comment Start -->
<div class=container>
<div class=row>
<div class=col-xs-12>
<h2 class="text-center"> COMING SOON!</h2>
</div></div></div>
<!--<div class=lgx-tab>
<ul class="nav nav-pills lgx-nav lgx-nav-nogap lgx-nav-colorful">
<li class=active>
<a data-toggle=pill href="#home">
<h3>First <span>Day</span></h3>
<p><span>19 </span>Oct, 2019</p>
</a>
</li>
<li>
<a data-toggle=pill href="#menu1">
<h3>Second <span>Day</span></h3>
<p><span>20 </span>Oct, 2019</p>
</a>
</li>
</ul>
<div class="tab-content lgx-tab-content">
<div id=home class="tab-pane fade in active">
<div class=panel-group id=accordion role=tablist aria-multiselectable=true>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingfive>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapsefive" aria-expanded=true aria-controls=collapsefive>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/regi.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>08:00 <span>AM</span> - 09:30 <span>AM</span></h4>
<h3 class=title>Registration</h3>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingsix>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapsesix" aria-expanded=true aria-controls=collapse>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/lamp.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>09:45 <span>AM</span> - 10:15
<span>AM</span></h4>
<h3 class=title>Lamp Lighting Ceremony
</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapsesix class="panel-collapse collapse" role=tabpanel aria-labelledby=headingThree>
<div class=panel-body>
<h4 class=author-info>By <span>Dr. Poonam Verma,</span> Principal
<br /> Shaheed Sukhdev College of Business Studies
</h4>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingOne>
<div class=panel-title>
<a role=button data-toggle=collapse data-parent="#accordion" href="#collapseOne" aria-expanded=true aria-controls=collapsefive>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/keynote.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>10:20 <span>AM</span> - 11:00 <span>AM</span></h4>
<h3 class=title>Keynote Session</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapseOne class="panel-collapse collapse " role=tabpanel aria-labelledby=headingOne> -->
<!---comment end-->
<!--
<div class=panel-body>
<h4>Modern Developer Psychology- read, write, code</h4>
<p class=text>By Mr. Arkodyuti Saha</p>
<p>Scaling a Hackathon project needs a vision just like owning a startup. As a developer there's a lot more to a project beyond just the code. What's your idea? Who is your target audience? Where will your application sit? Answering these questions is key to a successful project.
</p>
<h4 class=location><strong>Location: </strong>Main Auditorium, Ground Floor</h4>
</div>
-->
<!--Comment Start--><!--
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingfive>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapsefive" aria-expanded=true aria-controls=collapsefive>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/workshop.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>11:30 <span>AM</span> - 01:00
<span>PM</span></h4>
<h3 class=title>Workshops - 1 & 2</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapsefive class="panel-collapse collapse" role=tabpanel aria-labelledby=headingfive> -->
<!--Comment End-->
<!--
<div class=panel-body>
<h4>Detecting emotion with Python and Azure Cognitive Services</h4>
<p class=text>By Mr. Arkodyuti Saha</p>
<p>Azure provides powerful AI tools, wrapped up in APIs that you can use from your apps to add intelligence without being an AI expert. In this hands-on workshop you will build a Python app that takes advantage of one of these APIs to detect emotions in faces, alerting you if you have a sad face too often. This app will be in two parts, one part that runs on the desktop and takes photos, and another that runs in the cloud to analyse photos and store the emotions detected.</p>
<h4 class=location><strong>Location: </strong> Seminar Room, 5th Floor</h4>
<br />
<h4>Boost your Hackathon productivity with ZEIT Now - Easiest way to deploy web-apps and lambdas</h4>
<p class=text>By Mr. Amandeep Singh</p>
<p>In this workshop, we will see how ZEIT Now can prove to be the single most productive tool for quickly deploying Web Applications and Lambdas. The web interface, <a href="https://zeit.co/new" target="_blank">zeit.co/new</a> provides a variety of starter kits for choosing between a number of Front-end frameworks or simply Vanilla JS with Lambdas. There will be exercises to ensure that Audience gets enough hands on to apply what they learn in the Hackathon</p>
<h4 class=location><strong>Location: </strong> Seminar Room, 5th Floor</h4>
<br />
<h4>Cracking Technical Interviews by Coding Ninjas</h4>
<p class=text>By Parikh Jain</p>
<h4 class=location><strong>Location: </strong> Seminar Room, 7th Floor</h4>
<br>
</div>
-->
<!--Comment Start-->
<!-- </div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingfive>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapsefive" aria-expanded=true aria-controls=collapsefive>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/dinner.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>01:00 <span>PM</span> - 02:00 <span>PM</span></h4>
<h3 class=title>Lunch</h3>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingThree>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapseThree" aria-expanded=true aria-controls=collapseThree>
<div class=lgx-single-schedule> -->
<!-- Comment End -->
<!-- <div class="author author-multi"> -->
<!-- Comment Start -->
<!-- <div class="author"> -->
<!-- //<img src="assets/img/speakers/amit.jpg" alt=Speaker />// -->
<!-- <img src="assets/img/icons/workshop.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>02:15 <span>PM</span> - 04:00<span>PM</span></h4>
<h3 class=title>Workshops - 3 & 4</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapseThree class="panel-collapse collapse" role=tabpanel aria-labelledby=headingThree> -->
<!-- Comment End -->
<!-- <div class=panel-body>
<h4>Ethical Hacking and Cybersecurity Best Practices</h4>
<p class=text>By Dr. Himanshu Dua and Mr. Amit Malhotra</p>
<h4 class=location><strong>Location: </strong> Seminar Room, 5th Floor</h4>
</div>
<div class=panel-body>
<h4>MediaWiki: Open source software that runs Wikipedia</h4>
<p class=text>By Mr. Feroz Ahmad and Mr. Anmol Wassan</p>
<h4 class=location><strong>Location: </strong> Seminar Room, 7th Floor</h4>
</div> -->
<!-- Comment Start -->
<!-- </div>
</div> -->
<!-- Comment End -->
<!--
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingTwo>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapseTwo" aria-expanded=true aria-controls=collapseTwo>
<div class=lgx-single-schedule>
<div class="author">
<img src="assets/img/speakers/chanchalraj-2.jpg" alt=Speaker /> -->
<!--<img src="assets/img/male.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class="time">TBD</h4>
<h4 class=time>03:00 <span>PM</span> - 04:30
<span>PM</span></h4> -->
<!--<h3 class=title>Keynote Session</h3>
<h4 class=author-info>By <span>Chanchal Raj and Yuvraj Bansal</span><br/>OnlineTyari and EduPrefer</h4> -->
<!--</div>
</div>
</a>
</div>
</div>
<div id=collapseTwo class="panel-collapse collapse" role=tabpanel aria-labelledby=headingTwo>
<div class=panel-body>
<p class=text>
Mr. Chanchal Raj, who is an IIT Delhi and IIMK alumnus, has been instrumental in shaping digital marketing in India for companies like Texas Instruments, HDFC Bank, OnlineTyari.
He has also been associated with many early age startups in healthtech, education, and travel, helping them to grow their brand and business together.
<br><br>
Mr. Yuvraj Bansal is an IIT Delhi alumnus and Founder/Mentor at EduPrefer. He has worked on shaping and implementing product and operational strategies at Religare Health Insurance.
With a series of entrepreneurial ventures, he is helping youth to realize their passion as a career.
</p>
<h4 class=location><strong>Location: </strong>Main Auditorium, Ground Floor</h4>
</div> -->
<!--</div>
</div>-->
<!-- Comment Start -->
<!-- <div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingfive>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapsefive" aria-expanded=true aria-controls=collapsefive>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/registrations.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>04:00 <span>PM</span> - 05:15 <span>PM</span></h4>
<h3 class=title>Registration for Hackathon</h3>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingsix>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapsesix" aria-expanded=true aria-controls=collapse>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/themediscussion.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>05:15 <span>PM</span> - 05:45
<span>PM</span></h4>
<h3 class=title>Hackathon Theme Discussion
</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapsesix class="panel-collapse collapse" role=tabpanel aria-labelledby=headingThree>
<div class=panel-body>
<p class=text>
Hackathons are a networking goldmine & hackCBS would be no different. From developers to investors, you will find all under one roof. Most of our sponsor companies will send their representatives in the events.Also there would be two keynote sessions
from top engineers in their field. So hackCBS will provide you with a great chance to reach out to recruiters if you are looking for a new opportunity. Make sure you don’t spend your entire time
working with your team at hackCBS, take a walk and reach out to people who interest you. At least you will get some new hacker buddies for sure. In the end, your "network" is your "net-worth".
</p>
<h4 class=location><strong>Location:</strong> None specified</h4>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingTwo>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapseTwo" aria-expanded=true aria-controls=collapseTwo>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/hack.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>06:00 <span>PM</span></h4>
<h3 class=title>Hackathon Begins!</h3>
</div>
<div class=panel-body> -->
<!-- Comment End-->
<!-- <h4 class=location><strong>Location:</strong> Seminar Room,
6th Floor </h4> -->
<!-- Comment Start -->
<!-- </div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingTwo>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapseTwo" aria-expanded=true aria-controls=collapseTwo>
<div class=lgx-single-schedule>
<div class="author"> -->
<!-- Comment End -->
<!-- <img src="assets/img/speakers/chanchalraj-2.jpg" alt=Speaker /> -->
<!-- Comment Start -->
<!-- <img src="assets/img/icons/dinner.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>09:00 <span>PM</span> - 10:00
<span>PM</span></h4>
<h3 class=title>Dinner</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapseTwo class="panel-collapse collapse" role=tabpanel aria-labelledby=headingTwo> -->
<!-- Comment End -->
<!-- <div class=panel-body>
<p class=text>
Mr. Chanchal Raj, who is an IIT Delhi and IIMK alumnus, has been instrumental in shaping digital marketing in India for companies like Texas Instruments, HDFC Bank, OnlineTyari.
He has also been associated with many early age startups in healthtech, education, and travel, helping them to grow their brand and business together.
<br><br>
Mr. Yuvraj Bansal is an IIT Delhi alumnus and Founder/Mentor at EduPrefer. He has worked on shaping and implementing product and operational strategies at Religare Health Insurance.
With a series of entrepreneurial ventures, he is helping youth to realize their passion as a career.
</p>
<h4 class=location><strong>Location: </strong>Main Auditorium, Ground Floor</h4>
</div> -->
<!-- Comment Start -->
<!-- </div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingfive>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapsefive" aria-expanded=true aria-controls=collapsefive>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/checkpoint.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>From 11:00 <span>PM</span></h4>
<h3 class=title>Checkpoint 1</h3>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div id=menu1 class="tab-pane fade">
<div class=panel-group id=accordion2 role=tablist aria-multiselectable=true>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingOne2>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion2" href="#collapseOne2" aria-expanded=true aria-controls=collapseOne2>
<div class=lgx-single-schedule>
<div class="author">
<img src="assets/img/icons/funact.png" alt="Fun Activity" />
</div>
<div class=schedule-info>
<h4 class="time">05:30 <span>AM</span> - 07:30 <span>AM</span></h4> -->
<!-- Comment End -->
<!--<h4 class=time>11:00 <span>Am</span></h4>-->
<!-- Comment Start -->
<!-- <h3 class=title>Fun Activity</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapseOne2 class="panel-collapse collapse" role=tabpanel aria-labelledby=headingOne> -->
<!-- Comment End -->
<!--
<div class=panel-body>
<p class=text>
First evaluation will be done by judges. We do not expect you to have a working prototype at this stage. Your idea and it's feasibility will be evaluated. It will be checked against the themes and problem statements. Teams whose idea does not comply to
our problem statements or is too naive will be eliminated.</p>
<p class=text>Each team will be given 5 minutes to present their idea.
</p>
<h4 class=location><strong>Location:</strong> Seminar Room, 6th Floor</h4>
</div>
-->
<!-- Comment Start-->
<!-- </div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingTwo>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion" href="#collapseTwo" aria-expanded=true aria-controls=collapseTwo>
<div class=lgx-single-schedule>
<div class="author"> -->
<!-- Comment End-->
<!-- <img src="assets/img/speakers/chanchalraj-2.jpg" alt=Speaker /> -->
<!-- Comment Start-->
<!-- <img src="assets/img/icons/breakfast.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class=time>07:30 <span>AM</span> - 09:30
<span>AM</span></h4>
<h3 class=title>Breakfast</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapseTwo class="panel-collapse collapse" role=tabpanel aria-labelledby=headingTwo> -->
<!-- Comment End-->
<!-- <div class=panel-body>
<p class=text>
Mr. Chanchal Raj, who is an IIT Delhi and IIMK alumnus, has been instrumental in shaping digital marketing in India for companies like Texas Instruments, HDFC Bank, OnlineTyari.
He has also been associated with many early age startups in healthtech, education, and travel, helping them to grow their brand and business together.
<br><br>
Mr. Yuvraj Bansal is an IIT Delhi alumnus and Founder/Mentor at EduPrefer. He has worked on shaping and implementing product and operational strategies at Religare Health Insurance.
With a series of entrepreneurial ventures, he is helping youth to realize their passion as a career.
</p>
<h4 class=location><strong>Location: </strong>Main Auditorium, Ground Floor</h4>
</div> -->
<!-- Comment Start-->
<!-- </div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingTwo2>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion2" href="#collapseTwo2" aria-expanded=true aria-controls=collapseTwo2>
<div class=lgx-single-schedule>
<div class="author">
<img src="assets/img/icons/checkpoint.png" alt="Judges of MAKEATHON" />
</div>
<div class=schedule-info>
<h4 class="time">10:00 <span>AM</span></h4>
<h3 class=title>Checkpoint 2</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapseTwo2 class="panel-collapse collapse" role=tabpanel aria-labelledby=headingTwo>
<div class=panel-body>
<p class=text>
In second assessment, we expect you to have a minimal working prototype of your idea running. Your product will be evaluated according to what you presented in first assessment. Teams who do not have anything to show or have completely different product
from what they presented in first assessment will be eliminated.
</p>
<p class=text>
Teams qualifying this round will compete for the grand prize.
</p>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class=panel-heading role=tab id=headingThree2>
<div class=panel-title>
<a class=collapsed role=button data-toggle=collapse data-parent="#accordion2" href="#collapseThree2" aria-expanded=true aria-controls=collapseThree2>
<div class=lgx-single-schedule>
<div class=author>
<img src="assets/img/icons/pitch.png" alt=Speaker />
</div>
<div class=schedule-info>
<h4 class="time">From 03:00 <span>PM</span></h4>
<h3 class=title>Final Pitch Begins</h3>
</div>
</div>
</a>
</div>
</div>
<div id=collapseThree2 class="panel-collapse collapse" role=tabpanel aria-labelledby=headingThree>
<div class=panel-body>
<p class=text>
5-7 minute presentation with a working product according to theme/problem statement. Your implementation, innovation and progress will be considered for final evaluation.