-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
714 lines (625 loc) · 45.6 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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>PEC HACKS 2.0</title><style>
/* cspell:disable-file */
/* webkit printing magic: print all background colors */
html {
-webkit-print-color-adjust: exact;
}
* {
box-sizing: border-box;
-webkit-print-color-adjust: exact;
}
html,
body {
margin: 0;
padding: 0;
}
@media only screen {
body {
margin: 2em auto;
max-width: 900px;
color: rgb(55, 53, 47);
}
}
body {
line-height: 1.5;
white-space: pre-wrap;
}
a,
a.visited {
color: inherit;
text-decoration: underline;
}
.pdf-relative-link-path {
font-size: 80%;
color: #444;
}
h1,
h2,
h3 {
letter-spacing: -0.01em;
line-height: 1.2;
font-weight: 600;
margin-bottom: 0;
}
.page-title {
font-size: 2.5rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 0.75em;
}
h1 {
font-size: 1.875rem;
margin-top: 1.875rem;
}
h2 {
font-size: 1.5rem;
margin-top: 1.5rem;
}
h3 {
font-size: 1.25rem;
margin-top: 1.25rem;
}
.source {
border: 1px solid #ddd;
border-radius: 3px;
padding: 1.5em;
word-break: break-all;
}
.callout {
border-radius: 3px;
padding: 1rem;
}
figure {
margin: 1.25em 0;
page-break-inside: avoid;
}
figcaption {
opacity: 0.5;
font-size: 85%;
margin-top: 0.5em;
}
mark {
background-color: transparent;
}
.indented {
padding-left: 1.5em;
}
hr {
background: transparent;
display: block;
width: 100%;
height: 1px;
visibility: visible;
border: none;
border-bottom: 1px solid rgba(55, 53, 47, 0.09);
}
img {
max-width: 100%;
}
@media only print {
img {
max-height: 100vh;
object-fit: contain;
}
}
@page {
margin: 1in;
}
.collection-content {
font-size: 0.875rem;
}
.column-list {
display: flex;
justify-content: space-between;
}
.column {
padding: 0 1em;
}
.column:first-child {
padding-left: 0;
}
.column:last-child {
padding-right: 0;
}
.table_of_contents-item {
display: block;
font-size: 0.875rem;
line-height: 1.3;
padding: 0.125rem;
}
.table_of_contents-indent-1 {
margin-left: 1.5rem;
}
.table_of_contents-indent-2 {
margin-left: 3rem;
}
.table_of_contents-indent-3 {
margin-left: 4.5rem;
}
.table_of_contents-link {
text-decoration: none;
opacity: 0.7;
border-bottom: 1px solid rgba(55, 53, 47, 0.18);
}
table,
th,
td {
border: 1px solid rgba(55, 53, 47, 0.09);
border-collapse: collapse;
}
table {
border-left: none;
border-right: none;
}
th,
td {
font-weight: normal;
padding: 0.25em 0.5em;
line-height: 1.5;
min-height: 1.5em;
text-align: left;
}
th {
color: rgba(55, 53, 47, 0.6);
}
ol,
ul {
margin: 0;
margin-block-start: 0.6em;
margin-block-end: 0.6em;
}
li > ol:first-child,
li > ul:first-child {
margin-block-start: 0.6em;
}
ul > li {
list-style: disc;
}
ul.to-do-list {
padding-inline-start: 0;
}
ul.to-do-list > li {
list-style: none;
}
.to-do-children-checked {
text-decoration: line-through;
opacity: 0.375;
}
ul.toggle > li {
list-style: none;
}
ul {
padding-inline-start: 1.7em;
}
ul > li {
padding-left: 0.1em;
}
ol {
padding-inline-start: 1.6em;
}
ol > li {
padding-left: 0.2em;
}
.mono ol {
padding-inline-start: 2em;
}
.mono ol > li {
text-indent: -0.4em;
}
.toggle {
padding-inline-start: 0em;
list-style-type: none;
}
/* Indent toggle children */
.toggle > li > details {
padding-left: 1.7em;
}
.toggle > li > details > summary {
margin-left: -1.1em;
}
.selected-value {
display: inline-block;
padding: 0 0.5em;
background: rgba(206, 205, 202, 0.5);
border-radius: 3px;
margin-right: 0.5em;
margin-top: 0.3em;
margin-bottom: 0.3em;
white-space: nowrap;
}
.collection-title {
display: inline-block;
margin-right: 1em;
}
.page-description {
margin-bottom: 2em;
}
.simple-table {
margin-top: 1em;
font-size: 0.875rem;
empty-cells: show;
}
.simple-table td {
height: 29px;
min-width: 120px;
}
.simple-table th {
height: 29px;
min-width: 120px;
}
.simple-table-header-color {
background: rgb(247, 246, 243);
color: black;
}
.simple-table-header {
font-weight: 500;
}
time {
opacity: 0.5;
}
.icon {
display: inline-block;
max-width: 1.2em;
max-height: 1.2em;
text-decoration: none;
vertical-align: text-bottom;
margin-right: 0.5em;
}
img.icon {
border-radius: 3px;
}
.user-icon {
width: 1.5em;
height: 1.5em;
border-radius: 100%;
margin-right: 0.5rem;
}
.user-icon-inner {
font-size: 0.8em;
}
.text-icon {
border: 1px solid #000;
text-align: center;
}
.page-cover-image {
display: block;
object-fit: cover;
width: 100%;
max-height: 30vh;
}
.page-header-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.page-header-icon-with-cover {
margin-top: -0.72em;
margin-left: 0.07em;
}
.page-header-icon img {
border-radius: 3px;
}
.link-to-page {
margin: 1em 0;
padding: 0;
border: none;
font-weight: 500;
}
p > .user {
opacity: 0.5;
}
td > .user,
td > time {
white-space: nowrap;
}
input[type="checkbox"] {
transform: scale(1.5);
margin-right: 0.6em;
vertical-align: middle;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.image {
border: none;
margin: 1.5em 0;
padding: 0;
border-radius: 0;
text-align: center;
}
.code,
code {
background: rgba(135, 131, 120, 0.15);
border-radius: 3px;
padding: 0.2em 0.4em;
border-radius: 3px;
font-size: 85%;
tab-size: 2;
}
code {
color: #eb5757;
}
.code {
padding: 1.5em 1em;
}
.code-wrap {
white-space: pre-wrap;
word-break: break-all;
}
.code > code {
background: none;
padding: 0;
font-size: 100%;
color: inherit;
}
blockquote {
font-size: 1.25em;
margin: 1em 0;
padding-left: 1em;
border-left: 3px solid rgb(55, 53, 47);
}
.bookmark {
text-decoration: none;
max-height: 8em;
padding: 0;
display: flex;
width: 100%;
align-items: stretch;
}
.bookmark-title {
font-size: 0.85em;
overflow: hidden;
text-overflow: ellipsis;
height: 1.75em;
white-space: nowrap;
}
.bookmark-text {
display: flex;
flex-direction: column;
}
.bookmark-info {
flex: 4 1 180px;
padding: 12px 14px 14px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.bookmark-image {
width: 33%;
flex: 1 1 180px;
display: block;
position: relative;
object-fit: cover;
border-radius: 1px;
}
.bookmark-description {
color: rgba(55, 53, 47, 0.6);
font-size: 0.75em;
overflow: hidden;
max-height: 4.5em;
word-break: break-word;
}
.bookmark-href {
font-size: 0.75em;
margin-top: 0.25em;
}
.sans { font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"; }
.code { font-family: "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace; }
.serif { font-family: Lyon-Text, Georgia, ui-serif, serif; }
.mono { font-family: iawriter-mono, Nitti, Menlo, Courier, monospace; }
.pdf .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK JP'; }
.pdf:lang(zh-CN) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK SC'; }
.pdf:lang(zh-TW) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK TC'; }
.pdf:lang(ko-KR) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK KR'; }
.pdf .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.pdf .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK JP'; }
.pdf:lang(zh-CN) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK SC'; }
.pdf:lang(zh-TW) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK TC'; }
.pdf:lang(ko-KR) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK KR'; }
.pdf .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.highlight-default {
color: rgba(55, 53, 47, 1);
}
.highlight-gray {
color: rgba(120, 119, 116, 1);
fill: rgba(120, 119, 116, 1);
}
.highlight-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(159, 107, 83, 1);
}
.highlight-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(217, 115, 13, 1);
}
.highlight-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 145, 47, 1);
}
.highlight-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(68, 131, 97, 1);
}
.highlight-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(51, 126, 169, 1);
}
.highlight-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(144, 101, 176, 1);
}
.highlight-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(193, 76, 138, 1);
}
.highlight-red {
color: rgba(212, 76, 71, 1);
fill: rgba(212, 76, 71, 1);
}
.highlight-default_background {
color: rgba(55, 53, 47, 1);
}
.highlight-gray_background {
background: rgba(241, 241, 239, 1);
}
.highlight-brown_background {
background: rgba(244, 238, 238, 1);
}
.highlight-orange_background {
background: rgba(251, 236, 221, 1);
}
.highlight-yellow_background {
background: rgba(251, 243, 219, 1);
}
.highlight-teal_background {
background: rgba(237, 243, 236, 1);
}
.highlight-blue_background {
background: rgba(231, 243, 248, 1);
}
.highlight-purple_background {
background: rgba(244, 240, 247, 0.8);
}
.highlight-pink_background {
background: rgba(249, 238, 243, 0.8);
}
.highlight-red_background {
background: rgba(253, 235, 236, 1);
}
.block-color-default {
color: inherit;
fill: inherit;
}
.block-color-gray {
color: rgba(120, 119, 116, 1);
fill: rgba(120, 119, 116, 1);
}
.block-color-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(159, 107, 83, 1);
}
.block-color-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(217, 115, 13, 1);
}
.block-color-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 145, 47, 1);
}
.block-color-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(68, 131, 97, 1);
}
.block-color-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(51, 126, 169, 1);
}
.block-color-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(144, 101, 176, 1);
}
.block-color-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(193, 76, 138, 1);
}
.block-color-red {
color: rgba(212, 76, 71, 1);
fill: rgba(212, 76, 71, 1);
}
.block-color-default_background {
color: inherit;
fill: inherit;
}
.block-color-gray_background {
background: rgba(241, 241, 239, 1);
}
.block-color-brown_background {
background: rgba(244, 238, 238, 1);
}
.block-color-orange_background {
background: rgba(251, 236, 221, 1);
}
.block-color-yellow_background {
background: rgba(251, 243, 219, 1);
}
.block-color-teal_background {
background: rgba(237, 243, 236, 1);
}
.block-color-blue_background {
background: rgba(231, 243, 248, 1);
}
.block-color-purple_background {
background: rgba(244, 240, 247, 0.8);
}
.block-color-pink_background {
background: rgba(249, 238, 243, 0.8);
}
.block-color-red_background {
background: rgba(253, 235, 236, 1);
}
.select-value-color-uiBlue { background-color: rgba(35, 131, 226, .07); }
.select-value-color-pink { background-color: rgba(245, 224, 233, 1); }
.select-value-color-purple { background-color: rgba(232, 222, 238, 1); }
.select-value-color-green { background-color: rgba(219, 237, 219, 1); }
.select-value-color-gray { background-color: rgba(227, 226, 224, 1); }
.select-value-color-transparentGray { background-color: rgba(227, 226, 224, 0); }
.select-value-color-translucentGray { background-color: rgba(0, 0, 0, 0.06); }
.select-value-color-orange { background-color: rgba(250, 222, 201, 1); }
.select-value-color-brown { background-color: rgba(238, 224, 218, 1); }
.select-value-color-red { background-color: rgba(255, 226, 221, 1); }
.select-value-color-yellow { background-color: rgba(253, 236, 200, 1); }
.select-value-color-blue { background-color: rgba(211, 229, 239, 1); }
.select-value-color-pageGlass { background-color: undefined; }
.select-value-color-washGlass { background-color: undefined; }
.checkbox {
display: inline-flex;
vertical-align: text-bottom;
width: 16;
height: 16;
background-size: 16px;
margin-left: 2px;
margin-right: 5px;
}
.checkbox-on {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2358A9D7%22%2F%3E%0A%3Cpath%20d%3D%22M6.71429%2012.2852L14%204.9995L12.7143%203.71436L6.71429%209.71378L3.28571%206.2831L2%207.57092L6.71429%2012.2852Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
}
.checkbox-off {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2214.5%22%20height%3D%2214.5%22%20fill%3D%22white%22%20stroke%3D%22%2336352F%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
}
</style>
<link rel="icon" type="image/x-icon" href="favi.ico"></head><body><article id="15c35e94-7ad8-8004-b026-d8bfc3314e90" class="page serif"><header><img class="page-cover-image" src="Untitled_4.png" style="object-position:center 50%"/><div class="page-header-icon page-header-icon-with-cover"><img class="icon" src="18eec663-cc76-4862-abcc-37d6a376110a.jpeg"/></div><h1 class="page-title">PEC HACKS 2.0</h1><p class="page-description"></p></header><div class="page-body"><h3 id="15c35e94-7ad8-81eb-ba29-f69c0c417193" class=""><mark class="highlight-gray"><mark class="highlight-default_background">36 Hours Hackathon</mark></mark></h3><h3 id="15c35e94-7ad8-8156-ae4f-cc1aa892111a" class=""><mark class="highlight-gray">December 28 , 2024 → December 29 , 2024</mark></h3><h3 id="15c35e94-7ad8-8103-83ae-d2b78e990525" class="">@Panimalar Engineering College , Chennai </h3><p id="15c35e94-7ad8-81a3-9d98-d3e04d6c3f3d" class=""><strong>Welcome to the much-anticipated Hackathon 2024!</strong> We are thrilled to host a diverse group of industry experts and passionate tech enthusiasts hailing from various corners of the globe. This is your opportunity to delve deep into the fascinating and ever-evolving future of technology. </p><h2 id="15c35e94-7ad8-8158-9970-e46b1fe8de73" class="block-color-blue_background"> Agenda</h2><div id="15c35e94-7ad8-818c-93df-e4d1f5243531" class="column-list"><div id="15c35e94-7ad8-810e-81d3-dc92ac78cdb0" style="width:52.17391304347825%" class="column"><h2 id="15c35e94-7ad8-81a3-bbf8-d76303a90e9b" class="block-color-orange">Day 1 - December 28th</h2><p id="15c35e94-7ad8-814e-872c-f436041a42d7" class="">
</p><hr id="15c35e94-7ad8-8199-a31a-e9986a5664e1"/><h3 id="15c35e94-7ad8-81a4-a4c1-fa93c2170e45" class="">Hackers Check-in</h3><p id="15c35e94-7ad8-811f-8052-c8c459a2116a" class="">6:00 AM Onwards</p><hr id="15c35e94-7ad8-813e-ab19-ed85a27d353f"/><h3 id="15c35e94-7ad8-818e-b72e-d52d203c3945" class="">Assemble at venue</h3><p id="15c35e94-7ad8-819c-b1bc-e53eda6ed9ea" class="">6:50 AM Onwards</p><hr id="15c35e94-7ad8-8149-b036-ec22f81dac17"/><h3 id="15c35e94-7ad8-81d7-85b8-c1088cb6c796" class="">Start Countdown: Hacking Starts</h3><p id="15c35e94-7ad8-813d-b7d5-d448f7280f67" class="">7:00 AM Onwards</p><hr id="15c35e94-7ad8-8193-b136-eb04eb0d1de3"/><h3 id="15c35e94-7ad8-81e8-a905-e388522e623a" class=""> Basic Instructions</h3><p id="15c35e94-7ad8-8195-9498-de35b96ea7b8" class="">7:00 AM - 7:10 AM</p><hr id="15c35e94-7ad8-81ec-a122-ece17259246c"/><h3 id="15c35e94-7ad8-815e-8b2b-ddd01b1d5937" class="">Breakfast</h3><p id="15c35e94-7ad8-8169-a48c-e88d3739f2df" class="">6:00 PM - 7:00 PM</p><hr id="15c35e94-7ad8-815c-99bd-eb6dbcaa955a"/><h3 id="15c35e94-7ad8-81e4-9354-fe77323aad4c" class="">Assemble at venue for Central Inauguration</h3><p id="15c35e94-7ad8-8183-8850-d65ae7ddc4b6" class="">9:00 PM - 10:00 PM</p><hr id="15c35e94-7ad8-81db-88e8-c9eab897bbe9"/><h3 id="15c35e94-7ad8-8138-bf49-d454641cbf20" class="">Central Inauguration</h3><p id="15c35e94-7ad8-8120-9c95-fc0e641daea5" class="">9:30 AM to 10:00 AM</p><hr id="15c35e94-7ad8-812b-829c-c26b17d7a266"/><h3 id="f0d3cfad-cfff-475e-8378-f24e9d0088d1" class="">Key-note Speech: Logitech</h3><p id="14b1bdd8-bf16-4331-8be3-ab1935c103bc" class="">10:30 AM to 11:00 AM</p><hr id="de3db818-07c1-4346-ae38-57d1c5effc86"/><h3 id="e011352a-bf58-4337-b2f0-f9e45101b592" class=""> Lunch</h3><p id="3bd555a9-a684-42ce-92b0-c830647268e1" class="">12:10 PM to 12:45 PM </p><hr id="8ae44934-f014-4e54-a4e6-e5cd5ef874b3"/><h3 id="adfc54f1-5d88-40bf-bac8-bac2ab3750bc" class="">MLH : GitHub Copilot Workshop</h3><p id="29b4a145-2504-460d-8045-ea63b2949778" class="">1:00 PM Onwards</p><hr id="823320ce-b6a2-4587-9d6d-f12ca8ee2bc4"/><h3 id="4c865be0-1426-4dc9-b99d-ce75cb443b51" class="">Power Mentoring Session 1</h3><p id="ecaf502a-7517-48c3-b7eb-872bdf5d83ae" class="">1:30 PM Onwards</p><hr id="b7f83095-97af-4248-8350-c4689d63f7ea"/><h3 id="040d04bf-9d39-417e-abd8-5ddd4949cfc1" class="">ROUND 1 EVALUATION</h3><p id="eddd333b-eab4-42b7-8a7d-49c9f5e267ac" class="">4:00 PM Onwards</p><hr id="bb6434e1-84e6-4676-860e-ba6536782165"/><h3 id="29af693a-8ad1-443d-be47-ab7c6b3e1515" class="">Snacks</h3><p id="29e2cfb6-5ce4-493b-8d6d-86c234bb15c6" class="">4:30 PM Onwards</p><hr id="8efff09d-c5f3-4cf3-8ed4-06b578e8a801"/><h3 id="a8b89427-fadb-496f-99e2-e959dac10be0" class="">ROUND 1 EVALUATION ENDS</h3><p id="56968ffe-1872-4f7a-8554-11ed5b3dad3f" class="">6:00 PM Onwards</p><hr id="7d9bfd7a-38fa-4aa4-9570-5523e9425867"/><h3 id="2f269bd7-fc9c-4491-8386-ea341e5405d8" class="">Dinner</h3><p id="220b4cd8-c74b-4463-ac4d-183ac644b4b6" class="">8:00 PM to 9:00 PM </p><hr id="63cd1337-191a-4e45-b832-86f6b3239dde"/><h3 id="9d9b03f1-f2ef-47f8-b326-c51ba1cc1323" class="">MLH: GitHub Mini Event</h3><p id="8af07762-d0bd-4869-a65f-617ddaee5c5d" class="">11:00 PM Onwards</p><hr id="c4be6050-22ad-4026-9355-c3e9d4c231f3"/></div><div id="15c35e94-7ad8-814b-87bd-d22af3d21344" style="width:47.826086956521735%" class="column"><h2 id="15c35e94-7ad8-8159-be9e-ecf5eda45fc2" class="block-color-orange">Day 2 - December 29th</h2><p id="15c35e94-7ad8-81e1-a8b6-fbb60f70bb91" class="">
</p><hr id="15c35e94-7ad8-81e4-9c71-f7b25a59da7c"/><h3 id="15c35e94-7ad8-8182-8974-d05fe19fda0e" class="">Recreational Activities Start</h3><p id="15c35e94-7ad8-81b2-ab7f-c71825de7975" class="">12:30 AM Onwards</p><hr id="15c35e94-7ad8-8164-a6bf-f8b1af914ce8"/><h3 id="15c35e94-7ad8-81a8-875e-f5cf17f826c0" class="">Quizzes and Contests</h3><p id="15c35e94-7ad8-8108-9078-d5c8b6cf6221" class="">1:30 AM Onwards</p><hr id="15c35e94-7ad8-8153-abb1-dc05d8bd81d5"/><h3 id="15c35e94-7ad8-81d3-9e97-ea12125c2f5c" class="">Recreational Activities End</h3><p id="15c35e94-7ad8-8113-92cb-e78058b27afd" class="">3:00 AM Onwards</p><hr id="15c35e94-7ad8-813b-9b5a-fb73ea192966"/><h3 id="15c35e94-7ad8-8100-a6b8-c3040c662b26" class="">Breakfast</h3><p id="15c35e94-7ad8-81a2-9665-ccd3034f65cf" class="">7:00 AM to 8:00 AM </p><hr id="15c35e94-7ad8-81d8-9c2c-e6a44b300a83"/><h3 id="15c35e94-7ad8-8155-a1f9-c03a7e825a5a" class="">Power Mentoring Session 2</h3><p id="15c35e94-7ad8-8162-b658-cd0bd401aa53" class="">10:00 AM Onwards</p><hr id="15c35e94-7ad8-81e7-9302-c435bbd5efbb"/><h3 id="15c35e94-7ad8-81a0-b5c6-cd7953f305c8" class="">Submission Deadline (Soft)</h3><p id="15c35e94-7ad8-8141-a668-f70fd3f2a385" class="">12:00 PM Onwards</p><hr id="15c35e94-7ad8-816a-abc5-c9c79ff3ada6"/><h3 id="15c35e94-7ad8-8173-9590-dd0989458073" class="">Lunch</h3><p id="15c35e94-7ad8-8128-8477-dfcf768574bd" class="">12:30 PM to 1:30 PM </p><hr id="15c35e94-7ad8-81b3-9cc0-e8e9f911df4d"/><h3 id="16035e94-7ad8-808e-a7b3-f4939c0a7b69" class="">Submission Deadline (Hard)</h3><p id="15c35e94-7ad8-811f-b2db-ff35c217c4f9" class="">2:45 PM Onwards</p><hr id="15c35e94-7ad8-814c-b2fd-d336b6ef694d"/><h3 id="a8ce0471-39cb-40bc-8666-bf6586d8f846" class="">ROUND 2 EVALUATION</h3><p id="f92c11bd-38b1-4da8-a330-2deb0e75043c" class="">3:00 PM Onwards</p><hr id="265fcf8f-8082-401f-ac77-20f700472182"/><h3 id="e46e97aa-0c16-4efa-8bfe-65ff7e844cc4" class="">Snacks</h3><p id="93ed7db7-b5b0-40ae-9a38-5049b56f9945" class="">4:00 PM Onwards</p><hr id="49a0559f-0d14-4d69-ba1e-cb697aea2316"/><h3 id="a5f3ca33-32f0-4b7e-bdcf-d38a944f0e8b" class="">ROUND 2 EVALUATION ENDS</h3><p id="bffa888b-6e84-4615-8a7f-ecac3d5e687e" class="">5:00 PM Onwards</p><hr id="35286696-2b4a-4717-a75b-8037a106a348"/><h3 id="43ab1cf0-f6bc-41a5-b6af-62616a9edb2c" class=""> FINAL ROUND EVALUATION</h3><p id="d21d86cd-a5c9-4f79-a0a8-1c61101ae95d" class="">5:00 PM to 6:30 PM </p><hr id="ff7d9cd0-3d47-411f-a97e-37d03914acb5"/><h3 id="a4421f41-0a4f-4e77-a59f-21de884cc3fb" class="">Hacking Ends</h3><p id="63fb0356-b4cd-4eb7-9b6f-1492c73de285" class="">7:00 PM Onwards</p><hr id="32afeeab-af4b-4869-8d43-e1de20bfc9cd"/><h3 id="960edd4c-b5e9-4808-901f-5f45eef692ab" class="">Valedictory Ceremony</h3><p id="397abae3-563c-48e4-a5ad-1bb14c2ec518" class="">7:00 PM to 7:55 PM</p><hr id="04839ac8-6d21-413b-a134-5377ab0d17e1"/><h3 id="c82f945a-dcb9-4fb5-87da-7a0bbade33c4" class="">Event Ends</h3><p id="593c07bb-dffc-4f7c-a5da-1406bb94c830" class="">8:00 PM Onwards</p><hr id="86bafaf9-66da-4e6c-b671-5009a846a916"/><h3 id="ae6e4f70-3c0c-4bc3-bbc8-d300971b006b" class="">Participants leave the venue</h3><p id="a27cabf4-9f9d-4cac-ac1b-db2eaba06f79" class="">8:10 PM Onwards</p><hr id="7ec9d006-2908-423d-9bf7-a705d520487f"/></div></div><h2 id="16935e94-7ad8-8077-b958-f937a60f33a6" class="block-color-blue_background">Track Prizes</h2><div id="16935e94-7ad8-80a4-abf0-d464cf9e8158" class="column-list"><div id="16935e94-7ad8-802c-8b88-c73fd7c7cf05" style="width:28.125%" class="column"><figure id="16935e94-7ad8-807a-9bb1-e727475605b2" class="image"><a href="app.png"><img style="width:295.5px" src="app.png"/></a></figure></div><div id="16935e94-7ad8-8007-ba54-f16daa998521" style="width:28.125%" class="column"><figure id="16935e94-7ad8-803e-bd49-cfef02741e8f" class="image"><a href="poly.png"><img style="width:288px" src="poly.png"/></a></figure></div><div id="16935e94-7ad8-807e-a1bd-d138a5c46ae7" style="width:28.125%" class="column"><figure id="16935e94-7ad8-80da-802c-dcb3225eec74" class="image"><a href="eth.png"><img style="width:240px" src="eth.png"/></a></figure></div><div id="16935e94-7ad8-804b-b8e5-cbc0fe33b5fe" style="width:15.624999999999996%" class="column"><p id="16935e94-7ad8-8036-81c3-d7659aa452e3" class="">
</p></div></div><div id="16935e94-7ad8-8001-9be1-f3d0dc4769f5" class="column-list"><div id="16935e94-7ad8-8048-a094-c6b8c1652d8e" style="width:28.125%" class="column"><figure id="16935e94-7ad8-8077-900a-c23cc214d3dd" class="image"><a href="auth.png"><img style="width:295.5px" src="auth.png"/></a></figure></div><div id="16935e94-7ad8-801f-96a5-df0cf2de16b6" style="width:28.125%" class="column"><figure id="16935e94-7ad8-80c4-a47d-d56ed0f184f3" class="image"><a href="monk.png"><img style="width:288px" src="monk.png"/></a></figure></div><div id="16935e94-7ad8-8042-9870-f2f30579c699" style="width:28.125%" class="column"><figure id="16935e94-7ad8-8097-87b5-db610c7c690b" class="image"><a href="mid.png"><img style="width:295.5px" src="mid.png"/></a></figure></div><div id="16935e94-7ad8-80fb-8552-f772d76d77eb" style="width:15.625000000000004%" class="column"><p id="16935e94-7ad8-80d5-b68e-db6c0ce02880" class="">
</p></div></div><div id="16935e94-7ad8-8090-88a6-ffa9ad392d1c" class="column-list"><div id="16935e94-7ad8-80a1-9756-d54a59f4b1be" style="width:28.125%" class="column"><figure id="16935e94-7ad8-80a3-92f9-cee4734168be" class="image"><a href="data.png"><img style="width:295.5px" src="data.png"/></a></figure></div><div id="16935e94-7ad8-8002-929c-f0c13b4944a1" style="width:28.125%" class="column"><figure id="16935e94-7ad8-8022-8891-d5a7b9a9c0fa" class="image"><a href="cloud.png"><img style="width:288px" src="cloud.png"/></a></figure></div><div id="16935e94-7ad8-8017-a831-f6b1d55dc992" style="width:28.125%" class="column"><figure id="16935e94-7ad8-8064-9e39-fda7ad6f875f" class="image"><a href="dev.png"><img style="width:295.5px" src="dev.png"/></a></figure></div><div id="16935e94-7ad8-8043-a14c-ec85b79edd9d" style="width:15.625%" class="column"><p id="16935e94-7ad8-803e-a005-fe0daac72674" class="">
</p></div></div><h2 id="16a35e94-7ad8-80fb-9349-e258b9c1f4ea" class="">To get more Information about the track prizes visit the below page 🔽</h2><p id="16a35e94-7ad8-8016-bb7f-f27e7d1fcf4f" class="">
</p><figure id="16a35e94-7ad8-8039-a9bd-f8b353b6d83c"><a href="https://hack.mlh.io/prizes" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">Day-of Hacker Info - Major League Hacking (MLH)</div><div class="bookmark-description">At Major League Hacking (MLH) our mission is to empower hackers. We're bringing a ton of goodies to help you learn, build, and share at this weekend's hackathon. Find out all the details here on the day-of hacker info site!</div></div><div class="bookmark-href"><img src="https://hack.mlh.io/favicon.ico" class="icon bookmark-icon"/>https://hack.mlh.io/prizes</div></div></a></figure><h2 id="15c35e94-7ad8-8186-bc1a-e42a4c5b30ba" class="block-color-blue_background">Coupon’s Code</h2><div id="16a35e94-7ad8-8045-a7b4-d62dd367228c" class="column-list"><div id="16a35e94-7ad8-8088-b948-e28a941b91cd" style="width:33.33333333333333%" class="column"><figure id="16a35e94-7ad8-80f0-ab83-fc1c5346c882" class="image"><a href="xyz.png"><img style="width:480px" src="xyz.png"/></a></figure><p id="16a35e94-7ad8-808e-9817-c3c366e840d6" class="">
</p></div><div id="16a35e94-7ad8-8060-a821-f3ae47482666" style="width:45.83333333333333%" class="column"><h2 id="16a35e94-7ad8-8009-8ae0-d30c5a7da28e" class="">.xyz</h2><p id="16a35e94-7ad8-80e4-b4ab-d8f07e5539fe" class="">Participants can use the domains to hone their skills creating websites. We're able to offer you 300 .xyz domains that are free for the first year to your participants.</p><p id="16a35e94-7ad8-80ef-93d3-f4f20c47f55b" class="">Coupon Code : PECH24 (expires on Jan 31 , 2025)</p><p id="16a35e94-7ad8-80ab-99d8-ebd465f204ea" class="">Support Pamphlet:</p><p id="16a35e94-7ad8-8030-a0e0-fef0b9d292dc" class=""><a href="https://shorturl.at/TFG5n">https://shorturl.at/TFG5n</a></p></div><div id="16a35e94-7ad8-80eb-93aa-d80b27526cee" style="width:20.833333333333346%" class="column"><p id="16a35e94-7ad8-80ab-a408-e3cb3e9aa5af" class="">
</p></div></div><div id="16a35e94-7ad8-8046-b5ff-e256898a21c4" class="column-list"><div id="16a35e94-7ad8-80b5-815e-ef16db9e9be3" style="width:33.33333333333333%" class="column"><figure id="16a35e94-7ad8-80bc-93bb-fe3e0d88c0c8" class="image"><a href="verb.png"><img style="width:432px" src="verb.png"/></a></figure></div><div id="16a35e94-7ad8-8049-964e-f0fa52c0411c" style="width:45.83333333333333%" class="column"><h2 id="16a35e94-7ad8-8078-b6a2-c4fb7c8e4948" class="">Verbwire</h2><p id="16a35e94-7ad8-803f-a440-d4ee44e07b91" class="">Best Use of AI & Verbwire API - Up to $4,000 in Premium API Credits, across up to 15 teams {$45 credit per team member}</p><p id="16a35e94-7ad8-8023-b6b8-f25faecfe637" class="">Most Innovative Use Of Verbwire API - Up to $1,000 in Premium API Credits, across up to 5 teams {$45 credit per team member</p><p id="16a35e94-7ad8-8056-9fc3-ff5ed051802c" class="">Note: Goes to teams who use AI and the Verbwire API in building applications. Feel free to use <a href="http://magicpilot.ai/">MagicPilot.ai</a> by Verbwire to build web3 programs using AI.</p></div><div id="16a35e94-7ad8-8060-866f-d3414ffcd114" style="width:20.833333333333368%" class="column"><p id="16a35e94-7ad8-8043-ac1c-e4dc2beb1b9a" class="">
</p></div></div><div id="16a35e94-7ad8-8035-be76-f94554e08c1e" class="column-list"><div id="16a35e94-7ad8-80dc-ae3b-c1887db10906" style="width:33.33333333333333%" class="column"><figure id="16a35e94-7ad8-8052-9d3b-cbe7264f651f" class="image"><a href="flat.png"><img style="width:1920px" src="flat.png"/></a></figure></div><div id="16a35e94-7ad8-809b-a72e-e1d4ebba78fc" style="width:45.83333333333333%" class="column"><h2 id="16a35e94-7ad8-8067-a04d-d54ec96bc6b8" class="">Flatlogic</h2><p id="16a35e94-7ad8-80be-ae53-f7b6a923a6c0" class="">Offers participants with complimentary temporary access to the Flatlogic Generator for the duration of the hackathon.</p><p id="16a35e94-7ad8-80ed-9e4b-dab5dd76b89d" class="">Overview to claim the offer :</p><p id="16a35e94-7ad8-80bf-bc03-fdce2dff02ec" class=""><a href="https://www.youtube.com/watch?v=gs-o1YRVrRw">https://www.youtube.com/watch?v=gs-o1YRVrRw</a></p><p id="16a35e94-7ad8-80ca-9569-e4283e8a3875" class="">Coupon Code : PECHACKS_2024_SPONSOR</p></div><div id="16a35e94-7ad8-80a2-be72-de03f9c16f03" style="width:20.833333333333346%" class="column"><p id="16a35e94-7ad8-8098-89fb-dee7aa92ce0c" class="">
</p></div></div><div id="16a35e94-7ad8-80fe-bdec-d1672d9538f3" class="column-list"><div id="16a35e94-7ad8-8085-a527-c1992d8ac71b" style="width:33.33333333333333%" class="column"><figure id="16a35e94-7ad8-8068-ab4c-fab18e9872e4" class="image"><a href="bee.png"><img style="width:1920px" src="bee.png"/></a></figure></div><div id="16a35e94-7ad8-8039-962f-f5dd7ea09048" style="width:45.83333333333333%" class="column"><h2 id="16a35e94-7ad8-801d-b596-ff24822e9083" class="">Beepceptor</h2><p id="16a35e94-7ad8-804b-ac8b-f19cc3fcd93d" class="">Offers free credits to hackathon participants. As a benefit , all your participants get a Team plan for 30 days ($25 creadit per participants)</p><p id="16a35e94-7ad8-8000-bdfc-e1cdeb3492f7" class="">Checkout to avail the Offer: </p><p id="16a35e94-7ad8-8072-8ca2-e0da4f5bdc37" class=""><a href="https://beeceptor.com/pricing/index.html">https://beeceptor.com/pricing/index.html</a></p><p id="16a35e94-7ad8-80c6-a58d-cffbfd774989" class="">
</p></div><div id="16a35e94-7ad8-8003-8bab-cfb76c419f1d" style="width:20.83333333333335%" class="column"><p id="16a35e94-7ad8-80e6-9a66-d08fe4561086" class="">
</p></div></div><div id="16a35e94-7ad8-80d1-ad95-de12da0ea9e0" class="column-list"><div id="16a35e94-7ad8-80cc-90c5-fa6d5cc87de2" style="width:33.33333333333333%" class="column"><figure id="16a35e94-7ad8-8022-84c4-e18ec31f3167" class="image"><a href="bal.png"><img style="width:1920px" src="bal.png"/></a></figure></div><div id="16a35e94-7ad8-800e-9f9e-e064427354ba" style="width:45.83333333333333%" class="column"><h2 id="16a35e94-7ad8-8009-8562-e3a0994ab0f4" class="">Balsamiq</h2><p id="16a35e94-7ad8-8090-a68a-e86bf8fa7140" class="">All participants will receive a 60-day unrestricted access to Balsamiq Cloud that they can explore and use to create and host exciting projects on.</p><p id="16a35e94-7ad8-809a-aeff-e80c86318473" class="">Promo Code : PECHACKS20</p><p id="16a35e94-7ad8-80e7-9934-e5e9cb341fcc" class="">Instruction for code redemption:</p><p id="16a35e94-7ad8-80d1-8701-ce42957ce50f" class="">Visit <a href="https://shorturl.at/Mc6j9">https://shorturl.at/Mc6j9</a></p><p id="16a35e94-7ad8-80d7-b52b-fc28f51757cf" class="">
</p></div><div id="16a35e94-7ad8-8065-8ee3-e530d9ee9bcd" style="width:20.833333333333343%" class="column"><p id="16a35e94-7ad8-80af-845e-ef4c37400a25" class="">
</p></div></div><div id="16a35e94-7ad8-8025-87d3-cd3eace24f7f" class="column-list"><div id="16a35e94-7ad8-803d-8738-cb950bc277e4" style="width:33.33333333333333%" class="column"><figure id="16a35e94-7ad8-8098-a323-f425dbe1fa19" class="image"><a href="ax.png"><img style="width:1920px" src="ax.png"/></a></figure></div><div id="16a35e94-7ad8-805d-b267-f2683c823a9d" style="width:45.83333333333333%" class="column"><h2 id="16a35e94-7ad8-80c6-8ba7-d2dfdd498bf8" class="">Axure</h2><p id="16a35e94-7ad8-808f-a29c-ca01035ee275" class="">3 certificates that can be redeemed for free 1-year subscription licenses of Axure RP Team Edition, valid for Winners of each members</p><p id="16a35e94-7ad8-8033-bf13-d7682bcb826e" class="">It will include a code and instructions on how to redeem their license.</p><p id="16a35e94-7ad8-8092-a737-de2706151d92" class="">
</p></div><div id="16a35e94-7ad8-802c-b978-dbcab9beb116" style="width:20.833333333333343%" class="column"><p id="16a35e94-7ad8-80d4-ae1b-c2a1686b0ec3" class="">
</p></div></div><div id="16a35e94-7ad8-80cb-9109-f12f5a77cb82" class="column-list"><div id="16a35e94-7ad8-8097-adeb-e05e0b36adf7" style="width:31.25%" class="column"><figure id="16a35e94-7ad8-80eb-bae9-de6515ebd616" class="image"><a href="navan.png"><img style="width:1920px" src="navan.png"/></a></figure></div><div id="16a35e94-7ad8-8042-b4e5-ff00bc0c596f" style="width:68.75%" class="column"><h2 id="16a35e94-7ad8-8056-93f4-cd2ede4d08b9" class="">Navan AI</h2><p id="16a35e94-7ad8-8014-a746-fb51ea2dd9c9" class="">Offers Partcipants with 20% discount code for your audience to sign up and use our generative AI platform for fashion </p><p id="16a35e94-7ad8-8045-a7f2-cb7acfd0eefe" class="">Users can generate their own designs to be printed on tshirts, hoodies and other garments by describing their idea and seeing their idea come to shape within a few seconds</p><p id="16a35e94-7ad8-80c2-9748-fa1daaa0143b" class="">Visit : </p><p id="16a35e94-7ad8-8088-88a8-e43eb9ecc9ec" class=""><a href="https://niia.ai">https://niia.ai</a></p><p id="16a35e94-7ad8-80b2-b29f-f410e67acdb8" class="">
</p></div></div><h2 id="15c35e94-7ad8-8104-9cf4-cd4a2bb82107" class="block-color-blue_background">Judges</h2><div id="15e35e94-7ad8-802f-89b2-e1a91a5c316e" class="column-list"><div id="15e35e94-7ad8-80f8-b6f1-feb75afd6c1b" style="width:20%" class="column"><figure id="15e35e94-7ad8-8017-a89a-de23a92b7080" class="image"><a href="Judge_1.jpg"><img style="width:192px" src="Judge_1.jpg"/></a></figure></div><div id="15e35e94-7ad8-8063-9899-cba947b5e0a9" style="width:27.180851063829802%" class="column"><h3 id="15e35e94-7ad8-80c4-a58d-cc6b4b34a37d" class="">Anish Mathew Sajeev</h3><p id="15e35e94-7ad8-80d8-988f-d16ad4092b6d" class="">CEO & Founder</p><p id="15e35e94-7ad8-8068-a326-f323dee31f52" class="">Susan Future Technologies Pvt. Ltd</p></div><div id="16335e94-7ad8-8094-a962-d12598cf46eb" style="width:2.5%" class="column"><p id="16235e94-7ad8-80bd-8fd5-e8635dd49c8e" class="">
</p></div><div id="15e35e94-7ad8-8074-81ed-ec1a1d9c203f" style="width:20%" class="column"><figure id="df30c7eb-80be-48d9-b969-c84a1eefb466" class="image" style="text-align:left"><a href="judge_san.jpg"><img style="width:192px" src="judge_san.jpg"/></a></figure><p id="15e35e94-7ad8-80bf-bd3b-d4d1b0130ef4" class="">
</p></div><div id="15e35e94-7ad8-80b1-8064-e7420643b297" style="width:30.319148936170226%" class="column"><h3 id="e7f64b76-f5f7-4af0-81e8-c4eef48d63a4" class="">Santhosh Chaluvadi</h3><p id="ebccb3c7-2749-4968-9ddb-c3817aa695e2" class="">Founder & CEO</p><p id="15e35e94-7ad8-8053-a420-d11ae79ce53b" class="">Supraja Technologies</p></div></div><div id="15e35e94-7ad8-8095-8c54-dd4983a97f66" class="column-list"><div id="dc5d34b6-67f9-4dc5-becf-768b2a96cb13" style="width:20%" class="column"><figure id="27bd75fd-a2eb-4c59-b18d-1d6d5e35a15c" class="image"><a href="Aravindh_Photo.jpg"><img style="width:240px" src="Aravindh_Photo.jpg"/></a></figure></div><div id="5ac66825-2b2a-4fca-820e-8355306cff0c" style="width:27.1808510638298%" class="column"><h3 id="9c5ef789-baba-4392-b43d-814d5b62dd80" class="">Aravindh Gunasekaran</h3><p id="8f5a8793-1111-48bf-9c7a-ebcabfd129c3" class="">CEO & Founder</p><p id="15e35e94-7ad8-807c-9342-d55c8b7dfc24" class="">iProAT Solutions Private Limited</p><p id="16035e94-7ad8-80cb-b17a-d15bb69d333f" class="">
</p></div><div id="16335e94-7ad8-801e-b573-ed8b97828671" style="width:2.5%" class="column"><p id="16335e94-7ad8-8045-92b5-deaaa2a6a63b" class="">
</p></div><div id="a5d9631b-36be-43ab-aa00-092e4f275112" style="width:20%" class="column"><figure id="41523e1d-19c3-4366-b592-c04e6aa7d16b" class="image"><a href="Bharani_Photo2.jpg"><img style="width:240px" src="Bharani_Photo2.jpg"/></a></figure></div><div id="25b9f33f-c64e-48e0-ad42-3033fb72628d" style="width:30.319148936170205%" class="column"><h3 id="1410cbce-8ba4-4073-912b-4c870f4fedd2" class="">Bharani Aravindh</h3><p id="15e35e94-7ad8-8067-a88b-f86a66952116" class="">Director</p><p id="252e90de-7dd7-43ff-8ca5-2050fbb4fde9" class="">iProAT Solutions Private Limited</p></div></div><div id="15e35e94-7ad8-8033-ab50-eb87ce8819a2" class="column-list"><div id="7c5898a8-ab82-43e0-9642-e8691bb2151d" style="width:20%" class="column"><figure id="847b6dcd-bddf-4427-843a-848f40d36732" class="image"><a href="df7ed24f-9fb2-4f89-bfca-e0051decbfb6.png"><img style="width:240px" src="df7ed24f-9fb2-4f89-bfca-e0051decbfb6.png"/></a></figure></div><div id="e1769178-dcc6-4611-a7f7-2c711ef03c14" style="width:27.18085106382979%" class="column"><h3 id="d0e351c2-69a2-4e62-bdb6-276a2d1168ae" class="">Abhilash Chakkan</h3><p id="fe90b5a7-44b0-40ad-b69f-e1504a643855" class="">Enterprise Architect / Consulting Engineer</p><p id="15e35e94-7ad8-80b2-90bf-da92c59a9d55" class="">Unisys</p></div><div id="16335e94-7ad8-8060-8405-fb9eb528cea9" style="width:2.5%" class="column"><p id="16335e94-7ad8-80b2-8f89-fb2033897057" class="">
</p></div><div id="a9c5480a-1ab2-4477-aa90-01d9b9544bf1" style="width:20%" class="column"><figure id="ec99bc88-2009-4647-ae68-f8f591a829c5" class="image"><a href="judge_6.jpeg"><img style="width:240px" src="judge_6.jpeg"/></a></figure></div><div id="61393d27-20fb-4bbb-a6fb-654b8334b14b" style="width:30.319148936170205%" class="column"><h3 id="d8b00847-3d1c-4f07-b6a2-4d72ee8e5c02" class="">Yogesh Eganandam</h3><p id="7c11937a-1b94-4c1c-bd6f-75fb6c66dae8" class="">AI/ML Solutions Engineer</p><p id="16a35e94-7ad8-80cd-8c9f-c539e7db0778" class="">
</p></div></div><div id="15e35e94-7ad8-80bc-a00d-d9f748fe8ee5" class="column-list"><div id="9f845dbc-ca00-479d-9350-89c9580fdee8" style="width:20%" class="column"><figure id="a54ff7a2-38d1-466a-84f6-3b9937c34ffd" class="image"><a href="judge_7.jpeg"><img style="width:240px" src="judge_7.jpeg"/></a></figure><p id="16335e94-7ad8-8078-b248-e8def62af8b2" class="">
</p></div><div id="2ff74ee9-86d8-4213-80a7-e04f6e33c352" style="width:27.180851063829785%" class="column"><h3 id="278214a3-e6ac-4e7f-83ed-189b4e6f37f1" class="">Kumaravel N</h3><p id="f518a324-dbfe-4fd2-9a83-d3cf209e165a" class="">Technology Consultant</p><p id="16335e94-7ad8-80ce-832b-d95c167513c1" class="">
</p></div><div id="16335e94-7ad8-809b-98fb-c4a0ff2cfc40" style="width:2.5%" class="column"><p id="16335e94-7ad8-80ee-b32c-e6964a8b39e4" class="">
</p></div><div id="d100b517-a3a2-4e37-acc5-780813c47f7e" style="width:20%" class="column"><figure id="49f13aec-85dd-4c2a-a7dd-3d9adb16f1c4" class="image"><a href="judge_8.jpeg"><img style="width:240px" src="judge_8.jpeg"/></a></figure></div><div id="f6ed508a-7846-4526-b803-97439ef77b50" style="width:30.319148936170215%" class="column"><h3 id="a29c8fc5-8f6e-4ecf-b1fd-7191d80769eb" class="">Magesh Rajamani</h3><p id="4c2cb8dc-1282-48ff-a823-9325df63f578" class="">Senior Solution Architect</p><p id="15e35e94-7ad8-80fe-8fff-eafa19e7385a" class="">IBM Expert Labs</p></div></div><div id="15e35e94-7ad8-8060-bbcd-f8f543122b9c" class="column-list"><div id="d549380e-3364-4c48-9d8a-5d420edef919" style="width:20%" class="column"><figure id="f8e1c291-fa1d-4fd8-a6f9-29b7eab6fafb" class="image"><a href="Muthusamy_Subramanian.jpg"><img style="width:240px" src="Muthusamy_Subramanian.jpg"/></a></figure></div><div id="a37d9e42-2ee0-4c75-96e8-d16308907b9e" style="width:27.499999999999996%" class="column"><h3 id="f939f002-2863-415e-af85-45b8a98899a5" class="">Muthusamy Subramanian</h3><p id="f8bebfcf-f419-4898-a39d-cae20d66e9d1" class="">Senior Project Manager</p><p id="15e35e94-7ad8-8008-b9a8-fa94f8a1227b" class="">Cognizant Technology Solutions</p></div><div id="16335e94-7ad8-800c-a065-d3e7dc5f474b" style="width:2.5%" class="column"><p id="16335e94-7ad8-8017-b039-d50600fbbd3f" class="">
</p></div><div id="6afadbd7-0c10-4c24-8f09-3578df760911" style="width:20%" class="column"><figure id="906ccfaf-bc7e-46a7-8f19-872e3d2ed613" class="image"><a href="Radhakrishnan.jpg"><img style="width:192px" src="Radhakrishnan.jpg"/></a></figure></div><div id="452af127-e4e2-4e1d-8607-c44506cb6439" style="width:30.000000000000014%" class="column"><h3 id="3a64cd78-c1cd-448a-bc3b-170b5c7c91d1" class="">Radhakrishnan D</h3><p id="716ebffb-73a7-4706-8e92-5f83976fc15d" class="">Senior Manager</p><p id="15e35e94-7ad8-8020-8674-e086623b194f" class="">Cognizant Technology Solutions</p></div></div><h2 id="16a35e94-7ad8-80db-97b5-d3c645e0e8d6" class="block-color-blue_background">Contact Info</h2><table id="16335e94-7ad8-80fb-b7bb-d7caab306496" class="simple-table"><thead class="simple-table-header"><tr id="9d20f55e-fe59-46c5-ae5e-c621e66b5601"><th id="uYDS" class="simple-table-header-color simple-table-header" style="width:388.65911865234375px">Name</th><th id="VLal" class="simple-table-header-color simple-table-header" style="width:369.6590881347656px">Role</th><th id="T\pl" class="simple-table-header-color simple-table-header" style="width:433px">Contact No </th></tr></thead><tbody><tr id="4dfb7c78-62af-4422-ac87-e237e1f36aa6"><td id="uYDS" class="" style="width:388.65911865234375px">Ajay Raj T</td><td id="VLal" class="" style="width:369.6590881347656px">Organizer</td><td id="T\pl" class="" style="width:433px">8825417048</td></tr><tr id="dad8feac-10b3-409c-8779-914b98d9fc16"><td id="uYDS" class="" style="width:388.65911865234375px">Dilip V</td><td id="VLal" class="" style="width:369.6590881347656px">Organizer</td><td id="T\pl" class="" style="width:433px">9994645361</td></tr></tbody></table><h2 id="15c35e94-7ad8-813d-b41d-f509c8058fe3" class="block-color-blue_background">Booth Station</h2><table id="16235e94-7ad8-809c-ab69-d66bf3d9a567" class="simple-table"><thead class="simple-table-header"><tr id="d0c7abf4-5fe2-43aa-b586-85528da27e40"><th id="uYDS" class="simple-table-header-color simple-table-header" style="width:554.6591186523438px">Booth Stations</th><th id="VLal" class="simple-table-header-color simple-table-header" style="width:632.6625061035156px">Venue</th></tr></thead><tbody><tr id="5d1b90c8-06f4-4515-a756-7be47531ce90"><td id="uYDS" class="" style="width:554.6591186523438px">Logitech</td><td id="VLal" class="" style="width:632.6625061035156px">Hacking Arena</td></tr><tr id="061d72e6-dcc7-470d-b78b-1cfc790777c8"><td id="uYDS" class="" style="width:554.6591186523438px">MLH</td><td id="VLal" class="" style="width:632.6625061035156px">Hacking Arena</td></tr><tr id="b5fc7f17-00dc-46b8-bcce-9036baf399be"><td id="uYDS" class="" style="width:554.6591186523438px">Github</td><td id="VLal" class="" style="width:632.6625061035156px">Hacking Arena</td></tr></tbody></table><h2 id="15c35e94-7ad8-81b7-a86a-fd55487066ab" class="block-color-blue_background">Wifi & Password</h2><table id="16235e94-7ad8-80b1-9ad2-e10507aa0b67" class="simple-table"><thead class="simple-table-header"><tr id="a6804472-56a8-4fdf-bd08-8260cddc77fd"><th id="uYDS" class="simple-table-header-color simple-table-header" style="width:560.6591186523438px">Network</th><th id="VLal" class="simple-table-header-color simple-table-header" style="width:632.6625061035156px">Password</th></tr></thead><tbody><tr id="6cb4e8b5-a535-4ccc-97f5-7ad0e3dff6d4"><td id="uYDS" class="" style="width:560.6591186523438px">PECHACKS</td><td id="VLal" class="" style="width:632.6625061035156px">Pec@2024</td></tr></tbody></table><p id="15c35e94-7ad8-812d-9afe-e9d44edab4dc" class="">
</p><figure class="block-color-gray_background callout" style="white-space:pre-wrap;display:flex" id="15c35e94-7ad8-818e-b603-f0ae4f9f29cb"><div style="font-size:1.5em"><span class="icon">⭐</span></div><div style="width:100%"><strong>Rules and Guidelines</strong> <strong>:</strong><ul id="15c35e94-7ad8-8180-8fc7-e643c871743e" class="bulleted-list"><li style="list-style-type:disc"><strong>Code of Conduct:</strong> All participants must adhere to the event's code of conduct</li></ul><ul id="15c35e94-7ad8-811e-a225-e3e848611e90" class="bulleted-list"><li style="list-style-type:disc"><strong>Original Work:</strong> All submissions must be original and created during the hackathon</li></ul><ul id="15c35e94-7ad8-8134-924f-d42b8f688491" class="bulleted-list"><li style="list-style-type:disc"><strong>Intellectual Property:</strong> Participants retain ownership of their projects</li></ul><ul id="15c35e94-7ad8-81f1-85df-d40c246cd76c" class="bulleted-list"><li style="list-style-type:disc"><strong>Judging Criteria:</strong> Projects will be evaluated on innovation, technical complexity, and presentation</li></ul></div></figure><p id="16235e94-7ad8-80b9-b9fe-f354d0653884" class="">
</p></div></article><span class="sans" style="font-size:14px;padding-top:2em"></span></body></html>