-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevpostMap.json
More file actions
2633 lines (2633 loc) · 124 KB
/
devpostMap.json
File metadata and controls
2633 lines (2633 loc) · 124 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
{
"projects": {
"AImani2/EDelUS": "https://github.com/AImani2/EDelUS",
"Beachhacks-Spark/Spark": "https://github.com/Beachhacks-Spark/Spark/tree/main/spark-web",
"justinfisherrr/vibe-check": "https://github.com/justinfisherrr/vibe-check",
"SpaceRage/AIHackathon": "https://github.com/SpaceRage/AIHackathon/",
"anandafrancis/policing-bias": "https://github.com/anandafrancis/policing-bias",
"leahuriarte/skinskan": "https://github.com/leahuriarte/skinskan",
"maiapiechocki/AthenaHacks2023": "https://github.com/maiapiechocki/AthenaHacks2023",
"ColleenQue/Hack-it-together": "https://github.com/ColleenQue/Hack-it-together",
"EvaPanin/MATLAB-Deep-Learning": "https://github.com/EvaPanin/MATLAB-Deep-Learning",
"diyavij/roseyflow": "https://github.com/diyavij/roseyflow",
"T3chnopath/DrawbotSoftware": "https://github.com/T3chnopath/DrawbotSoftware",
"WaterKat/BeachHacks7": "https://github.com/WaterKat/BeachHacks7",
"menthy-wu/Athenahack": "https://github.com/menthy-wu/Athenahack",
"AidenCohen31/MadData": "https://github.com/AidenCohen31/MadData",
"jzaia18/Bartleby": "https://github.com/jzaia18/Bartleby",
"reallifenero/purfectlypawesome": "https://github.com/reallifenero/purfectlypawesome",
"bhargavap21/catpedia": "https://github.com/bhargavap21/catpedia",
"balaji-balachandran/SplitIt": "https://github.com/balaji-balachandran/SplitIt",
"Tanya2303/Hack-Around-the-World-2": "https://github.com/Tanya2303/Hack-Around-the-World-2",
"CollinOlkows/greekathleticsuccess": "https://github.com/CollinOlkows/greekathleticsuccess",
"knightron0/gesture": "https://github.com/knightron0/gesture",
"Jpduker/ArtOdyssey": "https://github.com/Jpduker/ArtOdyssey",
"kennisjoseph/TasteAtlas": "https://github.com/kennisjoseph/TasteAtlas",
"GauravBurande/tomravel": "https://github.com/GauravBurande/tomravel",
"Ameat77/HackIllinois2023": "https://github.com/Ameat77/HackIllinois2023",
"neelkumar812/Pill-Pal.git": "https://github.com/neelkumar812/Pill-Pal.git",
"maisha242/brickvibes": "https://github.com/maisha242/brickvibes",
"hanh-tra/AntiScroll": "https://github.com/hanh-tra/AntiScroll",
"King-Of-Spades-K": "https://github.com/King-Of-Spades-K",
"Carter4242/Brick-Hack-2023": "https://github.com/Carter4242/Brick-Hack-2023",
"crasgaitis/friendflow": "https://github.com/crasgaitis/friendflow",
"Marinara-Sauce/WordLink": "https://github.com/Marinara-Sauce/WordLink",
"NLNHSR/prairie-learn-deadline-feature": "https://github.com/NLNHSR/prairie-learn-deadline-feature",
"Mingy123/ntu2023": "https://github.com/Mingy123/ntu2023",
"SidKarthik999/Class-Capture": "https://github.com/SidKarthik999/Class-Capture",
"fdeitylink/MATLisp": "https://github.com/fdeitylink/MATLisp",
"Ryan-Current": "https://github.com/Ryan-Current",
"joshua-rdrgz/purrfect-match": "https://github.com/joshua-rdrgz/purrfect-match",
"samyabrata-maji/magnificent-seven": "https://github.com/samyabrata-maji/magnificent-seven",
"annietiet/we-love-ricky": "https://github.com/annietiet/we-love-ricky",
"adc2108/BrickHacks9.git": "https://github.com/adc2108/BrickHacks9.git",
"mauryaavinash95/JAK-AI": "https://github.com/mauryaavinash95/JAK-AI",
"AmanNegi/MysticMelodies": "https://github.com/AmanNegi/MysticMelodies",
"cnRachel/whisker-hacks": "https://github.com/cnRachel/whisker-hacks",
"maryam-abdool/Earthquake-Detection": "https://github.com/maryam-abdool/Earthquake-Detection/tree/main",
"A1uvi/Bookseed": "https://github.com/A1uvi/Bookseed",
"alexa/Topical-Chat": "https://github.com/alexa/Topical-Chat",
"Aadarsh805/Unify": "https://github.com/Aadarsh805/Unify/",
"preethiamara/memRecall": "https://github.com/preethiamara/memRecall",
"ffex/JourneyLog": "https://github.com/ffex/JourneyLog",
"hiukim/refine-xr": "https://github.com/hiukim/refine-xr/",
"OussamaHm/AiFacereco": "https://github.com/OussamaHm/AiFacereco",
"SidKalje/Productify-Beta": "https://github.com/SidKalje/Productify-Beta",
"Rohin2022/Culture-Connector": "https://github.com/Rohin2022/Culture-Connector",
"brian-ngyn/Calgary-Hacks2023.git": "https://github.com/brian-ngyn/Calgary-Hacks2023.git",
"IamWafula/MediBot": "https://github.com/IamWafula/MediBot",
"microsoft/onnxruntime": "https://github.com/microsoft/onnxruntime/blob/main/dockerfiles/ARM64/Dockerfile",
"CalgaryHacks2023/CalgaryHacks2023": "https://github.com/CalgaryHacks2023/CalgaryHacks2023",
"mehulrao/Lav-U": "https://github.com/mehulrao/Lav-U",
"akash02ita/part.ai": "https://github.com/akash02ita/part.ai",
"Oulsjeg/StrumItUp": "https://github.com/Oulsjeg/StrumItUp",
"rajas1998/HealthStoryBackend": "https://github.com/rajas1998/HealthStoryBackend",
"A1uvi/COUNSYL": "https://github.com/A1uvi/COUNSYL",
"GavvyDizzle/ParkourRace": "https://github.com/GavvyDizzle/ParkourRace",
"rydelopez/treehacks2023": "https://github.com/rydelopez/treehacks2023",
"blasian01/Mhacks-hackathon": "https://github.com/blasian01/Mhacks-hackathon",
"qianxichen233/hacknyu-2023": "https://github.com/qianxichen233/hacknyu-2023",
"JohanDelao/hackNYU": "https://github.com/JohanDelao/hackNYU",
"dayee0318/Recycling_Dino": "https://github.com/dayee0318/Recycling_Dino",
"verumlotus/SemanticNear": "https://github.com/verumlotus/SemanticNear",
"schefferac2020/QuickAction": "https://github.com/schefferac2020/QuickAction",
"IBN5101/AH8-Game": "https://github.com/IBN5101/AH8-Game",
"pushpak-edu/EarthNotes": "https://github.com/pushpak-edu/EarthNotes",
"srini047/hackathon-projects-landing": "https://github.com/srini047/hackathon-projects-landing",
"brianwu568/DroneFormer": "https://github.com/brianwu568/DroneFormer",
"FourSauces/TheWaterboarders": "https://github.com/FourSauces/TheWaterboarders",
"hithaaaa/treehacks-arduino": "https://github.com/hithaaaa/treehacks-arduino",
"ri-tae-ka/CodeCloset": "https://github.com/ri-tae-ka/CodeCloset",
"mstomar698/t_master": "https://github.com/mstomar698/t_master",
"jduan22/firstplate": "https://github.com/jduan22/firstplate",
"otisdog8/news-express-api": "https://github.com/otisdog8/news-express-api",
"http:/": "http://github.com/nickmura/chess",
"EeshitaDayani/ElleHacks23": "https://github.com/EeshitaDayani/ElleHacks23",
"nbalamur03/treeHacks.git": "https://github.com/nbalamur03/treeHacks.git",
"devstep2/Treehacks_Proj.git": "https://github.com/devstep2/Treehacks_Proj.git",
"nathanhleung/ats-pr-bls-contracts": "https://github.com/nathanhleung/ats-pr-bls-contracts",
"michaelwaves/lumigui": "https://github.com/michaelwaves/lumigui",
"Srikark-17/diversiFood": "https://github.com/Srikark-17/diversiFood",
"AllenWang314/drones_go_burr": "https://github.com/AllenWang314/drones_go_burr",
"reaganrazon/pcospal": "https://github.com/reaganrazon/pcospal",
"AbhishekMarda/CommuniPute": "https://github.com/AbhishekMarda/CommuniPute/tree/main",
"minihacks/aly": "https://github.com/minihacks/aly",
"jeremyzhang1/vapor-protocol": "https://github.com/jeremyzhang1/vapor-protocol",
"petern03/Treehacks-2023": "https://github.com/petern03/Treehacks-2023",
"natewu/UniQuest": "https://github.com/natewu/UniQuest",
"advaitpaliwal/gpt-check": "https://github.com/advaitpaliwal/gpt-check",
"Scott-Hickmann/TreeHacks-2023": "https://github.com/Scott-Hickmann/TreeHacks-2023",
"aj-avendano/Tree_hacks_23": "https://github.com/aj-avendano/Tree_hacks_23",
"Victoria-DR/ellehacks-2023": "https://github.com/Victoria-DR/ellehacks-2023",
"sarah-gu/graze-pro": "https://github.com/sarah-gu/graze-pro",
"hwchase17/langchain": "https://github.com/hwchase17/langchain",
"paulmach/orb": "https://github.com/paulmach/orb/",
"smefft/Loaded": "https://github.com/smefft/Loaded",
"SohamGovande/treehacks-2023": "https://github.com/SohamGovande/treehacks-2023",
"Game-Guardian-H4H": "https://github.com/Game-Guardian-H4H",
"eerinah/H4H23": "https://github.com/eerinah/H4H23",
"kotharisanjana/HackForHumanity_SafeSpace": "https://github.com/kotharisanjana/HackForHumanity_SafeSpace",
"arncv/BusinessShip": "https://github.com/arncv/BusinessShip",
"LaZeAsh/TuneTurn": "https://github.com/LaZeAsh/TuneTurn",
"HannahGhassabyte/HeartMonics": "https://github.com/HannahGhassabyte/HeartMonics",
"crasgaitis/TreeHacks-23-deployment": "https://github.com/crasgaitis/TreeHacks-23-deployment",
"akshitagupta15june/Keep-Calm-and-Carry-On.github.io": "https://github.com/akshitagupta15june/Keep-Calm-and-Carry-On.github.io",
"santacodes/carbonfootprint": "https://github.com/santacodes/carbonfootprint",
"bhargavap21/incomegenie": "https://github.com/bhargavap21/incomegenie",
"chloecookie/citygo": "https://github.com/chloecookie/citygo",
"HenokB/Grafo": "https://github.com/HenokB/Grafo",
"souceira/wildfirewatch": "https://github.com/souceira/wildfirewatch",
"onlyAvinash": "https://github.com/onlyAvinash",
"the-babylon-project/Thebabylonproject": "https://github.com/the-babylon-project/Thebabylonproject",
"mluci567/CalgaryHacks23": "https://github.com/mluci567/CalgaryHacks23",
"ArturoMezaCanales1/FinalSubmissionFH.git": "https://github.com/ArturoMezaCanales1/FinalSubmissionFH.git",
"aashiyaaaa/hackhersProject": "https://github.com/aashiyaaaa/hackhersProject",
"Richan13/Scan-go": "https://github.com/Richan13/Scan-go",
"HTOWN-WeHack2023/ToyotaChallenge": "https://github.com/HTOWN-WeHack2023/ToyotaChallenge",
"Sanatan-Shrivastava/sitation": "https://github.com/Sanatan-Shrivastava/sitation",
"priyasingh2111/CBRE-Challenge": "https://github.com/priyasingh2111/CBRE-Challenge",
"Xhrya/hack-hers": "https://github.com/Xhrya/hack-hers/tree/main/src",
"MatthewFreestone/hackathon2023": "https://github.com/MatthewFreestone/hackathon2023",
"km776/frogspawn": "https://github.com/km776/frogspawn",
"https:/": "https://go.deta.dev/deploy?repo=https://github.com/Duplexes/Thehacktrical",
"zubsyeda/WEHack.git": "https://github.com/zubsyeda/WEHack.git",
"Kristom123/mySTEMadventure": "https://github.com/Kristom123/mySTEMadventure",
"YuChing1204/WeHack_web.git": "https://github.com/YuChing1204/WeHack_web.git",
"vvyn/escapade": "https://github.com/vvyn/escapade",
"hampster2018/WEHack-2023": "https://github.com/hampster2018/WEHack-2023",
"MemoryMate": "https://github.com/MemoryMate",
"Feedback-Learning": "https://github.com/Feedback-Learning",
"sxxxi/Hackathon2023Frontend": "https://github.com/sxxxi/Hackathon2023Frontend",
"ragingrahul/ThirdWeb": "https://github.com/ragingrahul/ThirdWeb",
"MichaelCSI/Skin-Cancer-Risk-Calculator": "https://github.com/MichaelCSI/Skin-Cancer-Risk-Calculator",
"xman343/OwlHack2023CB": "https://github.com/xman343/OwlHack2023CB",
"GCham5/ShopSmart": "https://github.com/GCham5/ShopSmart",
"Bhim-Rao/Volntr": "https://github.com/Bhim-Rao/Volntr",
"M-Phuykong/OwlHack2023": "https://github.com/M-Phuykong/OwlHack2023",
"Littlesk/sparespace": "https://github.com/Littlesk/sparespace",
"WilliamUW/Medifill": "https://github.com/WilliamUW/Medifill",
"itsmegarvi/Positive_Pulse": "https://github.com/itsmegarvi/Positive_Pulse",
"harismalik-1/SmapleRepo": "https://github.com/harismalik-1/SmapleRepo",
"ASingh2320/StudyBuddy": "https://github.com/ASingh2320/StudyBuddy/tree/main",
"Care-Scan": "https://github.com/Care-Scan",
"erwade804/Hackathon-2023.git": "https://github.com/erwade804/Hackathon-2023.git",
"DomBinks/ghost-hunt": "https://github.com/DomBinks/ghost-hunt",
"7coil/3dcraft": "https://github.com/7coil/3dcraft",
"hansikasundaresan/StemTrack": "https://github.com/hansikasundaresan/StemTrack/tree/main",
"NathanDuggal/Hacklytics": "https://github.com/NathanDuggal/Hacklytics",
"CamJ43737/TropicalTUtigers.github.io": "https://github.com/CamJ43737/TropicalTUtigers.github.io",
"Fraetor/puppeteer": "https://github.com/Fraetor/puppeteer",
"bradshawlily/YeOldeCredit.git": "https://github.com/bradshawlily/YeOldeCredit.git",
"alyssamui/WiseWallet": "https://github.com/alyssamui/WiseWallet",
"edisonqu/AccessAI": "https://github.com/edisonqu/AccessAI",
"FrogRats/XORcist": "https://github.com/FrogRats/XORcist",
"NVlabs/instant-ngp": "https://github.com/NVlabs/instant-ngp",
"Neilblaze/Hacklytics2023": "https://github.com/Neilblaze/Hacklytics2023",
"A1uvi/trashify": "https://github.com/A1uvi/trashify",
"cLLiMate/cLLiMate": "https://github.com/cLLiMate/cLLiMate",
"JoshuaRheee/ArcTan-ks-.git": "https://github.com/JoshuaRheee/ArcTan-ks-.git",
"davi-maciel/BadHacks-2023": "https://github.com/davi-maciel/BadHacks-2023",
"ElysiaLopez/pebble-app": "https://github.com/ElysiaLopez/pebble-app",
"alfenn/badhacks-2023": "https://github.com/alfenn/badhacks-2023",
"X-Ry/BadHacks2023": "https://github.com/X-Ry/BadHacks2023",
"LFLATH/HackalyticsGT": "https://github.com/LFLATH/HackalyticsGT",
"Krish31415/LancerHacks2023": "https://github.com/Krish31415/LancerHacks2023",
"AnshBhatti/rosterMD": "https://github.com/AnshBhatti/rosterMD",
"thearyanmittal/formulytics": "https://github.com/thearyanmittal/formulytics",
"frankg0485/carecost": "https://github.com/frankg0485/carecost",
"nikbot05/youbetheteacher": "https://github.com/nikbot05/youbetheteacher",
"ShmulTomer/River-Pollution-Satellite-Detection-Warning-System": "https://github.com/ShmulTomer/River-Pollution-Satellite-Detection-Warning-System",
"opalwings2001/StockSentimentAnalysis": "https://github.com/opalwings2001/StockSentimentAnalysis",
"michaelwaves/Tailor": "https://github.com/michaelwaves/Tailor",
"DerekS04/NonProfitSeeker": "https://github.com/DerekS04/NonProfitSeeker",
"sylvieed/ColourfulCounseling": "https://github.com/sylvieed/ColourfulCounseling",
"Aurunima/Mecoo": "https://github.com/Aurunima/Mecoo",
"iarolls/Hackathon": "https://github.com/iarolls/Hackathon/tree/main",
"prachikane/wehack_vswap": "https://github.com/prachikane/wehack_vswap",
"meghansun322/PearlHacks23": "https://github.com/meghansun322/PearlHacks23",
"jadekeegan/kiwi": "https://github.com/jadekeegan/kiwi",
"Olunusib/tropics": "https://github.com/Olunusib/tropics",
"shubhlohiya/axiscare": "https://github.com/shubhlohiya/axiscare",
"PilotPrix/UOttaHacks": "https://github.com/PilotPrix/UOttaHacks",
"TeamLeen/Filerize": "https://github.com/TeamLeen/Filerize",
"sgoyal5/pearl-hacks-2023": "https://github.com/sgoyal5/pearl-hacks-2023",
"megans237/megans237.github.io": "https://github.com/megans237/megans237.github.io",
"coding-unicorn/Voluntr": "https://github.com/coding-unicorn/Voluntr",
"mokuda2/hacklytics": "https://github.com/mokuda2/hacklytics",
"jacque1ine/Hackville": "https://github.com/jacque1ine/Hackville",
"MoroccanGemsbok/ReviewRecap": "https://github.com/MoroccanGemsbok/ReviewRecap",
"tjmontoya/AudioReality": "https://github.com/tjmontoya/AudioReality",
"sahana3131/developer-week_backend": "https://github.com/sahana3131/developer-week_backend",
"MiChaelinzo/Neon-Metropolis": "https://github.com/MiChaelinzo/Neon-Metropolis",
"Subjective/pushup-counter-py": "https://github.com/Subjective/pushup-counter-py",
"Yeehahn/Recipe-Finder": "https://github.com/Yeehahn/Recipe-Finder",
"Kitkatnik/ks-MealMind": "https://github.com/Kitkatnik/ks-MealMind",
"anthony-zhou/charizzma": "https://github.com/anthony-zhou/charizzma",
"akaforey/glucose-analysis": "https://github.com/akaforey/glucose-analysis",
"tparangelo/routeplanner": "https://github.com/tparangelo/routeplanner",
"Mandy-cyber/The-STEM": "https://github.com/Mandy-cyber/The-STEM",
"BU-KaveyZheng/HackBU-Hackathon-2023": "https://github.com/BU-KaveyZheng/HackBU-Hackathon-2023/tree/main/Flashcards/Flashcards",
"ConnorDelacruz14/zot-alarm": "https://github.com/ConnorDelacruz14/zot-alarm",
"XieJesse/JAKE": "https://github.com/XieJesse/JAKE",
"brianmatzelle/LendaHand": "https://github.com/brianmatzelle/LendaHand",
"Sabina29/Black-Wings-Hacks-2023": "https://github.com/Sabina29/Black-Wings-Hacks-2023",
"jessmoody/black-business-hub": "https://github.com/jessmoody/black-business-hub",
"TWILIGHTCLOUDCODERZ/Black-Wings-Hacks-2023.git": "https://github.com/TWILIGHTCLOUDCODERZ/Black-Wings-Hacks-2023.git",
"bsaavedrabo/ChromeExtension-main": "https://github.com/bsaavedrabo/ChromeExtension-main",
"PoPsMokE07/Florafauna": "https://github.com/PoPsMokE07/Florafauna/tree/master",
"kristenw9/chromatic.git": "https://github.com/kristenw9/chromatic.git",
"DevLuisLopez/Intelestellar-Travel-Agency-Relax": "https://github.com/DevLuisLopez/Intelestellar-Travel-Agency-Relax",
"MichaelMasakayan/UCI_Hackathon": "https://github.com/MichaelMasakayan/UCI_Hackathon",
"ke-yan/McWiCS2023": "https://github.com/ke-yan/McWiCS2023",
"ad3707/CarbonTrackerHackathon": "https://github.com/ad3707/CarbonTrackerHackathon/tree/app",
"Rituraj003/violetHacks23": "https://github.com/Rituraj003/violetHacks23",
"ADAMCLEMENTS20/Hackathon2": "https://github.com/ADAMCLEMENTS20/Hackathon2",
"meriemgfl/food-connections": "https://github.com/meriemgfl/food-connections",
"sophiiehan/UCSC-auction-website": "https://github.com/sophiiehan/UCSC-auction-website",
"ashleendaly/galactos": "https://github.com/ashleendaly/galactos",
"2mnguyen1/HackUCI-HaveFun": "https://github.com/2mnguyen1/HackUCI-HaveFun",
"jacobartis/Hack23-GoFish": "https://github.com/jacobartis/Hack23-GoFish",
"neel-banga/Cruz-Hacks-DrinkWise": "https://github.com/neel-banga/Cruz-Hacks-DrinkWise",
"MitalAshok/kaching-karaoke": "https://github.com/MitalAshok/kaching-karaoke",
"imabhi241/fallenleaf.github.io": "https://github.com/imabhi241/fallenleaf.github.io",
"prasia/Fly-for-the-Future": "https://github.com/prasia/Fly-for-the-Future",
"notrandomath/hack-at-uci-2023": "https://github.com/notrandomath/hack-at-uci-2023",
"richard1615/auto_grade": "https://github.com/richard1615/auto_grade",
"bshaan77/CruzHacks": "https://github.com/bshaan77/CruzHacks",
"edosedgar/HackBU2023": "https://github.com/edosedgar/HackBU2023",
"SkinQuest/SkinDeep": "https://github.com/SkinQuest/SkinDeep",
"AceyAdapter/watchdog3": "https://github.com/AceyAdapter/watchdog3",
"TheMagicApple/CarComparison": "https://github.com/TheMagicApple/CarComparison",
"terrytwk/hacksc23-netchill": "https://github.com/terrytwk/hacksc23-netchill",
"jcook233/paradise-app": "https://github.com/jcook233/paradise-app",
"mrfleap/hackuci-2023": "https://github.com/mrfleap/hackuci-2023",
"awelawi/IBEABlackWings23": "https://github.com/awelawi/IBEABlackWings23",
"prachi237/hack-ccelerate": "https://github.com/prachi237/hack-ccelerate",
"nathanngabc/ZotHubAPI": "https://github.com/nathanngabc/ZotHubAPI",
"edisonqu/foundAIr": "https://github.com/edisonqu/foundAIr",
"cecilee8/CruzHacks23": "https://github.com/cecilee8/CruzHacks23",
"sophiapeckner/the_ev_game": "https://github.com/sophiapeckner/the_ev_game",
"TasnubaSukanna/BlackWingsHacks": "https://github.com/TasnubaSukanna/BlackWingsHacks/blob/main/NewVSCode.zip",
"yashmitb/GestAR_MLbackend": "https://github.com/yashmitb/GestAR_MLbackend",
"Coreyboy1820/Smart-Clamp": "https://github.com/Coreyboy1820/Smart-Clamp",
"aintic/RoadBuddy_HackMcWiCS": "https://github.com/aintic/RoadBuddy_HackMcWiCS",
"Soham231/DreamHaven": "https://github.com/Soham231/DreamHaven",
"mustafaajmal/mustafaajmal.github.io": "https://github.com/mustafaajmal/mustafaajmal.github.io",
"CodeReaper-10/hack-ccelerate": "https://github.com/CodeReaper-10/hack-ccelerate",
"Seanathan10/CruzHacks2023": "https://github.com/Seanathan10/CruzHacks2023",
"parnapraveen/CruzHacks": "https://github.com/parnapraveen/CruzHacks",
"sun-jay/openrx-main-public": "https://github.com/sun-jay/openrx-main-public",
"Noellikecode/ChatterBot": "https://github.com/Noellikecode/ChatterBot",
"MalihaT111/MalihaT111.github.io": "https://github.com/MalihaT111/MalihaT111.github.io",
"Aldicodi/Cruzhacks-2023-TrashGo": "https://github.com/Aldicodi/Cruzhacks-2023-TrashGo",
"Ashutosh-upadhya/scanEL-Master": "https://github.com/Ashutosh-upadhya/scanEL-Master",
"ShubhamPatel2305/Chain-Chat": "https://github.com/ShubhamPatel2305/Chain-Chat",
"IdkwhatImD0ing/SlugLoop": "https://github.com/IdkwhatImD0ing/SlugLoop",
"om3rbarash/DeisHacks2023": "https://github.com/om3rbarash/DeisHacks2023",
"JaidedAI/EasyOCR": "https://github.com/JaidedAI/EasyOCR",
"Ankur-0429/cruzhacks2023": "https://github.com/Ankur-0429/cruzhacks2023",
"Danierzn/machacks3.0": "https://github.com/Danierzn/machacks3.0",
"Sgandhi10/Hackviolet-2023": "https://github.com/Sgandhi10/Hackviolet-2023",
"Res1StAnce7/hack-map": "https://github.com/Res1StAnce7/hack-map",
"DaryoushShah/esapet": "https://github.com/DaryoushShah/esapet",
"SanjanaB123/Yoga-Pose-Detection-using-AI": "https://github.com/SanjanaB123/Yoga-Pose-Detection-using-AI",
"deepakgohil9/iot_assistive_hardware": "https://github.com/deepakgohil9/iot_assistive_hardware",
"iSundhararajan/MyAlly---Black-Wings-Hack-23": "https://github.com/iSundhararajan/MyAlly---Black-Wings-Hack-23",
"urmaliyadivyanshu31/Web3--Crowdfunding": "https://github.com/urmaliyadivyanshu31/Web3--Crowdfunding",
"tirth5828/Papita-POI": "https://github.com/tirth5828/Papita-POI",
"Tanya2303/Black-Wings-Hacks-2023": "https://github.com/Tanya2303/Black-Wings-Hacks-2023",
"ax-studios/percive": "https://github.com/ax-studios/percive/issues",
"kartikmehta8/v-sakriya": "https://github.com/kartikmehta8/v-sakriya",
"ananas2109/Hackathon2023": "https://github.com/ananas2109/Hackathon2023/tree/main",
"": "https://github.com/",
"AmanNegi/co-ride": "https://github.com/AmanNegi/co-ride",
"anamansari062/htf-hackathon": "https://github.com/anamansari062/htf-hackathon",
"neel-ds/provenance": "https://github.com/neel-ds/provenance",
"bel-ze/DigitalDiva.tech": "https://github.com/bel-ze/DigitalDiva.tech",
"shxb7/superlearn": "https://github.com/shxb7/superlearn",
"shahkushal38/secure-patrons-frontend.git": "https://github.com/shahkushal38/secure-patrons-frontend.git",
"Soham-Chakraborty-8455/GeekyBuild": "https://github.com/Soham-Chakraborty-8455/GeekyBuild",
"Sduttt/go-wheelio": "https://github.com/Sduttt/go-wheelio",
"ImMattDavison/goodgrub": "https://github.com/ImMattDavison/goodgrub",
"TheCaffeinatedCoders/Resume-Wizard": "https://github.com/TheCaffeinatedCoders/Resume-Wizard/tree/main",
"Huuuuuge/synk": "https://github.com/Huuuuuge/synk",
"seancfong/irvinesweeper": "https://github.com/seancfong/irvinesweeper",
"juliusya45/Zot-List": "https://github.com/juliusya45/Zot-List",
"Mehul-Kumar-27/caravan": "https://github.com/Mehul-Kumar-27/caravan",
"margueriteandreca/GalaxiaGetaways": "https://github.com/margueriteandreca/GalaxiaGetaways",
"aidanfroggatt/snapcycle": "https://github.com/aidanfroggatt/snapcycle",
"rymarktron/tech-help": "https://github.com/rymarktron/tech-help",
"24ERIC/Watch-Your-Mouth": "https://github.com/24ERIC/Watch-Your-Mouth",
"CSSTransitioned/dbassembly-website": "https://github.com/CSSTransitioned/dbassembly-website",
"SayantaniDeb/Travellwithus": "https://github.com/SayantaniDeb/Travellwithus",
"ArthSrivastava/Car-Rental": "https://github.com/ArthSrivastava/Car-Rental",
"kitai-hazure/relay-backend": "https://github.com/kitai-hazure/relay-backend",
"MukulKolpe/Techv3nt": "https://github.com/MukulKolpe/Techv3nt",
"utsavdas10/Khetiwari": "https://github.com/utsavdas10/Khetiwari",
"raihankhan-rk/Ed360": "https://github.com/raihankhan-rk/Ed360",
"bgarcia7/aiteacherassistant": "https://github.com/bgarcia7/aiteacherassistant",
"EarthMMO/miamihackweek": "https://github.com/EarthMMO/miamihackweek",
"ManishR10/cryptographic_farming": "https://github.com/ManishR10/cryptographic_farming",
"pedrocruzio/SnapBot": "https://github.com/pedrocruzio/SnapBot",
"zeroresponder/": "https://github.com/zeroresponder/",
"natalioleinik/unitYT": "https://github.com/natalioleinik/unitYT",
"johan456789/gather": "https://github.com/johan456789/gather",
"wfranzen/BedtimeStory": "https://github.com/wfranzen/BedtimeStory",
"blacepos-meapster3-spartahack/spartahack-chrome-extension": "https://github.com/blacepos-meapster3-spartahack/spartahack-chrome-extension",
"fazenrazen/BusTracker": "https://github.com/fazenrazen/BusTracker",
"watkinshannah05/BakerRipleyVoterAnalysis": "https://github.com/watkinshannah05/BakerRipleyVoterAnalysis",
"Johnx69/SpartanHacker8": "https://github.com/Johnx69/SpartanHacker8",
"exing1/split-it": "https://github.com/exing1/split-it",
"rcookie777/LambdaProtocol": "https://github.com/rcookie777/LambdaProtocol",
"utemel02/tv2": "https://github.com/utemel02/tv2",
"Cadek2002/Wravel": "https://github.com/Cadek2002/Wravel",
"lkjhgfdsa99A/SPARTAHACK8PROJ.git": "https://github.com/lkjhgfdsa99A/SPARTAHACK8PROJ.git",
"unapt/JerryAI": "https://github.com/unapt/JerryAI",
"89JBWebb/NPM-with-Liar": "https://github.com/89JBWebb/NPM-with-Liar",
"chilaxan/Steno": "https://github.com/chilaxan/Steno",
"Bushbaker27/green-grid": "https://github.com/Bushbaker27/green-grid",
"DevelopmentGaggle/Chatmate": "https://github.com/DevelopmentGaggle/Chatmate",
"singhn13/SpartaHack2023": "https://github.com/singhn13/SpartaHack2023",
"ruiyangl/NaviGator": "https://github.com/ruiyangl/NaviGator",
"cetoia/HackBi.git": "https://github.com/cetoia/HackBi.git",
"WMUStudent21/VIRID_": "https://github.com/WMUStudent21/VIRID_",
"plamorg/gitreal": "https://github.com/plamorg/gitreal",
"Jeffrey-Schwartz/HoyaHacks2023": "https://github.com/Jeffrey-Schwartz/HoyaHacks2023",
"snehal0308/farmzy-01": "https://github.com/snehal0308/farmzy-01",
"kevin1015wang/Brainwaves": "https://github.com/kevin1015wang/Brainwaves",
"diivi/pointx": "https://github.com/diivi/pointx",
"Tanya2303/Hack-commerce": "https://github.com/Tanya2303/Hack-commerce",
"prachi237/Farmito": "https://github.com/prachi237/Farmito",
"Yabesra/HackBVI": "https://github.com/Yabesra/HackBVI",
"2nina2/Maze-Solver": "https://github.com/2nina2/Maze-Solver",
"cyu60/hoya": "https://github.com/cyu60/hoya",
"chandinipalem/SwampHacks2023": "https://github.com/chandinipalem/SwampHacks2023",
"Godsheritage/PocketPal-App": "https://github.com/Godsheritage/PocketPal-App",
"SakshiShah29/Hack-Commerce": "https://github.com/SakshiShah29/Hack-Commerce",
"drom/fourier": "https://github.com/drom/fourier",
"ReeveFernandes/City-Buddy": "https://github.com/ReeveFernandes/City-Buddy",
"Nitvr/Datathon_2023": "https://github.com/Nitvr/Datathon_2023",
"IdkwhatImD0ing/PaddyPlantPrognosis": "https://github.com/IdkwhatImD0ing/PaddyPlantPrognosis/blob/main/modelv2.ipynb",
"C0oper/Spartahack8-Bike-Safety-Submission.git": "https://github.com/C0oper/Spartahack8-Bike-Safety-Submission.git",
"Ayon-Bhowmick/Hackrithmitic2.git": "https://github.com/Ayon-Bhowmick/Hackrithmitic2.git",
"Hashir103/recycle-food": "https://github.com/Hashir103/recycle-food",
"Flambrew/HACKBIVI": "https://github.com/Flambrew/HACKBIVI",
"c-mckinney/rice-datathon-2023": "https://github.com/c-mckinney/rice-datathon-2023",
"lentar-20/rinseandreciept": "https://github.com/lentar-20/rinseandreciept",
"arael34/spartahack8": "https://github.com/arael34/spartahack8",
"AlexMarinkovich/QHacks": "https://github.com/AlexMarinkovich/QHacks",
"seepiii/PeriodPower.": "https://github.com/seepiii/PeriodPower.",
"yummyflan/AKTV.git": "https://github.com/yummyflan/AKTV.git",
"ethneystewart/QHacks_2023": "https://github.com/ethneystewart/QHacks_2023/blob/main/main.py",
"TasinKazi/Hoyahacks": "https://github.com/TasinKazi/Hoyahacks",
"gh4abhi/": "https://github.com/gh4abhi/",
"Gaurang-1402/smarchitect": "https://github.com/Gaurang-1402/smarchitect",
"shanepat/RiseUp": "https://github.com/shanepat/RiseUp",
"Vincent-Lin-UF/Blue-Note": "https://github.com/Vincent-Lin-UF/Blue-Note",
"pransh04/SpartaHack08": "https://github.com/pransh04/SpartaHack08",
"rensaketh/HoyaHacks": "https://github.com/rensaketh/HoyaHacks",
"JackLee9355/Polinder": "https://github.com/JackLee9355/Polinder",
"cnRachel/hot-math-games": "https://github.com/cnRachel/hot-math-games",
"userName4313/main": "https://github.com/userName4313/main",
"aqib-m31/Mind-Reading-BGG": "https://github.com/aqib-m31/Mind-Reading-BGG",
"AjayGanesh02/TaskTango": "https://github.com/AjayGanesh02/TaskTango",
"ZichengXu/Chevron-Datathon-Project.git": "https://github.com/ZichengXu/Chevron-Datathon-Project.git",
"kushalk173-sc/ClassHunt": "https://github.com/kushalk173-sc/ClassHunt",
"AmanNegi/local_vendor_app": "https://github.com/AmanNegi/local_vendor_app",
"JeffreyDinackus/HoyaHacks-2023-AllITStudents.tech-Team-404-found": "https://github.com/JeffreyDinackus/HoyaHacks-2023-AllITStudents.tech-Team-404-found",
"WebDeke/HoyaDaHack": "https://github.com/WebDeke/HoyaDaHack",
"Sanbroh/QHacks2023": "https://github.com/Sanbroh/QHacks2023",
"alisonqiu/-Fueling-Clean-Initiatives": "https://github.com/alisonqiu/-Fueling-Clean-Initiatives/blob/main/submission%20file.xlsx",
"asingh125/counteroffer": "https://github.com/asingh125/counteroffer",
"Levrk/SoundWaves": "https://github.com/Levrk/SoundWaves",
"WL033/Math-it-Out": "https://github.com/WL033/Math-it-Out",
"gauriket/Hack-Commerce.git": "https://github.com/gauriket/Hack-Commerce.git",
"LenaWang03/NW-Hacks-2023": "https://github.com/LenaWang03/NW-Hacks-2023",
"cool-walruses/nwhacks2023-frontend": "https://github.com/cool-walruses/nwhacks2023-frontend",
"RamitKataria/food-share": "https://github.com/RamitKataria/food-share",
"jn-han/NWHacks2023": "https://github.com/jn-han/NWHacks2023",
"n4ze3m/habit-pilot": "https://github.com/n4ze3m/habit-pilot",
"bennypc/nwHacks-2023": "https://github.com/bennypc/nwHacks-2023",
"suuelee/stride": "https://github.com/suuelee/stride",
"skyleapa/nwHacks2023": "https://github.com/skyleapa/nwHacks2023",
"AbdallahSaid01/ConUHacks-2023": "https://github.com/AbdallahSaid01/ConUHacks-2023",
"jessy413/ideahack-growth": "https://github.com/jessy413/ideahack-growth",
"mostuselessboy/slidescraft": "https://github.com/mostuselessboy/slidescraft",
"imericwilliams/resumer": "https://github.com/imericwilliams/resumer",
"zefengw/conuhacks-2023": "https://github.com/zefengw/conuhacks-2023",
"khandelwala812/OhDeereFarms": "https://github.com/khandelwala812/OhDeereFarms",
"0Armaan025/eyefit": "https://github.com/0Armaan025/eyefit",
"kckang1103/LectureProcessing": "https://github.com/kckang1103/LectureProcessing",
"Susmita-Dey/Swasthi": "https://github.com/Susmita-Dey/Swasthi",
"robert2343/MCWeatherIRL": "https://github.com/robert2343/MCWeatherIRL",
"Shivam164/Better-me": "https://github.com/Shivam164/Better-me",
"Zainab-Fahim/Apptive": "https://github.com/Zainab-Fahim/Apptive",
"stanleyylin/Miso": "https://github.com/stanleyylin/Miso",
"VedhasWalke/hostr.git": "https://github.com/VedhasWalke/hostr.git",
"0xMihir/Cryptum": "https://github.com/0xMihir/Cryptum",
"JayZhouzzj/beats": "https://github.com/JayZhouzzj/beats",
"ShirazSevadjian/ConuHacks": "https://github.com/ShirazSevadjian/ConuHacks/blob/main/screenshots/logic-diagram.png",
"brettyang003/Rescue-Ranger": "https://github.com/brettyang003/Rescue-Ranger",
"halitdincer/HRBot": "https://github.com/halitdincer/HRBot",
"mohsen-ameli/uofthacks-x": "https://github.com/mohsen-ameli/uofthacks-x",
"mazadegan/conuhacks_sunlife": "https://github.com/mazadegan/conuhacks_sunlife",
"jamieRollison/ligo": "https://github.com/jamieRollison/ligo",
"knightron0/insight": "https://github.com/knightron0/insight",
"dwijenchawra/notewrthy": "https://github.com/dwijenchawra/notewrthy",
"conuhacks7/MeLody": "https://github.com/conuhacks7/MeLody",
"dejmedus/volunteer-vision": "https://github.com/dejmedus/volunteer-vision",
"GauravRanganath/Sanctuary": "https://github.com/GauravRanganath/Sanctuary",
"jordanlipson/uofthack-project": "https://github.com/jordanlipson/uofthack-project",
"anaybhutoria/CivicHackProject": "https://github.com/anaybhutoria/CivicHackProject",
"michaelZhaoCode/uTalk": "https://github.com/michaelZhaoCode/uTalk",
"rachelchxn/uofthacksx": "https://github.com/rachelchxn/uofthacksx",
"Santhoshkumard11/SecureFlow": "https://github.com/Santhoshkumard11/SecureFlow",
"Kevin-Mok/astronofty": "https://github.com/Kevin-Mok/astronofty",
"AdamDIOM/MemeTexts": "https://github.com/AdamDIOM/MemeTexts",
"youssefsoli/IPFE": "https://github.com/youssefsoli/IPFE",
"kdaanish866/HumanRightsApp": "https://github.com/kdaanish866/HumanRightsApp",
"arncv/PowerNap": "https://github.com/arncv/PowerNap",
"ashmitahaldar/psnhackathon": "https://github.com/ashmitahaldar/psnhackathon",
"trinetra-deltathon": "https://github.com/trinetra-deltathon",
"orgs/BeeWell-Delta": "https://github.com/orgs/BeeWell-Delta/repositories",
"migcien/Starfall_Galaxy": "https://github.com/migcien/Starfall_Galaxy",
"BabylonJS/Babylon.js": "https://github.com/BabylonJS/Babylon.js",
"Dev317/TRE-Pandassurance.git": "https://github.com/Dev317/TRE-Pandassurance.git",
"ZixunHuang1997/RealityHACK_SnapdragonAR.git": "https://github.com/ZixunHuang1997/RealityHACK_SnapdragonAR.git",
"Reality-Hack-2023/ARChi": "https://github.com/Reality-Hack-2023/ARChi",
"krispatl/Memento-Reality-Hack-23": "https://github.com/krispatl/Memento-Reality-Hack-23/tree/main/MementoMori",
"code-matt/MITRH_2023": "https://github.com/code-matt/MITRH_2023",
"Reality-Hack-2023/REPO-054": "https://github.com/Reality-Hack-2023/REPO-054",
"Reality-Hack-2023/REPO-068": "https://github.com/Reality-Hack-2023/REPO-068",
"Reality-Hack-2023/StoneSoup": "https://github.com/Reality-Hack-2023/StoneSoup/releases/tag/v0.0.1-alpha",
"rosedalerk/REPO-007-fork": "https://github.com/rosedalerk/REPO-007-fork",
"Reality-Hack-2023/REPO-032": "https://github.com/Reality-Hack-2023/REPO-032",
"Reality-Hack-2023/REPO-017": "https://github.com/Reality-Hack-2023/REPO-017",
"Reality-Hack-2023/REPO-065": "https://github.com/Reality-Hack-2023/REPO-065",
"b3aribeiro/RH_HT_23": "https://github.com/b3aribeiro/RH_HT_23",
"Reality-Hack-2023/jARvis": "https://github.com/Reality-Hack-2023/jARvis",
"FreebirdRealityHacks/FreebirdEditor": "https://github.com/FreebirdRealityHacks/FreebirdEditor",
"SCP650/Vrlingo-New": "https://github.com/SCP650/Vrlingo-New",
"Reality-Hack-2023/REPO-002": "https://github.com/Reality-Hack-2023/REPO-002",
"Reality-Hack-2023/REPO-030": "https://github.com/Reality-Hack-2023/REPO-030",
"Aditya-Tripuraneni/Delta-Hacks": "https://github.com/Aditya-Tripuraneni/Delta-Hacks",
"Reality-Hack-2023/REPO-025": "https://github.com/Reality-Hack-2023/REPO-025",
"richardl2003/happy_recyclemore": "https://github.com/richardl2003/happy_recyclemore",
"LaeekAhmed/Green-Cart": "https://github.com/LaeekAhmed/Green-Cart/tree/master/Downloads/web_dev/Khana-master",
"ConfiCrystal/Deltahacks-9": "https://github.com/ConfiCrystal/Deltahacks-9",
"farita1699/TimeToken": "https://github.com/farita1699/TimeToken",
"JackyL1u/Dream.ai": "https://github.com/JackyL1u/Dream.ai",
"siddhigate/roadmap-runner": "https://github.com/siddhigate/roadmap-runner/",
"BaoGeist/Drugz": "https://github.com/BaoGeist/Drugz",
"Bobkong/Google-ARound": "https://github.com/Bobkong/Google-ARound",
"ypatel2022/study-spot": "https://github.com/ypatel2022/study-spot",
"ashley-ferreira/SheHacks_7": "https://github.com/ashley-ferreira/SheHacks_7",
"hesihui/GreeneryMiles": "https://github.com/hesihui/GreeneryMiles",
"shruthisundar123/blossom.me": "https://github.com/shruthisundar123/blossom.me",
"g-tejas/Changuage": "https://github.com/g-tejas/Changuage",
"athenaleong/wifi": "https://github.com/athenaleong/wifi",
"mariagarcia466/Interview-Sim": "https://github.com/mariagarcia466/Interview-Sim",
"nus-sentiment/nus-sentiment": "https://github.com/nus-sentiment/nus-sentiment",
"HacknRoll2023/SpyXPenguin": "https://github.com/HacknRoll2023/SpyXPenguin",
"darren4141/DeltaHacks9": "https://github.com/darren4141/DeltaHacks9",
"UnloadingGnat/Chari3": "https://github.com/UnloadingGnat/Chari3",
"JStephenHuang/brebeuf-hackathon-2023.git": "https://github.com/JStephenHuang/brebeuf-hackathon-2023.git",
"Freakboy123/bookmatch-client": "https://github.com/Freakboy123/bookmatch-client",
"DeltaHacks-WebOfLife": "https://github.com/DeltaHacks-WebOfLife",
"simon-kowerski/RangSecurity": "https://github.com/simon-kowerski/RangSecurity",
"Xeretis/QrTagger": "https://github.com/Xeretis/QrTagger",
"rachelxia9/aritizia-hackathon": "https://github.com/rachelxia9/aritizia-hackathon",
"HaoChiBao/Flash-Card-Game": "https://github.com/HaoChiBao/Flash-Card-Game",
"charlezs/journeyGenie": "https://github.com/charlezs/journeyGenie",
"JennyHo5/cover-letter-generator.git": "https://github.com/JennyHo5/cover-letter-generator.git",
"wamikamalik/HacknRoll2023_TeamSlapSlap": "https://github.com/wamikamalik/HacknRoll2023_TeamSlapSlap",
"Kelsey379/Code-Warriors-DeltaHacks-9": "https://github.com/Kelsey379/Code-Warriors-DeltaHacks-9",
"BBachleda55/MedicalDatabase.git": "https://github.com/BBachleda55/MedicalDatabase.git",
"KaiTheRedNinja/decisionMaker": "https://github.com/KaiTheRedNinja/decisionMaker",
"tylerwolf35/henrihelps": "https://github.com/tylerwolf35/henrihelps",
"cheranlee/dont_press_my_buttons": "https://github.com/cheranlee/dont_press_my_buttons",
"koshtid/DH9": "https://github.com/koshtid/DH9",
"nikkiguo/deltahacks": "https://github.com/nikkiguo/deltahacks",
"8kdesign/Tybbit": "https://github.com/8kdesign/Tybbit/releases/tag/UnofficialReleaseV1.0.1",
"Supernova-45/scispire": "https://github.com/Supernova-45/scispire",
"mynamegabe/GPTutor": "https://github.com/mynamegabe/GPTutor",
"Ranchu2000/HacknRoll23": "https://github.com/Ranchu2000/HacknRoll23",
"zopagaduanjr/rundom": "https://github.com/zopagaduanjr/rundom",
"rachelchxn/shehacks.git": "https://github.com/rachelchxn/shehacks.git",
"faizahsayyid/shehacks2023": "https://github.com/faizahsayyid/shehacks2023",
"Markeljan/jira-rpg": "https://github.com/Markeljan/jira-rpg",
"hmeaney/GirlCode-Hackathon": "https://github.com/hmeaney/GirlCode-Hackathon",
"halftonenano/Hackathon_gitinit": "https://github.com/halftonenano/Hackathon_gitinit",
"ZacharyFurmanov/SchoolNewsNetwork": "https://github.com/ZacharyFurmanov/SchoolNewsNetwork",
"BreeDay/VideoCart": "https://github.com/BreeDay/VideoCart",
"Hackathon-Hacked2023/DivineInspiration": "https://github.com/Hackathon-Hacked2023/DivineInspiration",
"Delicious-Devs/dish-detective": "https://github.com/Delicious-Devs/dish-detective",
"Gaurang-1402/EDwiz": "https://github.com/Gaurang-1402/EDwiz",
"first20hours/google-10000-english": "https://github.com/first20hours/google-10000-english/blob/master/google-10000-english-usa-no-swears-medium.txt",
"sheryew/FlexiPay": "https://github.com/sheryew/FlexiPay",
"johnmwilburn/Servus-Call-To-Action-JuntoHacks-": "https://github.com/johnmwilburn/Servus-Call-To-Action-JuntoHacks-",
"andyjianzhou/SafetyVision-SlightlyProfessional-": "https://github.com/andyjianzhou/SafetyVision-SlightlyProfessional-",
"vikasinspira/EPM": "https://github.com/vikasinspira/EPM",
"markov-holdings/ftm-hack": "https://github.com/markov-holdings/ftm-hack",
"tunahandanis/ar-music-sheets": "https://github.com/tunahandanis/ar-music-sheets",
"kaixiangtay/Startup-Valuation-with-Machine-Learning": "https://github.com/kaixiangtay/Startup-Valuation-with-Machine-Learning",
"KDW1/NuclearMapping": "https://github.com/KDW1/NuclearMapping",
"You-now-Who/Mindspire": "https://github.com/You-now-Who/Mindspire",
"Nishu0/ResoTrack": "https://github.com/Nishu0/ResoTrack",
"YatoAki/yours-resolution": "https://github.com/YatoAki/yours-resolution",
"beepmo/plotanicalgarden": "https://github.com/beepmo/plotanicalgarden",
"duckling69/Borrowandlendahand.git": "https://github.com/duckling69/Borrowandlendahand.git",
"lads-hackathon/meal-tracker-sylh2": "https://github.com/lads-hackathon/meal-tracker-sylh2",
"besophiayang/StableizeCode": "https://github.com/besophiayang/StableizeCode",
"TasinKazi/Hackulator-2": "https://github.com/TasinKazi/Hackulator-2",
"coder12git/PoweringSTEMHacks": "https://github.com/coder12git/PoweringSTEMHacks",
"Suven-p/collabworks": "https://github.com/Suven-p/collabworks",
"ryupold/examples-raylib.zig": "https://github.com/ryupold/examples-raylib.zig",
"Gaurish-Agrawal/MedScanApp": "https://github.com/Gaurish-Agrawal/MedScanApp",
"yeo-yiheng/xyfer": "https://github.com/yeo-yiheng/xyfer",
"YashveerSingh1062/khareedARi": "https://github.com/YashveerSingh1062/khareedARi",
"0Armaan025/Hackquest": "https://github.com/0Armaan025/Hackquest",
"Himanshu-370/Rockabuy": "https://github.com/Himanshu-370/Rockabuy",
"MrArthor/AlphaSolutions": "https://github.com/MrArthor/AlphaSolutions",
"fias786/SnoozeSafe": "https://github.com/fias786/SnoozeSafe",
"allistairhakim/PresentPicker": "https://github.com/allistairhakim/PresentPicker",
"polarvoid/orchid": "https://github.com/polarvoid/orchid",
"shirsho-12/soupS": "https://github.com/shirsho-12/soupS",
"PurviSaini/Design-a-thon": "https://github.com/PurviSaini/Design-a-thon",
"WomB0ComB0/Kaleido-Snow": "https://github.com/WomB0ComB0/Kaleido-Snow",
"Nishantjain10/VogueEco": "https://github.com/Nishantjain10/VogueEco",
"Aankirz/PregaX": "https://github.com/Aankirz/PregaX",
"yuanci89/ZappARathon_UmichNIR": "https://github.com/yuanci89/ZappARathon_UmichNIR",
"blopa/top-down-react-phaser-game-template": "https://github.com/blopa/top-down-react-phaser-game-template",
"pradel/defi-arkadiko-compound": "https://github.com/pradel/defi-arkadiko-compound",
"harshu4/XDUSD": "https://github.com/harshu4/XDUSD",
"ssd39/XDCFlow": "https://github.com/ssd39/XDCFlow",
"orgs/synergy-xdc": "https://github.com/orgs/synergy-xdc/repositories",
"Unfeel-art/Cave-Generator-Unity-project": "https://github.com/Unfeel-art/Cave-Generator-Unity-project",
"ankushKun/StreamHack.git": "https://github.com/ankushKun/StreamHack.git",
"jchanDev/AI_Visual_Novel": "https://github.com/jchanDev/AI_Visual_Novel",
"Joel323/bitsxlamarato": "https://github.com/Joel323/bitsxlamarato/tree/new",
"cuberhaus/bitsXlaMarato": "https://github.com/cuberhaus/bitsXlaMarato",
"krupalitrivedi/accesibility-score": "https://github.com/krupalitrivedi/accesibility-score",
"QuimTorra/BitsXMarato": "https://github.com/QuimTorra/BitsXMarato",
"shreya-v7/Theriac": "https://github.com/shreya-v7/Theriac",
"chalory/support-a-thon": "https://github.com/chalory/support-a-thon",
"Bagansio/cor-al-pit": "https://github.com/Bagansio/cor-al-pit",
"vishwaspuriofficial/Waste-Security": "https://github.com/vishwaspuriofficial/Waste-Security",
"HarryLi-CA/CarpApp": "https://github.com/HarryLi-CA/CarpApp",
"WomB0ComB0/InterviewBot": "https://github.com/WomB0ComB0/InterviewBot/",
"RupakKadhare15/Progno-D": "https://github.com/RupakKadhare15/Progno-D",
"nekocandy/trackmyfocus-app": "https://github.com/nekocandy/trackmyfocus-app",
"greenverse/GreenDEX": "https://github.com/greenverse/GreenDEX",
"Brilynd/SnapLens_Homepage": "https://github.com/Brilynd/SnapLens_Homepage",
"J-and-A-Labs/SWC-Hacks1": "https://github.com/J-and-A-Labs/SWC-Hacks1/tree/main",
"CarrotIsACarrot/greenboyskatesim": "https://github.com/CarrotIsACarrot/greenboyskatesim",
"NathanRLiu/songstacks": "https://github.com/NathanRLiu/songstacks",
"InfinityChicken/OptimeSource.git": "https://github.com/InfinityChicken/OptimeSource.git",
"dumax315/Zenkyo": "https://github.com/dumax315/Zenkyo",
"Yash-Popcorn/winterhacks": "https://github.com/Yash-Popcorn/winterhacks",
"Sinayel/WinterHack_WorldSpeak.git": "https://github.com/Sinayel/WinterHack_WorldSpeak.git",
"asadm/superpaint": "https://github.com/asadm/superpaint",
"ading2210/falconhacks-2022": "https://github.com/ading2210/falconhacks-2022",
"YanniKouloumbis/AssembyAIHackathon": "https://github.com/YanniKouloumbis/AssembyAIHackathon",
"dhruva-vidhant/SpaceNews": "https://github.com/dhruva-vidhant/SpaceNews",
"nadahlberg/assemblyai_hackathon_docspace": "https://github.com/nadahlberg/assemblyai_hackathon_docspace",
"umangp31/web3-videogram": "https://github.com/umangp31/web3-videogram",
"krupalitrivedi/D-espace": "https://github.com/krupalitrivedi/D-espace",
"shirsho-12/sokyo_eduhacks": "https://github.com/shirsho-12/sokyo_eduhacks",
"ARCTaylor/emotion-detection": "https://github.com/ARCTaylor/emotion-detection",
"Pranavtej/techeden2.0": "https://github.com/Pranavtej/techeden2.0",
"godsmith53/FinIt": "https://github.com/godsmith53/FinIt",
"Rishit-dagli/slidesmart": "https://github.com/Rishit-dagli/slidesmart",
"You-now-Who/Healee": "https://github.com/You-now-Who/Healee",
"fourof-a-kind/Tech-Eden-Proj": "https://github.com/fourof-a-kind/Tech-Eden-Proj",
"IdkwhatImD0ing/frontend-ohack.dev": "https://github.com/IdkwhatImD0ing/frontend-ohack.dev",
"leonkoech/backend-ohack.dev": "https://github.com/leonkoech/backend-ohack.dev",
"himanshu-singh07/techEden2.0": "https://github.com/himanshu-singh07/techEden2.0",
"trinayau/StudyPerks": "https://github.com/trinayau/StudyPerks",
"jongan69/unique-pod": "https://github.com/jongan69/unique-pod",
"Husky95/Curis": "https://github.com/Husky95/Curis",
"dtemir?tab=repositories": "https://github.com/dtemir?tab=repositories",
"hirosystems/clarinet": "https://github.com/hirosystems/clarinet",
"malawadd/soul-token": "https://github.com/malawadd/soul-token/tree/main",
"kartikpatel0170/Electron": "https://github.com/kartikpatel0170/Electron",
"abhishekpatelmc/sustainhack": "https://github.com/abhishekpatelmc/sustainhack",
"rajmahadev8/Fin-Split": "https://github.com/rajmahadev8/Fin-Split",
"ericfib/lauzhack_front": "https://github.com/ericfib/lauzhack_front",
"chalory/finhacks": "https://github.com/chalory/finhacks",
"AtulACleaver/recycle-it": "https://github.com/AtulACleaver/recycle-it",
"TasinKazi/SustainHacks": "https://github.com/TasinKazi/SustainHacks",
"Coderaman-tech/Saransh--The-Text-Summarizer": "https://github.com/Coderaman-tech/Saransh--The-Text-Summarizer",
"EWithTheAfro/EWithTheAfro.github.io": "https://github.com/EWithTheAfro/EWithTheAfro.github.io",
"Rohin2022/EarthBrain": "https://github.com/Rohin2022/EarthBrain",
"orgs/Team-ThunderHack": "https://github.com/orgs/Team-ThunderHack/repositories",
"trinayau/CarbonAltDel": "https://github.com/trinayau/CarbonAltDel",
"axios/axios": "https://github.com/axios/axios",
"Henrik-3/unofficial-valorant-api": "https://github.com/Henrik-3/unofficial-valorant-api",
"eccentricnethra/Gardener-Code": "https://github.com/eccentricnethra/Gardener-Code/blob/main/Gardener%20Code.ino",
"shawnesquivel/sustain-hacks": "https://github.com/shawnesquivel/sustain-hacks",
"christian-j174/Verification-NFT-Receipt": "https://github.com/christian-j174/Verification-NFT-Receipt",
"annikahxu/LunarHacks22": "https://github.com/annikahxu/LunarHacks22",
"Anzasu/Safer": "https://github.com/Anzasu/Safer",
"abishekmuthian/open-payment-host": "https://github.com/abishekmuthian/open-payment-host",
"thekavikumar/fin-assist": "https://github.com/thekavikumar/fin-assist",
"frenchfrog42/zk-hackaton": "https://github.com/frenchfrog42/zk-hackaton",
"xdao-app/xdao-contracts": "https://github.com/xdao-app/xdao-contracts",
"ndrohith09/Beyolix": "https://github.com/ndrohith09/Beyolix/tree/master/Reports",
"walker9296/BLS12-381": "https://github.com/walker9296/BLS12-381",
"tzjg7293/parcade": "https://github.com/tzjg7293/parcade",
"BCHacks2022/frontend-middleware": "https://github.com/BCHacks2022/frontend-middleware",
"bradchrabaszcz/Speed_Trap_for_BCHACK": "https://github.com/bradchrabaszcz/Speed_Trap_for_BCHACK",
"AgentSamBond/ML4Earth-Hackathon-2022": "https://github.com/AgentSamBond/ML4Earth-Hackathon-2022",
"Funiel298/Gifter": "https://github.com/Funiel298/Gifter",
"EPIAHACKERS-HACKEPS/Lleida.netRansomwareChallenge2K22": "https://github.com/EPIAHACKERS-HACKEPS/Lleida.netRansomwareChallenge2K22/",
"juberiya1ajaz/theatermuse": "https://github.com/juberiya1ajaz/theatermuse",
"chalory/ReadySing": "https://github.com/chalory/ReadySing",
"chetanty/cozi": "https://github.com/chetanty/cozi",
"im45145v/Texnymous": "https://github.com/im45145v/Texnymous",
"OKThomas1/youcloud": "https://github.com/OKThomas1/youcloud",
"shirsho-12/PlayRight.": "https://github.com/shirsho-12/PlayRight.",
"rkarimovs/Centraltirgus-Simulator": "https://github.com/rkarimovs/Centraltirgus-Simulator",
"zeeshansalim1234/BC-HACKS-4": "https://github.com/zeeshansalim1234/BC-HACKS-4",
"anushkrishnav/emotions_api": "https://github.com/anushkrishnav/emotions_api",
"Mkath1423/TSDP-Reinforcement-Learning-in-Video-Games": "https://github.com/Mkath1423/TSDP-Reinforcement-Learning-in-Video-Games",
"bencsn/amplitude-hackathon-scheduler": "https://github.com/bencsn/amplitude-hackathon-scheduler",
"msinkec/zk-minesweeper": "https://github.com/msinkec/zk-minesweeper",
"kartikpatel0170/parkAway": "https://github.com/kartikpatel0170/parkAway",
"Scott-Wilson-00/Prepresent-Backend": "https://github.com/Scott-Wilson-00/Prepresent-Backend",
"KaiPereira/Give-Back-Hackathon": "https://github.com/KaiPereira/Give-Back-Hackathon",
"DylanPage44/Life-Detox-Discord-Bot": "https://github.com/DylanPage44/Life-Detox-Discord-Bot",
"jeffrey-zang/charitychimp": "https://github.com/jeffrey-zang/charitychimp",
"ndrohith09/11th-hour": "https://github.com/ndrohith09/11th-hour",
"cbonoz/stack22": "https://github.com/cbonoz/stack22",
"sumit1212/Kore_ai_Botathon_Travel_Planer_bot": "https://github.com/sumit1212/Kore_ai_Botathon_Travel_Planer_bot",
"sagban/constant": "https://github.com/sagban/constant",
"jnlewis/yinbox-app": "https://github.com/jnlewis/yinbox-app",
"stampixel/StudyPod-MetroHacks2022": "https://github.com/stampixel/StudyPod-MetroHacks2022",
"RachelRebecca/CodeKevudahHackathon": "https://github.com/RachelRebecca/CodeKevudahHackathon",
"seetadev/RoadICM": "https://github.com/seetadev/RoadICM/tree/main/near%20road%20ICM/Near-analytics-tool/analytics-platform",
"treadle": "https://github.com/treadle",
"bgunson/studybuddy": "https://github.com/bgunson/studybuddy",
"KevinL10/Knetwork": "https://github.com/KevinL10/Knetwork",
"raduschirliu/hack-the-change-2022": "https://github.com/raduschirliu/hack-the-change-2022",
"yuminasd/2022Hackathon": "https://github.com/yuminasd/2022Hackathon",
"alyssaw198/DISHcovery": "https://github.com/alyssaw198/DISHcovery",
"AtulACleaver/cal-track": "https://github.com/AtulACleaver/cal-track",
"nataliey16/code-the-change-project": "https://github.com/nataliey16/code-the-change-project",
"dina-o/metrohacks": "https://github.com/dina-o/metrohacks",
"nikhilchaudhary0126/teamster": "https://github.com/nikhilchaudhary0126/teamster",
"TeamGhostwriter/ghostwriter": "https://github.com/TeamGhostwriter/ghostwriter",
"rianadutta/codejam": "https://github.com/rianadutta/codejam",
"dejmedus/homebound": "https://github.com/dejmedus/homebound",
"GhostyHQ": "https://github.com/GhostyHQ",
"Rishit-dagli/DygnosTech": "https://github.com/Rishit-dagli/DygnosTech/",
"akinguyen/elon-ma-frontend": "https://github.com/akinguyen/elon-ma-frontend",
"mtozaj/code-scan-backend.git": "https://github.com/mtozaj/code-scan-backend.git",
"Equitify-Platform/Equitify": "https://github.com/Equitify-Platform/Equitify",
"sjgoring/commutingcostcalculator": "https://github.com/sjgoring/commutingcostcalculator/",
"hakosuka0165/HackBrunelV2": "https://github.com/hakosuka0165/HackBrunelV2",
"JohnCosta27/BrunellHack2022": "https://github.com/JohnCosta27/BrunellHack2022",
"arncv/odd-art": "https://github.com/arncv/odd-art",
"JBond45/durhack2022.git": "https://github.com/JBond45/durhack2022.git",
"Tevin99/Can-Eye-See.git": "https://github.com/Tevin99/Can-Eye-See.git",
"TejasAnand/HackWestern": "https://github.com/TejasAnand/HackWestern",
"edgardesnos/Codejam12-StayAwake": "https://github.com/edgardesnos/Codejam12-StayAwake",
"Gaurang-1402/Binoculearn": "https://github.com/Gaurang-1402/Binoculearn",
"johannn05/Hack-Western": "https://github.com/johannn05/Hack-Western",
"laheau/studygroup": "https://github.com/laheau/studygroup",
"brian-ngyn/Hack-The-Change-2022": "https://github.com/brian-ngyn/Hack-The-Change-2022",
"OmarCodes2/hackwestern.git": "https://github.com/OmarCodes2/hackwestern.git",
"chazzox/brunel-hack": "https://github.com/chazzox/brunel-hack",
"SamZhang02/CodeJam12": "https://github.com/SamZhang02/CodeJam12",
"EMZEDI/Happify": "https://github.com/EMZEDI/Happify",
"Aarav87/Hackcoming22": "https://github.com/Aarav87/Hackcoming22",
"nawed2611/metrohacks": "https://github.com/nawed2611/metrohacks",
"Lemos00/git-place": "https://github.com/Lemos00/git-place",
"olivia-yong/hack-western.git": "https://github.com/olivia-yong/hack-western.git",
"raphael-verger/WakeyWiki": "https://github.com/raphael-verger/WakeyWiki",
"cchairst/Winter-Buddy": "https://github.com/cchairst/Winter-Buddy",
"mackvv/firebase-react-app.git": "https://github.com/mackvv/firebase-react-app.git",
"AllanT102/test.iq-HTC2022-": "https://github.com/AllanT102/test.iq-HTC2022-",
"vocal-recipe-hw9": "https://github.com/vocal-recipe-hw9",
"jdm8943/meetnhack": "https://github.com/jdm8943/meetnhack",
"kamui-fin/renosis": "https://github.com/kamui-fin/renosis",
"Nehanth/MetroHack-main1": "https://github.com/Nehanth/MetroHack-main1",
"JiteshGaikwad/Chatbot-Widget": "https://github.com/JiteshGaikwad/Chatbot-Widget",
"im45145v/AICraft": "https://github.com/im45145v/AICraft",
"a2nfinance/spoortify": "https://github.com/a2nfinance/spoortify",
"hackaTUM23/sixt": "https://github.com/hackaTUM23/sixt",
"holy-script/riffr": "https://github.com/holy-script/riffr",
"daniel-v-e/microwave-imaging": "https://github.com/daniel-v-e/microwave-imaging",
"vasu-1/Confezz-Client": "https://github.com/vasu-1/Confezz-Client",
"wedalb/david.git": "https://github.com/wedalb/david.git",
"aruan4/hackWesternPlaylist": "https://github.com/aruan4/hackWesternPlaylist",
"KlausMikhaelson/Winter-Find": "https://github.com/KlausMikhaelson/Winter-Find",
"timmy6figures/hackwestern9": "https://github.com/timmy6figures/hackwestern9",
"HackaTUM22": "https://github.com/HackaTUM22",
"hackatum-leverage/quick-flick": "https://github.com/hackatum-leverage/quick-flick",
"alex-huebner/Repoco.git": "https://github.com/alex-huebner/Repoco.git",
"dorianim/2gether.green": "https://github.com/dorianim/2gether.green/actions/workflows/preview.yml",
"AhmedAbdel-Aal/streamifAI": "https://github.com/AhmedAbdel-Aal/streamifAI",
"hack2022team/backend": "https://github.com/hack2022team/backend",
"AaronTacke/travel-surfer": "https://github.com/AaronTacke/travel-surfer",
"Phillip-Kemper/algo2gether": "https://github.com/Phillip-Kemper/algo2gether",
"ProgrammingFlorian/Hackatum-2022": "https://github.com/ProgrammingFlorian/Hackatum-2022",
"corner100/MikroWave": "https://github.com/corner100/MikroWave",
"taijusanagi/chainlink-aa-paymaster-wallet": "https://github.com/taijusanagi/chainlink-aa-paymaster-wallet/blob/main/packages/contracts/contracts/ChainlinkStripePaymaster.sol#L68",
"hackaTUM-2022/farmproject": "https://github.com/hackaTUM-2022/farmproject",
"provideplatform/proubc-chainlink-fall-hackathon-2022": "https://github.com/provideplatform/proubc-chainlink-fall-hackathon-2022",
"BlackH3art/7ball-smart-contract": "https://github.com/BlackH3art/7ball-smart-contract",
"skarty0123/revicryl.git": "https://github.com/skarty0123/revicryl.git",
"amrg-410/Anyahealthcare": "https://github.com/amrg-410/Anyahealthcare",
"PodShip/podship-contracts": "https://github.com/PodShip/podship-contracts",
"layinka/fheritage": "https://github.com/layinka/fheritage",
"0xWick/Chainlink_hackathon_Kameti": "https://github.com/0xWick/Chainlink_hackathon_Kameti",
"Gokulprasath2002/SIRIUS": "https://github.com/Gokulprasath2002/SIRIUS",
"surendravarmadendukuri/DLink": "https://github.com/surendravarmadendukuri/DLink",
"architect-01/batmon-nanana": "https://github.com/architect-01/batmon-nanana",
"MaazGo/RugHalt": "https://github.com/MaazGo/RugHalt",
"aspiringsecurity/EMTTR": "https://github.com/aspiringsecurity/EMTTR/tree/main/EHRs/xdc-borrow-funds",
"VlodkoMr/fan-zone": "https://github.com/VlodkoMr/fan-zone/blob/chainlink-integration/src/backend/contracts/ChainlinkVRF.sol#L47",
"shivamangina/Chainlink-hackathon-fall-22-BE": "https://github.com/shivamangina/Chainlink-hackathon-fall-22-BE",
"blocksecteam/rustle": "https://github.com/blocksecteam/rustle",
"meta-care": "https://github.com/meta-care",
"Donzo/Mine-Labor-Simulator": "https://github.com/Donzo/Mine-Labor-Simulator/blob/main/code/sol/fetch-ore-count-from-string.sol#L36-L74",
"Chevtrox-Ventures-Chemotronix/Chain-link-Hackathon": "https://github.com/Chevtrox-Ventures-Chemotronix/Chain-link-Hackathon",
"Robert-H-Leonard/data-marketplace": "https://github.com/Robert-H-Leonard/data-marketplace",
"SafetrackerApp/safetracker": "https://github.com/SafetrackerApp/safetracker",
"1marcghannam/Job-Explorer": "https://github.com/1marcghannam/Job-Explorer",
"adityasimant/Ignite": "https://github.com/adityasimant/Ignite",
"sterliakov/tronweb": "https://github.com/sterliakov/tronweb/",
"ferran9908/migrasie": "https://github.com/ferran9908/migrasie",
"tesol2y090/flex-node": "https://github.com/tesol2y090/flex-node",
"FindMyProfessors/frontend": "https://github.com/FindMyProfessors/frontend",
"Willy-Chan/Papercraft-Swarm": "https://github.com/Willy-Chan/Papercraft-Swarm",
"anshss/hackfall22": "https://github.com/anshss/hackfall22",
"acm-tamusa-2022/HackUTD-Team-2": "https://github.com/acm-tamusa-2022/HackUTD-Team-2",
"sunnyguan/hackutd-f22": "https://github.com/sunnyguan/hackutd-f22",
"Shaurya0108/inteReview": "https://github.com/Shaurya0108/inteReview",
"Raajheer1/hackutd-ix": "https://github.com/Raajheer1/hackutd-ix/",
"shaswat-kr1/bankwise": "https://github.com/shaswat-kr1/bankwise",
"demonlexe/sk.edge": "https://github.com/demonlexe/sk.edge",
"Elijah762/brakey-heart.git": "https://github.com/Elijah762/brakey-heart.git",
"Dash-Sentinel/": "https://github.com/Dash-Sentinel/",
"AfeyaJahin/HackHolyoke2022": "https://github.com/AfeyaJahin/HackHolyoke2022",
"lakitu/turing-house": "https://github.com/lakitu/turing-house",
"Samalmeida1028/HackUmass-X": "https://github.com/Samalmeida1028/HackUmass-X",
"mohanraj-cs/Inrix_hackathon": "https://github.com/mohanraj-cs/Inrix_hackathon",
"shoaibhuq/road-sign-recognizer": "https://github.com/shoaibhuq/road-sign-recognizer",
"YamBenson/syllabus": "https://github.com/YamBenson/syllabus",
"jinc0930/HackUmass": "https://github.com/jinc0930/HackUmass",
"DavidIstrati/vcharmony-backend": "https://github.com/DavidIstrati/vcharmony-backend",
"algebra2boy/Find.it": "https://github.com/algebra2boy/Find.it",
"dangelyjeanelle/Watch-a-Say": "https://github.com/dangelyjeanelle/Watch-a-Say",
"charitarthchugh/whosthere": "https://github.com/charitarthchugh/whosthere",
"kubitsss/pumpkin": "https://github.com/kubitsss/pumpkin",
"yusufelley/rsogo_frontend": "https://github.com/yusufelley/rsogo_frontend",
"manunicholasjacob/4sight": "https://github.com/manunicholasjacob/4sight",
"AlvaroDIL/Qualcomm-Challenge-Team-Patata": "https://github.com/AlvaroDIL/Qualcomm-Challenge-Team-Patata",
"msaini26/safety-first-gracehacks": "https://github.com/msaini26/safety-first-gracehacks/",
"DaniGmzGnz/Datathon-VirtualDoctor": "https://github.com/DaniGmzGnz/Datathon-VirtualDoctor",
"FHL-08/GreatUniHack-2022": "https://github.com/FHL-08/GreatUniHack-2022",
"paulaesquerra/funcions_numerables_datathon": "https://github.com/paulaesquerra/funcions_numerables_datathon/",
"smjleo/oxloo": "https://github.com/smjleo/oxloo",
"vdsingh/UMass-Dieting": "https://github.com/vdsingh/UMass-Dieting",
"ustx/ustx-dex": "https://github.com/ustx/ustx-dex/tree/main/contracts/V2/tboost",
"saakethkoka/volatility-app-front-end": "https://github.com/saakethkoka/volatility-app-front-end",
"KhouryEthan/HackathonApplication": "https://github.com/KhouryEthan/HackathonApplication",
"j-simian/oxhack-2022-2": "https://github.com/j-simian/oxhack-2022-2",
"MaTeMaTuK/gantt-task-react": "https://github.com/MaTeMaTuK/gantt-task-react",
"sacredvoid/hackUMass22": "https://github.com/sacredvoid/hackUMass22",
"deepsea-dev/octolabyrinth": "https://github.com/deepsea-dev/octolabyrinth",
"arncv/Little-Happy-Place-For-Us": "https://github.com/arncv/Little-Happy-Place-For-Us",
"ajay-jayanth/OptiMine": "https://github.com/ajay-jayanth/OptiMine",
"MatteoCati/OxfordHack2022": "https://github.com/MatteoCati/OxfordHack2022",
"sheldor1510/uplay": "https://github.com/sheldor1510/uplay",
"kevalvavaliya/Emosic": "https://github.com/kevalvavaliya/Emosic",
"delster1/askforcode": "https://github.com/delster1/askforcode",
"nibdo/kalend": "https://github.com/nibdo/kalend",
"Oliver-Malkin/Music-Board": "https://github.com/Oliver-Malkin/Music-Board",
"avanivg/CustomAssure": "https://github.com/avanivg/CustomAssure",
"chalory/doremi-hacks": "https://github.com/chalory/doremi-hacks",
"theonetruejesse/paw-patrol": "https://github.com/theonetruejesse/paw-patrol",
"fattysun1121/virtual_instrument": "https://github.com/fattysun1121/virtual_instrument",
"ashu-rb/HarVara_Harvest-Hacks": "https://github.com/ashu-rb/HarVara_Harvest-Hacks",
"Tian-Tan/bu-personal-dining-bhacks22": "https://github.com/Tian-Tan/bu-personal-dining-bhacks22",
"parisj/team_laga": "https://github.com/parisj/team_laga",
"Mikey23hep/Hackathon_2022_QuadrupedWalker": "https://github.com/Mikey23hep/Hackathon_2022_QuadrupedWalker",
"neezacoto/bostonhacks-2022": "https://github.com/neezacoto/bostonhacks-2022",
"AbirHaque/Hack-K-State-2022": "https://github.com/AbirHaque/Hack-K-State-2022",
"PramithPrasanna/ToyotaTrips": "https://github.com/PramithPrasanna/ToyotaTrips",
"Suvanch/TokenAID": "https://github.com/Suvanch/TokenAID",
"NotARoomba/Koombia": "https://github.com/NotARoomba/Koombia",
"Bluefox2233/Hackathon22": "https://github.com/Bluefox2233/Hackathon22/tree/main/new/1.1_0",
"Shivesh777/weed-detech": "https://github.com/Shivesh777/weed-detech",
"RyanBoomer30/BUHack2022": "https://github.com/RyanBoomer30/BUHack2022",
"liamahearn/Inrix-Hack-2022": "https://github.com/liamahearn/Inrix-Hack-2022/",
"alianahy/WHACK2022.git": "https://github.com/alianahy/WHACK2022.git",
"pranshunagar01/procolab-v1": "https://github.com/pranshunagar01/procolab-v1",
"didcreetsadgoku500/VTHacks": "https://github.com/didcreetsadgoku500/VTHacks",
"Riderfighter/vthacksx": "https://github.com/Riderfighter/vthacksx/blob/main/fastlyqueueskip.py",
"Cazaimi/vthacks-backend": "https://github.com/Cazaimi/vthacks-backend",
"nihitha13/project-x": "https://github.com/nihitha13/project-x",
"sajanpoudel": "https://github.com/sajanpoudel",
"datathon-fme-2022/ageing-challenge": "https://github.com/datathon-fme-2022/ageing-challenge/tree/main",
"ANaq21/AffordableHousingForecaster": "https://github.com/ANaq21/AffordableHousingForecaster",
"shur1m/InrixHack2022": "https://github.com/shur1m/InrixHack2022",
"Ajitesh72/StoryTeller": "https://github.com/Ajitesh72/StoryTeller",
"AminoChain/hackathon": "https://github.com/AminoChain/hackathon",
"niya-ma-1/vthacks2022": "https://github.com/niya-ma-1/vthacks2022",
"ndbaker1/HackUTDIX": "https://github.com/ndbaker1/HackUTDIX",
"CompVis/stable-diffusion": "https://github.com/CompVis/stable-diffusion",
"wishopt/Open-Data-Hack-SG-2022": "https://github.com/wishopt/Open-Data-Hack-SG-2022/blob/main/mockup.pdf",
"Zainab-Fahim/music-verse": "https://github.com/Zainab-Fahim/music-verse",
"ceruleanox/harvesthacks": "https://github.com/ceruleanox/harvesthacks",
"mdarshad1000/Healthy-Eats": "https://github.com/mdarshad1000/Healthy-Eats",
"TMoreMaker/taxiflex_hackathon": "https://github.com/TMoreMaker/taxiflex_hackathon",
"Shurikal/energie-bot": "https://github.com/Shurikal/energie-bot",
"0Armaan025/eduso": "https://github.com/0Armaan025/eduso",
"4nanya/realmeals": "https://github.com/4nanya/realmeals",
"InfernoTower1943/spaceship-survival": "https://github.com/InfernoTower1943/spaceship-survival",
"ericheee111/Hack": "https://github.com/ericheee111/Hack",
"lifeng-yin/cultivate": "https://github.com/lifeng-yin/cultivate",
"ntcho/mapple": "https://github.com/ntcho/mapple",
"Purum-ETHBogota/vegetation-checker": "https://github.com/Purum-ETHBogota/vegetation-checker",
"domingosl/nse": "https://github.com/domingosl/nse",
"killian74/GoDawg": "https://github.com/killian74/GoDawg",
"GETOfinance/getoxdc": "https://github.com/GETOfinance/getoxdc",
"elonsdev/getmepizza-dapp": "https://github.com/elonsdev/getmepizza-dapp",
"tronjoyLabs/tronjoycontracts": "https://github.com/tronjoyLabs/tronjoycontracts",
"freelancer254/raas": "https://github.com/freelancer254/raas",
"fixermann/ChainiFi": "https://github.com/fixermann/ChainiFi",
"jordan-public/order-pool-dex": "https://github.com/jordan-public/order-pool-dex",
"sisyphusprotocol/contracts": "https://github.com/sisyphusprotocol/contracts/tree/main/deployments/mumbai",
"dhushyanth-s/router-holmes": "https://github.com/dhushyanth-s/router-holmes",
"mikster36/PDwebApp": "https://github.com/mikster36/PDwebApp",
"nakulh/tsp-singlestore-frontend": "https://github.com/nakulh/tsp-singlestore-frontend",
"SidmoGoesBrrr/movie-recommender": "https://github.com/SidmoGoesBrrr/movie-recommender",
"akshatamohanty/chainlink-hackathon-y2022": "https://github.com/akshatamohanty/chainlink-hackathon-y2022",
"maybedy/RobynSuggestion": "https://github.com/maybedy/RobynSuggestion",
"Raima25/TECH-OUR-HELP.git": "https://github.com/Raima25/TECH-OUR-HELP.git",
"CallumMackenzie/cultural-calendar": "https://github.com/CallumMackenzie/cultural-calendar",
"dylanlauzy/nwhacks-ubc-food-deals": "https://github.com/dylanlauzy/nwhacks-ubc-food-deals",
"henrylyyc/hackcamp2022": "https://github.com/henrylyyc/hackcamp2022",
"amtang325/club-call": "https://github.com/amtang325/club-call",
"zhangLily2020/HackCamp": "https://github.com/zhangLily2020/HackCamp",
"jenellemillison/Punctual": "https://github.com/jenellemillison/Punctual",
"kunaal-gupta": "https://github.com/kunaal-gupta",
"Emelie4/HERxCQ": "https://github.com/Emelie4/HERxCQ",
"jchernin4/GreenSolve-HackPSU2022": "https://github.com/jchernin4/GreenSolve-HackPSU2022",
"Perceive6910/Hacke_Plant-Watering-Project": "https://github.com/Perceive6910/Hacke_Plant-Watering-Project",
"paul-chunwong/HackCamp-2022": "https://github.com/paul-chunwong/HackCamp-2022",
"OGsniper-philly/HACK2022-BitsLasagna": "https://github.com/OGsniper-philly/HACK2022-BitsLasagna/tree/main",
"Omar-HeshamR/PresentAI": "https://github.com/Omar-HeshamR/PresentAI",
"pmoharana-cmd/hack-nc": "https://github.com/pmoharana-cmd/hack-nc",
"idk-code/hackathon2": "https://github.com/idk-code/hackathon2",
"Ahnaful/HackED-beta": "https://github.com/Ahnaful/HackED-beta",
"tangkev0619/RLLC.git": "https://github.com/tangkev0619/RLLC.git",
"RupertoM/HackNC2022": "https://github.com/RupertoM/HackNC2022",
"Heluhan/bike_map": "https://github.com/Heluhan/bike_map",
"PR0C355/Slifer": "https://github.com/PR0C355/Slifer",
"fang20dan/HackNC2022-RoadTripping": "https://github.com/fang20dan/HackNC2022-RoadTripping",
"RobPruzan/Transform": "https://github.com/RobPruzan/Transform",
"prajwalshetty99/ub_hacking_2022.git": "https://github.com/prajwalshetty99/ub_hacking_2022.git",
"alexrosen45/tPay": "https://github.com/alexrosen45/tPay",
"phillipl21/TigerHacks2022": "https://github.com/phillipl21/TigerHacks2022",
"Niwri/UniCrimeMap": "https://github.com/Niwri/UniCrimeMap",
"UBH-Fall2022/ubh-fall2022-repotemplate-mattrrubino": "https://github.com/UBH-Fall2022/ubh-fall2022-repotemplate-mattrrubino",
"aneall/HackNC-2022-Project": "https://github.com/aneall/HackNC-2022-Project",
"tbwrigh/hacknc2022": "https://github.com/tbwrigh/hacknc2022",
"dina-o/tigerhacks2022": "https://github.com/dina-o/tigerhacks2022",
"SelenaChen123/HackNC2022": "https://github.com/SelenaChen123/HackNC2022",
"Dom-1/ASPRN": "https://github.com/Dom-1/ASPRN",
"vykintazo/hacksheffield7": "https://github.com/vykintazo/hacksheffield7",
"AviralDhingra/procrastination_helper": "https://github.com/AviralDhingra/procrastination_helper",
"juberiya1ajaz/TheBusinessNetwork": "https://github.com/juberiya1ajaz/TheBusinessNetwork",
"mario-ah-salamanca/WaterMe": "https://github.com/mario-ah-salamanca/WaterMe/tree/test",
"rayanx43/JacobsHack-2022": "https://github.com/rayanx43/JacobsHack-2022",
"theo110/PLAN-ET": "https://github.com/theo110/PLAN-ET",
"jamesctipton/JASK": "https://github.com/jamesctipton/JASK"
},
"users": {
"jennakkoo": "jennakkoo",
"ericsngyun": "ericsngyun",
"webdevlex": "webdevlex",
"justinfisherrr": "justinfisherrr",
"TheSilentDefender": "TheSilentDefender",
"anandafrancis": "anandafrancis",
"leahuriarte": "leahuriarte",
"ashlylam": "ashlylam",
"ahonakarim": "ahonakarim",
"cnystrom03": "cnystrom03",
"maiapiechocki": "maiapiechocki",
"estheryoojinhwang": "estheryoojinhwang",
"DeniseM1717": "DeniseM1717",
"AthenaKiriakoulis": "AthenaKiriakoulis",
"ColleenQue": "ColleenQue",
"laddhasuneedhi": "laddhasuneedhi",
"invissy": "invissy",
"rfairooz": "rfairooz",
"NavdhaJindal": "NavdhaJindal",
"hesy41": "hesy41",
"diyavij": "diyavij",
"Sofkruse": "Sofkruse",
"T3chnopath": "T3chnopath",
"ahlan02": "ahlan02",
"huy2000vu": "huy2000vu",
"LeeNguyen29": "LeeNguyen29",
"WaterKat": "WaterKat",
"xwRongx": "xwRongx",
"andersAsch0": "andersAsch0",
"menthy-wu": "menthy-wu",
"bricknermon": "bricknermon",
"alexholland4": "alexholland4",
"AidenCohen31": "AidenCohen31",
"srirambh": "srirambh",
"yelsharawy": "yelsharawy",
"hd1867": "hd1867",
"jzaia18": "jzaia18",
"chm7374": "chm7374",
"mimiZhang130": "mimiZhang130",
"reallifenero": "reallifenero",
"bhargavap21": "bhargavap21",
"jwh1000": "jwh1000",
"seabass586": "seabass586",
"balaji-balachandran": "balaji-balachandran",
"anshul-rao": "anshul-rao",
"YatinG10": "YatinG10",
"CollinOlkows": "CollinOlkows",
"cagogos": "cagogos",
"knightron0": "knightron0",
"arya1106": "arya1106",
"unkn-wn": "unkn-wn",
"Jpduker": "Jpduker",
"kennisjoseph": "kennisjoseph",
"pratikkarelia25": "pratikkarelia25",
"GauravBurande": "GauravBurande",
"PoPsMokE07": "PoPsMokE07",
"Labhk": "Labhk",
"X3NOSIZ": "X3NOSIZ",
"Ameat77": "Ameat77",
"Rochanaaa": "Rochanaaa",
"zmb6893": "zmb6893",
"maisha242": "maisha242",
"mno5685": "mno5685",
"sandesh4548 ": "sandesh4548 ",
"aaryan-k-lab": "aaryan-k-lab",
"Phantasm0009": "Phantasm0009",
"mohamedirfansh": "mohamedirfansh",
"Chockaaa": "Chockaaa",
"Carter4242": "Carter4242",
"krishjainx": "krishjainx",
"APB2471": "APB2471",
"Marinara-Sauce": "Marinara-Sauce",
"NLNHSR": "NLNHSR",
"danielodicho": "danielodicho",
"korokkun": "korokkun",
"Y3JUN": "Y3JUN",
"Xenon1345": "Xenon1345",
"SidKarthik999": "SidKarthik999",
"brs6412": "brs6412",
"CTB333": "CTB333",
"Shaurya50211": "Shaurya50211",
"TasinKazi": "TasinKazi",
"joshua-rdrgz": "joshua-rdrgz",
"samyabrata-maji": "samyabrata-maji",
"annietiet": "annietiet",
"abytiet": "abytiet",
"mauryaavinash95": "mauryaavinash95",
"AmanNegi": "AmanNegi",
"emiilyxiia": "emiilyxiia",
"A1uvi": "A1uvi",
"sboy99": "sboy99",
"Aadarsh805": "Aadarsh805",
"Somidh": "Somidh",
"ManishBisht777": "ManishBisht777",
"Kanchan337": "Kanchan337",
"ffex": "ffex",
"hiukim": "hiukim",
"yrs147": "yrs147",
"Lkumar209": "Lkumar209",
"abodthedude25": "abodthedude25",
"topanb11": "topanb11",
"brian-ngyn": "brian-ngyn",
"IamWafula": "IamWafula",
"Ajodo-Godson": "Ajodo-Godson",
"Ether2003": "Ether2003",
"HongDucAnhNguyen": "HongDucAnhNguyen",
"akhalil95": "akhalil95",
"benjysboxers": "benjysboxers",
"akrantz01": "akrantz01",