-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1025 lines (945 loc) · 54.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>HackNJIT</title>
<link rel="icon" href="assets/img/HackNJIT2023/hacknjit.ico">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body style="background: #d9f0f9;">
<!--Logo+Reg for Laptops TODO:Make it more compatible with mobile, this what the start-->
<!-- <div class="container">
<div class="row d-none d-md-flex">
<div class="text-center col-6"><img style="width:80%; padding-left: 20%;"
src="assets/img/HackNJIT2022/hacknjit2022_logo.png"></div>
<div class="col-6">
<div class="container" style="margin-top: 15%;">
<div class="row" style="vertical-align: middle;">
<div class="row text-center">
<div class="col-md-12">
<h1>November 5-6!<br>NJIT Campus Center</h1>
<p style="margin-bottom:0;">(150 Bleeker St #1982, Newark, NJ 07102)</p>
</div>
</div>
<div class="col-md-12 text-center">
<h1>Registration is now OPEN!!!!</h1>
<button type="button" class="btn border border-success"
onclick="location.href='https://form.typeform.com/to/df1Dj5r0'"
style="background-color: #5d9b62; font-size:xx-large">Register Here</button>
<!--
<a href="https://hacknjit.org/register" target="_blank">
<button class="btn btn-primary" type="button" style="font-size: 20px;">
<img src="assets/img/HackNJIT2021/paw.png" height="50">Click Here to Register<img src="assets/img/HackNJIT2021/paw.png" height="50">
</button>
</a>
- ->
</div>
</div>
</div>
</div>
</div>-->
</div>
<!--Title Info-->
<div>
<!--Logo-->
<div class="text-center"><img style="width:30%;" src="assets/img/HackNJIT2023/hacknjit2023_logo.png"></div>
<!--Title Info-->
<div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<!-- <div class="row text-center">
<div class="col-md-12">
<h1 style="font-size: 10vh;">Land Ho!</h1>
</div>
</div> -->
<div class="row text-center">
<div class="col-md-12 mb-3">
<h1>Thank you all for an amazing hackathon. <br /> We'll see you again in 2024 </h1>
<!-- <p style="margin-bottom:0;">(150 Bleeker St #1982, Newark, NJ 07102)</p> -->
</div>
</div>
<div class="col-md-12 text-center">
<!-- <h1>Registration is now OPEN!!!!</h1>
<!--TODO: After registration ends, say walk in registration still works- ->
<button type="button" class="btn border border-success"
onclick="location.href='https://forms.gle/1hLYAR1JCCyti8kQ9'"
style="background-color: #1D539F; color:#d9f0f9; font-size:xx-large"><strong>Register
Here</strong>
</button>
<div class="col-md-12" style="padding-top: 5px; margin: 2vh auto;"> -->
<button type="button" class="btn border border-success"
onclick="location.href='https://discord.gg/umQHUfhnMn'"
style="background-color: #1D539F; color:white; font-size:xx-large"><img
src="assets/img/discord.svg" style="padding-right: 5px;margin:5px"
height="40" />Join Our Discord!</button>
<button class="btn btn-primary" type="button" class="btn border border-success"
onclick="location.href='https://hacknjit-2023.devpost.com/'"
style="background-color: #1D539F; color:white; font-size:xx-large">
<img src="assets/img/devpost_white.png" height="50" style="padding-right: 5px;">See the
Devpost!
</button>
</div>
<!-- Old Button -->
<!-- <a href="https://hacknjit.org/register" target="_blank">
<button class="btn btn-primary" type="button" style="font-size: 20px;">
<img src="assets/img/HackNJIT2021/paw.png" height="50">Click Here to Register<img src="assets/img/HackNJIT2021/paw.png" height="50">
</button>
</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!--Carousel and HackNJIT Info-->
<div>
<div class="container">
<div class="row" style="border-top-style: solid;padding-top: 10px;margin-top:10px">
<!--Carousel-->
<div class="col">
<div class="carousel slide" data-bs-ride="carousel" id="carousel-1">
<div class="carousel-inner">
<div class="carousel-item active"><img class="w-100 d-block"
src="assets/img/Slides/hacknjit_2.jpg" alt="Slide Image"></div>
<div class="carousel-item"><img class="w-100 d-block" src="assets/img/Slides/hacknjit_4.jpg"
alt="Slide Image"></div>
<div class="carousel-item"><img class="w-100 d-block" src="assets/img/Slides/hacknjit_3.jpg"
alt="Slide Image"></div>
<div class="carousel-item"><img class="w-100 d-block" src="assets/img/Slides/hacknjit_1.jpg"
alt="Slide Image"></div>
</div>
<div><a class="carousel-control-prev" href="#carousel-1" role="button"
data-bs-slide="prev"><span class="carousel-control-prev-icon"></span></a><a
class="carousel-control-next" href="#carousel-1" role="button"
data-bs-slide="next"><span class="carousel-control-next-icon"></span></a></div>
<ol class="carousel-indicators">
<li data-bs-target="#carousel-1" data-bs-slide-to="0" class="active"></li>
<li data-bs-target="#carousel-1" data-bs-slide-to="1"></li>
<li data-bs-target="#carousel-1" data-bs-slide-to="2"></li>
<li data-bs-target="#carousel-1" data-bs-slide-to="3"></li>
</ol>
</div>
</div>
<!--HackNJIT Info-->
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h1 class="text-center card-title">What is HackNJIT?</h1>
<p class="card-text" style="font-size: 130%;">HackNJIT is a 24-hour hackathon at the New
Jersey Institute of Technology, run by its ACM student chapter in conjunction with
the Ying Wu College of Computing. Students break into small teams of up to 4, work
together over 24 hours to create a tech project, and at the end present it to our
judges!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Links and Schedule-->
<!--
<div style="margin-top: 10px;">
<div class="container" style="border-top-style: solid;">
<div class="row text-center">
<div class="col-md-12">
<h1>HackNJIT 2022 Links</h1>
<p style="font-size: 20px;color: rgb(33, 37, 41);">Our Devpost, and Schedule will also be posted
here once the event comes closer! Stay tuned until then!</p>
</div>
</div>
</div>
<!-- Discord and Devpost - ->
<div class="container">
<div class="row text-center">
<div class="col-md-6" style="padding-top: 5px;">
<!-- <a target ="_blank" href="https://hacknjit.org/discord">
<button class="btn btn-primary" type="button">
<img src="assets/img/Discord-Logo-Black.png" style="padding-right: 5px;" height="50"><strong>Join Our Discord!</strong>
</button> - ->
<button type="button" class="btn border border-success"
onclick="location.href='https://hacknjit.org/discord'"
style="background-color: #5d9b62; font-size:xx-large"><img src="assets/img/Discord-Logo-Black.png" style="padding-right: 5px;" height="50">Join Our Discord!</button>
</a>
</div>
<div class="col-md-6" style="padding-top: 5px;">
</div>
</div>
</div>
<!--
<a target="_blank" href="https://hacknjit2021.devpost.com/">
<button class="btn btn-primary" type="button">
<img src="assets/img/icons8-dev-post-50.png" height="50" style="padding-right: 5px;"><strong>Submit on Devpost!</strong>
</button>
</a>
- ->
<button type="button" class="btn border border-success"
onclick="location.href='https://hacknjit-2022.devpost.com/'"
style="background-color: #5d9b62; font-size:xx-large; padding:0"><img src="assets/img/icons8-dev-post-50.png" height="50">Submit on Devpost!</button>
</a>
</div>
</div>
</div>
-->
<!--Schedule- ->
<div class="container" style="border-top-style: solid; margin-top: 10px;">
<div class="row d-none d-md-flex">
<div class="col-md-12" style="text-align: center;">
<h1>Schedule</h1>
</div>
<img src="assets/img/HackNJIT2023/hacknjit23schedule.png" style="width:50%;display: block;margin:auto">
</div>
<div class="d-md-none">
<div class="col-md-12" style="text-align: center;">
<h1>Schedule</h1>
</div>
<img src="assets/img/HackNJIT2023/hacknjit23schedule.png" style="width:75%">
<!-- <div class="col" style="text-align: center;">
<div class="table-responsive" style="text-align: justify;">
<table class="table">
<thead>
<tr>
<th style="background: rgba(255,255,255,0.5);text-align: center;">Times</th>
<th style="background: rgba(255,255,255,0.5);text-align: center;">Event</th>
</tr>
</thead>
<tbody>
<tr>
<td>November 13: 10:00am - 4:00pm</td>
<td>Check-ins</td>
</tr>
<tr>
<td>November 13: 11:30am - 12:00pm</td>
<td>Opening Ceremony</td>
</tr>
<tr>
<td>November 13: 12:00pm</td>
<td>Hacking Begins!</td>
</tr>
<tr>
<td>November 13: 12:30pm</td>
<td>Bank of America Challenge Introduction</td>
</tr>
<tr>
<td>November 13: 12:45pm</td>
<td>Lunch</td>
</tr>
<tr>
<td>November 13: 2:00pm</td>
<td>Ford: <br>
Professional Development Workshop</td>
</tr>
<tr>
<td>November 13: 3:00pm</td>
<td>Bank of America: <br>
Blockchain and AI in the Financial Industry</td>
</tr>
<tr>
<td>November 13: 4:00pm</td>
<td>MLH US Air Force Cybersecurity Challenge</td>
<tr>
<td>November 14: 11:00am</td>
<td>Submissions Due (Soft Deadline)</td>
</tr>
<tr>
<td>November 14: 12:00pm</td>
<td>Final Deadline for Submissions</td>
</tr>
<tr>
<td>November 14: 12:00pm</td>
<td>Hacking Ends!</td>
</tr>
<tr>
<td>November 14: 1:00pm - 5:00pm </td>
<td>Judging: In person and Discord</td>
</tr>
<tr>
<td>November 14: 5:00pm</td>
<td>Closing Ceremony. <br>Winners Announced!</td>
</tr>
</tbody>
</table>
</div>
</div> - ->
</div>
</div>
- ->
</div>
<!--Sponsors-->
<div style="margin-top: 10px;">
<div class="container" style="text-align: center;">
<div class="row">
<div class="col-md-12" style="border-top-style: solid;">
<h1>Meet our Sponsors!</h1>
</div>
</div>
</div>
<!--Title Sponsors- ->
<div class="container" style="text-align: center;margin-top: 5px;">
<div class="row">
<div class="col-md-12">
<h3 style="background: radial-gradient(rgb(56,165,255) 30%, rgba(255,255,255,0) 69%);">Title Sponsor</h3>
</div>
</div>
<div class="row">
<div class="col-md-12"><a target="_blank" href="https://www.ford.com/"><img alt="Ford" src="assets/img/HackNJIT2021/Ford.png" width="65%"></a></div>
</div>
</div>
-->
<!--Gold Sponsors-->
<div class="container" style="text-align: center;margin-top: 5px;">
<div class="row">
<div class="col-md-12">
<h3 style="background: radial-gradient(rgb(245,222,51) 30%, rgba(255,255,255,0) 69%);">Gold Sponsors
</h3>
</div>
</div>
<div class="row" style="margin-top: 0%;">
<div class="col"><a target="_blank" href="https://www.verizon.com/"><img alt="Verizon"
src="assets/img/HackNJIT2023/Sponsors/verizon.svg" width="50%"></a></div>
</div>
</div>
<!--Silver Sponsors-->
<div class="container" style="text-align: center;margin-top: 5px;">
<div class="row">
<div class="col-md-12">
<h3 style="background: radial-gradient(rgb(185,193,201) 30%, rgba(255,255,255,0) 69%);">Silver
Sponsors</h3>
</div>
</div>
<div class="row" style="margin-top: 0%;">
<div class="col-2"></div>
<div class="col-4"><a target="_blank" href="https://www.databank.com/"><img alt="Databank"
src="assets/img/HackNJIT2023/Sponsors/databank.png" width="60%"></a>
</div>
<div class="col-4"><a target="_blank" href="https://www.patientsafetytech.com/"><img
alt="Patient Safety Technology" src="assets/img/HackNJIT2023/Sponsors/PSTC.png"
width="100%"></a>
</div>
</div>
</div>
</div>
<!--Bronze Sponsors-->
<div class="container" style="text-align: center;margin-top: 5px;">
<div class="row">
<div class="col-md-12">
<h3 style="background: radial-gradient(rgb(205,127,50) 30%, rgba(255,255,255,0) 69%);">Bronze
Sponsors</h3>
</div>
<div class="row">
<div class="col" style="padding-top:1%"><a target="_blank" href="https://www.scm-lp.com/"><img
alt="Stevens Captial Management" src="assets/img/HackNJIT2023/Sponsors/SCM.svg"
width="20%"></a>
</div>
</div>
<div class="row">
<div class="col" style="margin-top: 5px;"></div>
<div class="col-md-6"></div>
</div>
<div class="row">
<div class="col-md-12"></div>
</div>
</div>
<!--Special Thanks-->
<div class="container" style="text-align: center;margin-top: 5px;">
<div class="row">
<div class="col-md-12">
<h3 style="background: radial-gradient(rgb(255,109,109) 30%, rgba(255,255,255,0) 69%);">Special
Thanks
</h3>
</div>
</div>
<div class="row">
<div class="col-2"></div>
<div class="col-md-4" style="margin-top: 5px;">
<a target="_blank" href="https://cloud.google.com/">
<img alt="Google Cloud" src="assets/img/HackNJIT2023/Sponsors/google-cloud.svg"
style="max-width: 30%;">
</a>
</div>
<div class="col-md-4" style="margin-top: 5px;">
<a target="_blank" href="https://github.com/">
<img alt="Github" src="assets/img/HackNJIT2023/Sponsors/github.png" style="max-width: 30%;">
</a>
</div>
</div>
<div class="row mt-3">
<div class="col-2"></div>
<div class="col-md-4" style="margin-top: 5px;">
<a target="_blank" href="https://aws.amazon.com/">
<img alt="AWS" src="assets/img/HackNJIT2023/Sponsors/aws.svg" style="max-width: 30%;">
</a>
</div>
<div class="col-md-4" style="margin-top: 5px;">
<a target="_blank" href=" http://hackp.ac/mlh-StandOutStickers-hackathons">
<img alt="StandoutStickers" src="assets/img/HackNJIT2023/Sponsors/standoutStickers.png"
style="max-width: 30%;">
</a>
</div>
</div>
</div>
</div>
<!--Prizes-->
<!-- <div style="margin-top: 15px;">
<div class="container">
<div class="row text-center" style="border-top-style: solid;">
<div class="col-md-12">
<h1>Prizes:</h1>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col ">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse1" aria-expanded="false" aria-bs-controls="collapse1">
<h5 class="mb-0">
1st Place
</h5>
</div>
<div id="collapse1" class="collapse" aria-labelledby="heading1" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
For the "Best in Show", $1500 split across the team!
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse2" aria-expanded="false" aria-bs-controls="collapse2">
<h5 class="mb-0">
2nd Place
</h5>
</div>
<div id="collapse2" class="collapse" aria-labelledby="heading2" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
For the "2nd Place Runner Up", $1000 split across the team!
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse3" aria-expanded="false" aria-bs-controls="collapse3">
<h5 class="mb-0">
3rd Place
</h5>
</div>
<div id="collapse3" class="collapse" aria-labelledby="heading3" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
For the "3rd Place Runner Up", $500 split across the team!
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse4" aria-expanded="false" aria-bs-controls="collapse4">
<h5 class="mb-0">
Best Themed Hack
</h5>
</div>
<div id="collapse4" class="collapse" aria-labelledby="heading4" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Showed great creativity on the theme and worked it in nicely!
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse5" aria-expanded="false" aria-bs-controls="collapse5">
<h5 class="mb-0">
Best First-Year Hack
</h5>
</div>
<div id="collapse5" class="collapse" aria-labelledby="heading5" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
A team of 50% or more freshman! The winning team will win an item for each member of the
team!
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse6" aria-expanded="false" aria-bs-controls="collapse6">
<h5 class="mb-0">
Best Use of Google Cloud
</h5>
</div>
<div id="collapse6" class="collapse" aria-labelledby="heading6" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Build your hackathon project with a suite of secure storage, powerful compute, and
integrated data analytics products provided by Google Cloud. See full list of products
here: g.co/cloud. Each winning team member will receive a Google branded backpack
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse7" aria-expanded="false" aria-bs-controls="collapse7">
<h5 class="mb-0">
Most Creative Use of GitHub
</h5>
</div>
<div id="collapse7" class="collapse" aria-labelledby="heading3" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Prize: GitHub Octocat Puzzle & Sticker bundle.
GitHub is one of the best ways to collaborate, push code, get feedback, and show the
world what you’ve built during a hackathon. To take it a step further, GitHub is now
offering you access to industry tools, events & learning resources through something
called GitHub Global Campus. Win this weekend’s Most Creative Use of GitHub prize
category, first by signing up for GitHub Global Campus and second by using a GitHub
repository to host your hackathon project’s code! Make sure your use of GitHub stands
out with a detailed ReadMe page, meaningful pull requests and collaboration history, and
even a GitHub pages deployment!
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse8" aria-expanded="false" aria-bs-controls="collapse8">
<h5 class="mb-0">
Best Domain Name from GoDaddy Registry
</h5>
</div>
<div id="collapse8" class="collapse" aria-labelledby="heading4" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
GoDaddy Registry is giving you everything you need to be the best hacker no matter where
you are. Register your domain name with GoDaddy Registry for a chance to win a Hack from
Home Kit! Each Kit contains wireless earbuds, blue light glasses, selfie ring light and
a pouch for easy transport
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse9" aria-expanded="false" aria-bs-controls="collapse9">
<h5 class="mb-0">
Best Use of Streamlit
</h5>
</div>
<div id="collapse9" class="collapse" aria-labelledby="heading3" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Want to take your Python skills to the next level? Streamlit is an open-source Python
library that makes it easy to build and share custom web apps for machine learning, data
science and more. Instead of writing Python scripts without a UI, you can create a
beautiful web app, complete with widgets and data visualizations, and deploy it for free
to the Streamlit Community Cloud. You can even build a fully functional LLM-powered app
with just 25 lines of code! Hack with Streamlit this weekend for your chance to win a
Pimoroni PicoSystem programmable gaming system for you and each member of your team.
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse10" aria-expanded="false" aria-bs-controls="collapse10">
<h5 class="mb-0">
Best Use of Circle
</h5>
</div>
<div id="collapse10" class="collapse" aria-labelledby="heading4" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
With Circle, you can embed secure wallets into your app in just minutes. Circle Web3
wallets are compatible with multiple blockchains and are supported by over a dozen
programming language SDKs. Circle’s programmable wallets will enable you to add secure
transactions to your hackathon project using RESTful APIs, with options for both user
and developer controlled transactions. If your hackathon idea involves in-app purchases,
user to user payments, app to user payments, or all of the above, integrating Circle
programmable wallets to your Web2 or Web3 tech-stack may be the perfect solution. Sign
up for a developer account and start using Circle’s APIs today, for a chance to win a
Circle Branded Hardware Wallet for you and each of your teammates!
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse11" aria-expanded="false" aria-bs-controls="collapse11">
<h5 class="mb-0">
Best Use of Kintone
</h5>
</div>
<div id="collapse11" class="collapse" aria-labelledby="heading3" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Still not sure what backend to use in your hack? Kintone is a low-code web database that
lets you set up your backend in minutes. It's beginner friendly, allowing you to
customize your Kintone app using nothing but JavaScript and HTML. If you're interested
in IoT, your team can snag a FREE microcontroller by signing up for Kintone. If you use
Kintone in your hackathon project, you'll have a chance to win a breadboard IoT kit to
power up the hardware hacking for each member of your team!
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse12" aria-expanded="false" aria-bs-controls="collapse12">
<h5 class="mb-0">
Most Creative Use of Redis Cloud
</h5>
</div>
<div id="collapse12" class="collapse" aria-labelledby="heading4" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Redis Cloud is the easiest way to build and scale real-time applications - Period! It
includes Redis Stack, adding indexing, querying, full-text search, JSON, time-series,
and probabilistic data structures to the already-rich set of features of Redis. Redis
Stack works with all of your favorite programming languages and can be added to any
existing application. It’s the easiest way to build real-time applications that scale
and perform. Show us how you’ve used Redis Cloud in a way that showcases your unique and
specific data structure needs and each member of your team could win a personal,
portable Redis Stack server IOT hardware unit to keep developing on the go. Find out why
Stack Overflow Developers have voted Redis their “most loved and admired” noSQL database
for years-running by rolling Redis into your MLH Hackathon project. Sign up for your
free Redis Cloud account, and head over to the MLH jump off page on Redis University for
more info and docs links. Enter coupon code MLHFall2023 to claim your Redis Cloud
credits and get started for free!
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse13" aria-expanded="false" aria-bs-controls="collapse13">
<h5 class="mb-0">
Best Use of Soroban
</h5>
</div>
<div id="collapse13" class="collapse" aria-labelledby="heading3" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Soroban is an open-source Rust-based developer-friendly smart contracts platform built
for scalability. It is interoperable with the layer-1 Stellar blockchain and benefits
from the network’s existing global reach and access. With Soroban, developers have the
freedom to create applications as borderless as the internet.
Learning how to build Decentralized Applications (DAPPs) using Soroban is easy and fun.
Simply follow along with the DAPPs on Soroban challenge by forking either of the
Crowdfund or Payment repositories, and make the project your own with personalized
customizations to the smart contracts and UI! The challenge link even has some simple
walk-throughs available to help you get started.
Remember to customize your DAPP using Soroban this weekend for a chance to win an Anker
337 Power Bank for you and each of your teammates!
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse14" aria-expanded="false" aria-bs-controls="collapse14">
<h5 class="mb-0">
Best Use of AWS
</h5>
</div>
<div id="collapse14" class="collapse" aria-labelledby="heading4" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Use AWS to support your project! The best implementation of AWS wins a prize from AWS!
For more information drop by their workshop! The winner will win an Amazon Echo!
</div>
</div>
</div>
</div>
</div>
<div class="row" style="margin: 0 4vw 2vh 4vw;">
<div class="col">
<div class="card">
<div class="card-header border-primary collapsed" id="heading1" data-bs-toggle="collapse"
data-bs-target="#collapse15" aria-expanded="false" aria-bs-controls="collapse15">
<h5 class="mb-0">
Patient Safety Technology Challenge
</h5>
</div>
<div id="collapse15" class="collapse" aria-labelledby="heading3" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
Best tech solution designed to reduce medical errors and accidents in a healthcare
setting!
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-header collapsed" id="headingOne" data-bs-toggle="collapse"
data-bs-target="#collapse16" aria-expanded="false" aria-bs-controls="collapse16">
<h5 class="mb-0">
Verizon Project - Reimagine Digital experience with GenAI
</h5>
</div>
<div id="collapse16" class="collapse" aria-labelledby="heading4" aria-expanded="false"
data-bs-parent="#accordion">
<div class="card-body">
GenAI is on the cusp of transforming the digital experience. In the realm of
conversational AI, there's a chance to enhance user experience by placing chatbots at
the forefront, offering personalized and simplified navigation. The Verizon Hackathon
problem statement is asking participants to rethink how they can leverage conversational
GenAI and similar technologies to provide optimized navigation with tailored products,
services, and/or educational experiences. Simplify the user journey through AI, ensuring
effortless product exploration with minimal clicks and intuitive navigation.
Additionally, seize the chance to generate new inventive products and plans designed for
future Verizon customers.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--FAQ-->
<div style="margin-top: 15px;">
<div class="container">
<div class="row text-center" style="border-top-style: solid;">
<div class="col-md-12">
<h1>Frequently Asked Questions:</h1>
</div>
</div>
<!--Question Set 1-->
<div class="row">
<div class="col-md-6">
<div class="card" style="border-style: none;background: transparent;">
<div class="card-body" style="border-style: none;">
<h4 class="card-title" style="color: rgb(33, 37, 41);">When and Where is HackNJIT?<br>
</h4>
<p class="card-text">HackNJIT 2023 will be happening November 4th-5th; check in will start
at 9am. It will be at the NJIT Campus Center (150 Bleeker St, Newark, NJ 07102).</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Who can sign up to compete?<br></h4>
<p class="card-text">Any undergraduate or graduate student at any college in the US, or
any recent (within 6 months) graduate from a college, may register as long as they are
18 years or older.</p>
</div>
</div>
</div>
</div>
<!--Question Set 2-->
<div class="row">
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Do I have to register as a team?<br></h4>
<p class="card-text">No! You're welcome to register with your friends and compete with a
team, but you can also register by yourself or even find a team at the event.
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Can I use any of my old projects?<br></h4>
<p class="card-text">NO! The point of a hackathon is to build something original in a
short time frame. That said, you are allowed to use open-source frameworks and
third-party APIs, with proper citations of course.</p>
</div>
</div>
</div>
</div>
<!--Question Set 3-->
<div class="row">
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Will there be food or entertainment?<br></h4>
<p class="card-text">Yes, and yes! Students attending HackNJIT enjoy free food, free
swag from sponsors, tech workshops, and fun events — expect a bunch of fun in person
events this year!</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Will there be prizes?<br></h4>
<p class="card-text">Yes! Top teams are awarded a variety of prizes, including cash
prizes from NJIT and special prizes from sponsors.</p>
</div>
</div>
</div>
</div>
<!--Question Set 4-->
<div class="row">
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">How big is HackNJIT?<br></h4>
<p class="card-text">We're pretty big! Each year, 400 - 500 students attend
HackNJIT!</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Do I have to pay to compete?<br></h4>
<p class="card-text">Nope! There is no fee required to signup or attend. It's totally
free!</p>
</div>
</div>
</div>
</div>
<!--Question Set 5-->
<div class="row">
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">How many students do you accept each year?<br></h4>
<p class="card-text">As many students as apply! At this time, we do not accept/reject
students on the basis of their registration.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Do you offer parking?<br></h4>
<p class="card-text">Yes, free overnight parking will be available to hackers. The parking
deck is located at 42 Wilsey Street, Newark, NJ.</p>
</div>
</div>
</div>
</div>
<!--Question Set 6-->
<div class="row">
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">What should I bring?<br></h4>
<p class="card-text">Bring a form of identification, proof of COVID vaccination and whatever
you need to hack. This includes your laptop, your charger, and any hardware you'll need
for your project. Note that we'll be running a hardware table, so you can borrow
hardware (Pis, Arduinos, sensors, etc.) from us at any time during the event.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">If I am not vacinnated or cannot find my COVID card can I still
attend?<br></h4>
<p class="card-text">Yes, as long you provide proof of a negative result within 3 days of
the event (earliest being November 1st) and show it during entry, you are all set to go!
</p>
</div>
</div>
</div>
</div>
<!--Question Set 7-->
<div class="row">
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">What shouldn't I bring?<br></h4>
<p class="card-text">We ask that you not bring your desktop or any other non-portable
hardware to HackNJIT, as that will make it difficult for us to rearrange tables for
judging, meals, and events. Of course, weapons, firearms, alcohol, and drugs
are strictly forbidden. If you can't take it on a flight, you can't take it to
HackNJIT!</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">Do you offer travel reimbursements?<br></h4>
<p class="card-text">Unfortunately, we do not offer travel reimbursements at this
time.</p>
</div>
</div>
</div>
</div>
<!--Question Set 8-->
<div class="row">
<div class="col-md-6">
<div class="card" style="background: transparent;border-style: none;">
<div class="card-body">
<h4 class="card-title">You guys haven’t answered my question.<br></h4>
<p class="card-text">If you still have questions, or want more information, feel free to
email us at
<span style="color: rgb(33, 37, 41);"><a href="mailto:[email protected]"
style="color: inherit;">[email protected]</a></span>!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Spacer-->
<div style="padding:2vh"></div>
<!--Footer-->
<footer style="background: #1e262a;">
<div>
<div class="row" style="margin-right: 0px;margin-left: 0px;color: rgb(170,170,170);text-align: center;">
<div class="col">
<p style="margin-top: 5px;"><a href="http://mlh.io/code-of-conduct" target="_blank"