-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.json
More file actions
995 lines (995 loc) · 42.2 KB
/
Copy pathdatabase.json
File metadata and controls
995 lines (995 loc) · 42.2 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
{
"announcements": [
{
"title": "🏆 Weekly Winners Announced!",
"body": "Congratulations to Srinath for being the Top Contributor, and \"VIT Hack Tracker\" for being the Top Project of the week!",
"label": "Winner"
},
{
"id": 1,
"title": "HackClub Meet",
"body": "Weekly meetup scheduled for Friday at 5 PM.",
"label": "Live"
},
{
"id": 2,
"title": "Project Deadline",
"body": "Final project submissions close on Jun 20.",
"label": "Urgent"
}
],
"users": [
{
"id": 1,
"name": "Ananya Rao",
"role": "Moderator",
"status": "Active",
"isReviewer": true,
"projectsUploaded": 5,
"averageRating": "4.8",
"badges": [
"Top Performer",
"Active Contributor"
],
"recentProjects": [
"Campus AI Mentor",
"HackClub Website"
],
"projectRatingScore": 95,
"contributionScore": 85,
"eventScore": 90,
"totalScore": 93
},
{
"id": 2,
"name": "Rishi Kumar",
"role": "Project Lead",
"status": "Pending",
"isReviewer": false,
"projectsUploaded": 2,
"averageRating": "4.5",
"badges": [
"Problem Solver"
],
"recentProjects": [
"VIT Hack Tracker"
],
"projectRatingScore": 85,
"contributionScore": 60,
"eventScore": 70,
"totalScore": 79
},
{
"id": 3,
"name": "Priya Menon",
"role": "Content Admin",
"status": "Active",
"isReviewer": true,
"projectsUploaded": 4,
"averageRating": "4.3",
"badges": [
"Team Player",
"Consistent Learner"
],
"recentProjects": [
"Green Code Initiative"
],
"projectRatingScore": 80,
"contributionScore": 90,
"eventScore": 80,
"totalScore": 82
},
{
"id": 4,
"name": "Sahil Nair",
"role": "Member",
"status": "Inactive",
"isReviewer": false,
"projectsUploaded": 0,
"averageRating": "0.0",
"badges": [],
"recentProjects": [],
"projectRatingScore": 0,
"contributionScore": 10,
"eventScore": 5,
"totalScore": 3
},
{
"id": 5,
"name": "Srinath",
"role": "Member",
"status": "Active",
"isReviewer": false,
"projectsUploaded": 3,
"averageRating": "4.9",
"badges": [
"Innovator",
"Full Stack Developer"
],
"recentProjects": [
"Leaderboard UI",
"Sorting Algorithm Visualizer"
],
"projectRatingScore": 98,
"contributionScore": 88,
"eventScore": 85,
"totalScore": 95
},
{
"id": 1781324480775,
"name": "Prachi Khandelwal",
"email": "prachi.khandelwal2024@vitstudent.ac.in",
"role": "Member",
"status": "Active",
"isReviewer": false,
"projectsUploaded": 0,
"averageRating": "0.0",
"badges": [
"New Maker"
],
"recentProjects": [],
"projectRatingScore": 0,
"contributionScore": 10,
"eventScore": 5,
"totalScore": 7
},
{
"id": 1781502524190,
"name": "Ojas Singh",
"email": "ojas.singh2024@vitstudent.ac.in",
"role": "Member",
"status": "Active",
"isReviewer": false,
"projectsUploaded": 0,
"averageRating": "0.0",
"badges": [
"New Maker"
],
"recentProjects": [],
"projectRatingScore": 0,
"contributionScore": 10,
"eventScore": 5,
"totalScore": 7
},
{
"id": 1781502792923,
"name": "Admin",
"email": "admin@vitstudent.ac.in",
"role": "Admin",
"status": "Active",
"isReviewer": true,
"projectsUploaded": 0,
"averageRating": "0.0",
"badges": [
"Lead Organizer"
],
"recentProjects": [],
"projectRatingScore": 0,
"contributionScore": 10,
"eventScore": 5,
"totalScore": 7
}
],
"projects": [
{
"id": 1787245879231,
"title": "vbkbdmf",
"description": "cv k lvbdfkmlv",
"category": "Web Development",
"problemStatement": "dfk bgblgfbfkl",
"solution": "vcml vkmlbdfkm",
"screenshots": [
"https://your-project.vercel.png"
],
"demoVideoUrl": null,
"github": "https://github.com/prachikkk101/fake-project",
"deployment": "https://your-project.vercel.app",
"status": "UNDER_REVIEW",
"owner": "Khandelwalprachi",
"rating": "5.5",
"ratingCount": 1,
"submissionDate": "2026-08-20",
"technologiesUsed": [
"React",
"Node.js",
"CSS"
],
"individualRatings": [
{
"user": "Prachikhandelwal",
"rating": 5.5,
"comment": ""
}
],
"awards": []
},
{
"id": 1787245858813,
"title": "AI Smart Irrigation",
"description": "Automated water conservation tool using IoT and React.",
"category": "Systems & IoT",
"problemStatement": "Water wastage in campus lawns.",
"solution": "Automated sensor feedback.",
"screenshots": [],
"demoVideoUrl": null,
"github": "https://github.com/test/irrigation",
"deployment": "https://irrigation.dev",
"status": "PENDING_REVIEW",
"owner": "Test User",
"rating": "0.0",
"ratingCount": 0,
"submissionDate": "2026-08-20",
"technologiesUsed": [
"React",
"Python",
"Arduino"
],
"individualRatings": [],
"awards": []
},
{
"id": 1787245537936,
"title": "vbkbdmf",
"description": "cv k lvbdfkmlv",
"category": "Web Development",
"problemStatement": "dfk bgblgfbfkl",
"solution": "vcml vkmlbdfkm",
"screenshots": [
"https://your-project.vercel.png"
],
"demoVideoUrl": null,
"github": "https://github.com/prachikkk101/fake-project",
"deployment": "https://your-project.vercel.app",
"status": "PENDING_REVIEW",
"owner": "Khandelwalprachi",
"rating": "0.0",
"ratingCount": 0,
"submissionDate": "2026-08-20",
"technologiesUsed": [
"React",
"Node.js",
"CSS"
],
"individualRatings": [],
"awards": []
},
{
"id": 101,
"title": "Campus AI Mentor",
"owner": "Ananya Rao",
"status": "Review",
"rating": "4.7",
"contributors": "Nikhil, Aarav",
"technologiesUsed": [
"React",
"Python",
"FastAPI"
],
"submissionDate": "2026-06-05",
"awards": [
"Best Innovation"
],
"individualRatings": [
{
"user": "Srinath",
"rating": 5,
"comment": "Great project, very useful for students."
},
{
"user": "FakeBot123",
"rating": 1,
"comment": "Bad"
},
{
"user": "Priya Menon",
"rating": 4.5,
"comment": "Good UI and smooth transitions."
},
{
"user": "CryptoSpammer",
"rating": 5,
"comment": "buy crypto at totallylegit.com!!"
},
{
"user": "Rahul",
"rating": 4,
"comment": "Nice, but could use a few more features."
},
{
"user": "Aditi",
"rating": 5,
"comment": "Loved the AI integration! Super helpful."
},
{
"user": "Hater123",
"rating": 1,
"comment": "i hate ai"
},
{
"user": "Nikhil",
"rating": 4.8,
"comment": "Code is very clean and modular."
},
{
"user": "Sana",
"rating": 4.2,
"comment": "Works well for me on mobile."
},
{
"user": "BotNet_00",
"rating": 1,
"comment": "terrible terrible terrible"
}
]
},
{
"id": 102,
"title": "VIT Hack Tracker",
"owner": "Rishi Kumar",
"status": "Published",
"rating": "4.9",
"contributors": "Sana, Diya",
"technologiesUsed": [
"Next.js",
"Tailwind",
"MongoDB"
],
"submissionDate": "2026-06-01",
"awards": [
"Top Project of the Week"
],
"individualRatings": [
{
"user": "Ananya Rao",
"rating": 5,
"comment": "Very useful!"
},
{
"user": "Sahil Nair",
"rating": 4.8,
"comment": "Nice work"
}
]
},
{
"id": 103,
"title": "Green Code Initiative",
"owner": "Priya Menon",
"status": "Draft",
"rating": "4.3",
"contributors": "Pooja, Rahul",
"technologiesUsed": [
"Vue.js",
"Node.js"
],
"submissionDate": "2026-06-10",
"awards": [],
"individualRatings": []
}
],
"uploads": [
{
"id": 1,
"content": "HackClub event poster",
"author": "Aditi Sharma",
"date": "Jun 09",
"status": "New"
},
{
"id": 2,
"content": "Team demo video",
"author": "Hrithik Jain",
"date": "Jun 08",
"status": "Pending"
},
{
"id": 3,
"content": "Project report",
"author": "Meera Pillai",
"date": "Jun 07",
"status": "New"
}
],
"recentActivities": [
{
"id": 1,
"label": "Submitted project proposal",
"detail": "CodeStorm 24H preparation",
"time": "2h ago"
},
{
"id": 2,
"label": "Reviewed upload",
"detail": "Design resources from Aditi",
"time": "5h ago"
},
{
"id": 3,
"label": "Commented on team planning",
"detail": "UI flow for new dashboard",
"time": "1d ago"
}
],
"eventsList": [
{
"id": 1,
"title": "CodeStorm kickoff",
"date": "Jul 12",
"status": "Confirmed"
},
{
"id": 2,
"title": "Portfolio review",
"date": "Jul 18",
"status": "Planning"
},
{
"id": 3,
"title": "Mentor roundtable",
"date": "Jul 22",
"status": "Open"
}
],
"teamUpdates": [
{
"id": 1,
"title": "Mentorship squad formed",
"detail": "New pod for freshers onboarding"
},
{
"id": 2,
"title": "Site refresh completed",
"detail": "Event landing page now live"
}
],
"feedbacks": [
{
"id": 1,
"user": "Lakshmi",
"message": "Need a faster upload flow for large files.",
"type": "Suggestion"
},
{
"id": 2,
"user": "Karan",
"message": "Project approval notifications are very helpful.",
"type": "Praise"
},
{
"id": 3,
"user": "Megha",
"message": "Analytics should include weekly trends.",
"type": "Request"
}
],
"systemStatus": [
{
"label": "Database",
"value": "Online"
},
{
"label": "API",
"value": "Stable"
},
{
"label": "Storage",
"value": "92% Capacity"
}
],
"weeklyWinners": {
"topContributor": "Ananya Rao",
"topProject": "VIT Hack Tracker",
"mostActive": "Priya Menon",
"bestInnovation": "Campus AI Mentor"
},
"monthlyWinners": {
"hallOfFame": [
"Nikhil Singh",
"Ananya Rao",
"Srinath"
],
"topProject": "AI Interview Bot"
},
"profile": {
"name": "Priya Sharma",
"role": "Frontend Lead",
"registerNumber": "21BCE10234",
"email": "priya@vitstudent.ac.in",
"phoneNumber": "+91 9876543210",
"location": "Chennai",
"joined": "Aug 2023",
"github": "github.com/priyasharma",
"portfolio": "priyasharma.dev",
"badges": [
"Top Performer",
"Active Contributor"
],
"isReviewer": true
},
"contributions": [
{
"label": "Projects contributed",
"value": "18"
},
{
"label": "Ideas shared",
"value": "27"
},
{
"label": "Mentorship hours",
"value": "94"
},
{
"label": "Events hosted",
"value": "6"
}
],
"recruitmentApplications": [
{
"id": 1787760000000,
"recruitmentId": "recruitment-2026",
"name": "Aarav Sharma",
"registerNumber": "24BCE1024",
"email": "aarav.sharma2024@vitstudent.ac.in",
"phoneNumber": "+91 98765 43210",
"domain": "Operations",
"firstPreference": "Operations",
"secondPreference": "Technical",
"firstPrefReason": "I organized our school Model UN with 450 delegates. I love handling live event execution, venue layout logistics, stage queues, and sponsor hospitality.",
"secondPrefReason": "I know JavaScript and React fundamentals. I want to help the tech team code QR check-in scanners and attendee badge systems during hackathons.",
"yearOfStudy": "1st Year",
"github": "github.com/aaravsharma-dev",
"linkedin": "linkedin.com/in/aarav-sharma-vit",
"portfolio": "aaravsharma.me",
"sevenDaysBuild": "CampusEventFlow: An automated WhatsApp reminder and dynamic QR entry pass manager built with Node.js, Express, and TailwindCSS.",
"skillToLearn": "Event Analytics & Webhook Automation to streamline hackathon check-in throughput.",
"whyHackclub": "HackClub runs the most energetic and impactful technical hackathons on campus. I want to be in the engine room executing flagship events.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What specific friction points do students face daily (notes, deadlines, food)? 2. Is cross-device real-time sync essential? 3. How do we keep the UI distraction-free? 4. What metrics prove student productivity?",
"whyJoin": "I organized our school Model UN with 450 delegates. I love handling live event execution, venue layout logistics, stage queues, and sponsor hospitality.",
"projectDetails": "CampusEventFlow: An automated WhatsApp reminder and dynamic QR entry pass manager built with Node.js, Express, and TailwindCSS.",
"status": "screening",
"appliedDate": "Aug 11, 2026"
},
{
"id": 1787760000001,
"recruitmentId": "recruitment-2026",
"name": "Diya Patel",
"registerNumber": "24BCE1158",
"email": "diya.patel2024@vitstudent.ac.in",
"phoneNumber": "+91 98450 12389",
"domain": "Technical",
"firstPreference": "Technical",
"secondPreference": "Projects",
"firstPrefReason": "I have built 4 full-stack projects using React, Node.js, TypeScript, and PostgreSQL. I write clean, modular REST/GraphQL APIs and love debugging complex database queries.",
"secondPrefReason": "I want to collaborate in agile squads on long-term open source products and ship software that thousands of VIT students use every semester.",
"yearOfStudy": "1st Year",
"github": "github.com/diyapatel-codes",
"linkedin": "linkedin.com/in/diya-patel-tech",
"portfolio": "diyapatel.dev",
"sevenDaysBuild": "VITHackHub: A hackathon teammate discovery tool with real-time skill matching and WebSocket group chat.",
"skillToLearn": "Distributed Systems & Database indexing/caching using Redis and PostgreSQL.",
"whyHackclub": "HackClub is the only club where builders focus on shipping real products to production rather than just theoretical slide decks.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. Which student routine has the highest cognitive load? 2. Is offline caching required for poor campus Wi-Fi? 3. What data privacy constraints apply to timetables? 4. How do we measure daily retention?",
"whyJoin": "I have built 4 full-stack projects using React, Node.js, TypeScript, and PostgreSQL. I write clean, modular REST/GraphQL APIs and love debugging complex database queries.",
"projectDetails": "VITHackHub: A hackathon teammate discovery tool with real-time skill matching and WebSocket group chat.",
"status": "technical",
"appliedDate": "Aug 12, 2026"
},
{
"id": 1787760000002,
"recruitmentId": "recruitment-2026",
"name": "Rohan Verma",
"registerNumber": "23BCE2041",
"email": "rohan.verma2023@vitstudent.ac.in",
"phoneNumber": "+91 97123 45678",
"domain": "Projects",
"firstPreference": "Projects",
"secondPreference": "Research & Development",
"firstPrefReason": "I have shipped an AI study partner with 500+ active users. I enjoy turning complex user requirements into modular, scalable software architectures.",
"secondPrefReason": "I experiment with local LLM fine-tuning using Ollama and LangChain and want to build smart campus AI assistants.",
"yearOfStudy": "2nd Year",
"github": "github.com/rohan-builds",
"linkedin": "linkedin.com/in/rohanverma-dev",
"portfolio": "rohanverma.io",
"sevenDaysBuild": "NoteSynth AI: An offline-first markdown notes app that uses lightweight WASM embeddings for semantic search across semester notes.",
"skillToLearn": "Microservices architecture with Docker and Kubernetes cluster management.",
"whyHackclub": "Because HackClub does not waste time with theoretical lectures — we build real products, ship them, and get real feedback.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What defines productivity: speed, organization, or habit building? 2. What integrations (Google Calendar, Notion, Canvas) are essential? 3. How to minimize latency on mobile networks?",
"whyJoin": "I have shipped an AI study partner with 500+ active users. I enjoy turning complex user requirements into modular, scalable software architectures.",
"projectDetails": "NoteSynth AI: An offline-first markdown notes app that uses lightweight WASM embeddings for semantic search across semester notes.",
"status": "interview",
"appliedDate": "Aug 14, 2026"
},
{
"id": 1787760000003,
"recruitmentId": "recruitment-2026",
"name": "Ananya Rao",
"registerNumber": "24BCE1402",
"email": "ananya.rao2024@vitstudent.ac.in",
"phoneNumber": "+91 99012 34567",
"domain": "Design & Social Media",
"firstPreference": "Design & Social Media",
"secondPreference": "Operations",
"firstPrefReason": "I have 2 years of experience in Figma, Adobe Illustrator, and 3D Blender modeling. I have created complete brand identities for 3 collegiate festivals.",
"secondPrefReason": "I enjoy interacting with attendees and coordinating stage visuals and social media live coverage during big tech events.",
"yearOfStudy": "1st Year",
"github": "github.com/ananyarao-design",
"linkedin": "linkedin.com/in/ananya-rao-ui",
"portfolio": "ananyarao.design",
"sevenDaysBuild": "ClubDesignKit: An open Figma community design system with accessible components, neon cyberpunk assets, and badge templates.",
"skillToLearn": "Interactive 3D WebGL / Three.js animations for futuristic web interfaces.",
"whyHackclub": "HackClub has the coolest visual aesthetic on campus. I want to craft cutting-edge UI/UX that sets the club apart.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What is the emotional response we want from users (calm, energetic, minimal)? 2. What are the key accessibility (contrast/ARIA) requirements? 3. What is the visual hierarchy of daily actions?",
"whyJoin": "I have 2 years of experience in Figma, Adobe Illustrator, and 3D Blender modeling. I have created complete brand identities for 3 collegiate festivals.",
"projectDetails": "ClubDesignKit: An open Figma community design system with accessible components, neon cyberpunk assets, and badge templates.",
"status": "selected",
"appliedDate": "Aug 15, 2026"
},
{
"id": 1787760000004,
"recruitmentId": "recruitment-2026",
"name": "Varun Nair",
"registerNumber": "23BCE3109",
"email": "varun.nair2023@vitstudent.ac.in",
"phoneNumber": "+91 98860 99887",
"domain": "Finance",
"firstPreference": "Finance",
"secondPreference": "Operations",
"firstPrefReason": "I managed a 2.5 Lakh INR budget for our school annual fest. I understand vendor procurement, budget auditing, and corporate sponsorship pitching.",
"secondPrefReason": "Good finance and operations go hand in hand — I want to ensure event materials, swags, and refreshments arrive strictly on time and within budget.",
"yearOfStudy": "2nd Year",
"github": "github.com/varunnair",
"linkedin": "linkedin.com/in/varun-nair-finance",
"portfolio": "varunnair.me",
"sevenDaysBuild": "BudgetTrackr: A simple zero-based budgeting web app for student club teams with receipt image scanning and PDF expenditure reports.",
"skillToLearn": "Financial data modeling and automated sponsor ROI metric generation.",
"whyHackclub": "I want to help scale HackClub by securing top-tier corporate tech sponsors and managing club resources with total transparency.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What is the cost-benefit trade-off of self-hosting vs cloud services? 2. How will we budget infrastructure expenses? 3. What metrics prove value to stakeholders?",
"whyJoin": "I managed a 2.5 Lakh INR budget for our school annual fest. I understand vendor procurement, budget auditing, and corporate sponsorship pitching.",
"projectDetails": "BudgetTrackr: A simple zero-based budgeting web app for student club teams with receipt image scanning and PDF expenditure reports.",
"status": "selected",
"appliedDate": "Aug 16, 2026"
},
{
"id": 1787760000005,
"recruitmentId": "recruitment-2026",
"name": "Ishaan Gupta",
"registerNumber": "24BCE2210",
"email": "ishaan.gupta2024@vitstudent.ac.in",
"phoneNumber": "+91 97400 33221",
"domain": "Research & Development",
"firstPreference": "Research & Development",
"secondPreference": "Technical",
"firstPrefReason": "I read research papers on deep learning and multi-agent AI systems. I have built custom RAG pipelines using LangGraph and ChromaDB.",
"secondPrefReason": "I want to integrate backend REST endpoints with Python FastAPI AI microservices for club platforms.",
"yearOfStudy": "1st Year",
"github": "github.com/ishaangupta-ai",
"linkedin": "linkedin.com/in/ishaan-gupta-research",
"portfolio": "ishaangupta.ai",
"sevenDaysBuild": "CodePaper: A tool that takes academic CS papers and generates runnable Jupyter notebook implementations with step-by-step visualizations.",
"skillToLearn": "Model quantization (GGUF, TensorRT) and edge-device inference acceleration.",
"whyHackclub": "HackClub values experimentation and cutting-edge innovation. I want to build novel AI-powered developer tools.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. Can AI automate the repetitive tasks rather than just displaying data? 2. What latency is acceptable for student queries? 3. How to handle hallucination safeguards for academic syllabus content?",
"whyJoin": "I read research papers on deep learning and multi-agent AI systems. I have built custom RAG pipelines using LangGraph and ChromaDB.",
"projectDetails": "CodePaper: A tool that takes academic CS papers and generates runnable Jupyter notebook implementations with step-by-step visualizations.",
"status": "technical",
"appliedDate": "Aug 17, 2026"
},
{
"id": 1787760000006,
"recruitmentId": "recruitment-2026",
"name": "Pooja Reddy",
"registerNumber": "24BCE1890",
"email": "pooja.reddy2024@vitstudent.ac.in",
"phoneNumber": "+91 99160 44556",
"domain": "Operations",
"firstPreference": "Operations",
"secondPreference": "Design & Social Media",
"firstPrefReason": "Experienced in organizing community meetups and crowd management. I excel at clear communication, stage management, and volunteer onboarding.",
"secondPrefReason": "I create engaging Instagram reels and motion posters in Canva and Premiere Pro to boost event turnout.",
"yearOfStudy": "1st Year",
"github": "github.com/poojareddy",
"linkedin": "linkedin.com/in/pooja-reddy-ops",
"portfolio": "poojareddy.space",
"sevenDaysBuild": "VolunteerSync: A Kanban-style shift coordination and duty assignment board for large event organizing teams.",
"skillToLearn": "Automated CRM pipelines and attendee feedback analytics.",
"whyHackclub": "The energy, community spirit, and maker culture at HackClub inspire me to contribute my best organizational skills.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What are the common failure modes of student habits? 2. What triggers student procrastination? 3. How can the UI nudge users without feeling spammy?",
"whyJoin": "Experienced in organizing community meetups and crowd management. I excel at clear communication, stage management, and volunteer onboarding.",
"projectDetails": "VolunteerSync: A Kanban-style shift coordination and duty assignment board for large event organizing teams.",
"status": "interview",
"appliedDate": "Aug 18, 2026"
},
{
"id": 1787760000007,
"recruitmentId": "recruitment-2026",
"name": "Karan Singh",
"registerNumber": "23BCE2801",
"email": "karan.singh2023@vitstudent.ac.in",
"phoneNumber": "+91 98201 55667",
"domain": "Technical",
"firstPreference": "Technical",
"secondPreference": "Operations",
"firstPrefReason": "Full-stack builder proficient in Next.js, Node.js, and TailwindCSS. Active contributor to open-source GitHub repositories.",
"secondPrefReason": "I want to mentor new recruits and coordinate technical workshops and hackathon judging rubrics.",
"yearOfStudy": "2nd Year",
"github": "github.com/karansingh-dev",
"linkedin": "linkedin.com/in/karan-singh-tech",
"portfolio": "karansingh.live",
"sevenDaysBuild": "FastReview: A developer tool for quick GitHub pull request reviews with inline lint suggestions and benchmark comparisons.",
"skillToLearn": "WebSockets clustering and real-time multiplayer document synchronization.",
"whyHackclub": "HackClub stands for real engineering and hacking culture. I want to build side-by-side with passionate peers.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. How do we keep page load time strictly under 200ms? 2. What offline caching strategy is best for campus Wi-Fi? 3. What core actions should have keyboard shortcuts?",
"whyJoin": "Full-stack builder proficient in Next.js, Node.js, and TailwindCSS. Active contributor to open-source GitHub repositories.",
"projectDetails": "FastReview: A developer tool for quick GitHub pull request reviews with inline lint suggestions and benchmark comparisons.",
"status": "selected",
"appliedDate": "Aug 19, 2026"
},
{
"id": 1787760000008,
"recruitmentId": "recruitment-2026",
"name": "Sneha Mukherjee",
"registerNumber": "24BCE1654",
"email": "sneha.mukherjee2024@vitstudent.ac.in",
"phoneNumber": "+91 99401 77889",
"domain": "Projects",
"firstPreference": "Projects",
"secondPreference": "Technical",
"firstPrefReason": "Passionate product builder with a focus on usability and architecture. Winner of 2 national hackathons in first year.",
"secondPrefReason": "Strong fundamentals in backend systems, database modeling, and unit testing.",
"yearOfStudy": "1st Year",
"github": "github.com/snehamukherjee",
"linkedin": "linkedin.com/in/sneha-mukherjee-maker",
"portfolio": "snehamukherjee.tech",
"sevenDaysBuild": "StudySprint: A collaborative pomodoro room where students can study together, share goals, and track focus milestones in real time.",
"skillToLearn": "Cloud-native architecture and serverless edge functions on Cloudflare / Vercel.",
"whyHackclub": "HackClub is the premier community for shipping software that matters.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What are the key bottlenecks students face when planning their week? 2. Can we support zero-login instant use? 3. How do we gamify milestones without dark patterns?",
"whyJoin": "Passionate product builder with a focus on usability and architecture. Winner of 2 national hackathons in first year.",
"projectDetails": "StudySprint: A collaborative pomodoro room where students can study together, share goals, and track focus milestones in real time.",
"status": "screening",
"appliedDate": "Aug 20, 2026"
},
{
"id": 1787760000009,
"recruitmentId": "recruitment-2026",
"name": "Tanish Bhat",
"registerNumber": "24BCE1987",
"email": "tanish.bhat2024@vitstudent.ac.in",
"phoneNumber": "+91 98330 11223",
"domain": "Design & Social Media",
"firstPreference": "Design & Social Media",
"secondPreference": "Projects",
"firstPrefReason": "UI/UX enthusiast with a strong eye for typography, micro-interactions, and dark mode aesthetics. Created 10+ web mockups in Figma.",
"secondPrefReason": "I convert Figma designs into pixel-perfect React and TailwindCSS code.",
"yearOfStudy": "1st Year",
"github": "github.com/tanishbhat-ui",
"linkedin": "linkedin.com/in/tanish-bhat-design",
"portfolio": "tanishbhat.design",
"sevenDaysBuild": "DevPalette: An intelligent color palette and typography contrast tester tailored for web developers and designers.",
"skillToLearn": "Framer Motion complex layout animations and design system token architecture.",
"whyHackclub": "I love HackClub’s bold visual identity. I want to build world-class user experiences for our platforms.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What visual layout maximizes focus and minimizes clutter? 2. How should error states and empty states guide the student? 3. Is high contrast mode supported for night study sessions?",
"whyJoin": "UI/UX enthusiast with a strong eye for typography, micro-interactions, and dark mode aesthetics. Created 10+ web mockups in Figma.",
"projectDetails": "DevPalette: An intelligent color palette and typography contrast tester tailored for web developers and designers.",
"status": "technical",
"appliedDate": "Aug 21, 2026"
},
{
"id": 1787760000010,
"recruitmentId": "recruitment-2026",
"name": "Akshat Mehta",
"registerNumber": "23BCE1122",
"email": "akshat.mehta2023@vitstudent.ac.in",
"phoneNumber": "+91 98112 33445",
"domain": "Finance",
"firstPreference": "Finance",
"secondPreference": "Operations",
"firstPrefReason": "Handled sponsorship generation and budget balance sheets for college hackathons. Strong pitching and negotiation skills.",
"secondPrefReason": "Experienced in vendor logistics, food catering coordination, and prize disbursement.",
"yearOfStudy": "2nd Year",
"github": "github.com/akshatmehta",
"linkedin": "linkedin.com/in/akshat-mehta-finance",
"portfolio": "akshatmehta.com",
"sevenDaysBuild": "SponsorDeck: An interactive pitch deck web viewer that tracks sponsor engagement and click-throughs in real time.",
"skillToLearn": "Financial analytics and automated invoicing systems.",
"whyHackclub": "I want to ensure HackClub has the financial resources and industry sponsorships to run the biggest hackathons in India.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What ROI metrics are sponsors looking for in student tools? 2. How can we make the tool free for students while sustainable? 3. What are the key operating costs?",
"whyJoin": "Handled sponsorship generation and budget balance sheets for college hackathons. Strong pitching and negotiation skills.",
"projectDetails": "SponsorDeck: An interactive pitch deck web viewer that tracks sponsor engagement and click-throughs in real time.",
"status": "interview",
"appliedDate": "Aug 22, 2026"
},
{
"id": 1787760000011,
"recruitmentId": "recruitment-2026",
"name": "Kavya Hegde",
"registerNumber": "24BCE1334",
"email": "kavya.hegde2024@vitstudent.ac.in",
"phoneNumber": "+91 99800 66778",
"domain": "Research & Development",
"firstPreference": "Research & Development",
"secondPreference": "Projects",
"firstPrefReason": "Passionate about Natural Language Processing, knowledge graphs, and semantic search. Built a domain-specific Q&A bot for engineering syllabi.",
"secondPrefReason": "I want to build full-stack product interfaces for R&D machine learning pipelines.",
"yearOfStudy": "1st Year",
"github": "github.com/kavyahegde-ai",
"linkedin": "linkedin.com/in/kavya-hegde-nlp",
"portfolio": "kavyahegde.dev",
"sevenDaysBuild": "GraphNotes: An intelligent graph-based knowledge mapping tool that automatically connects related concepts across lecture PDFs.",
"skillToLearn": "Knowledge Graph embeddings and hybrid search (Vector + BM25).",
"whyHackclub": "HackClub provides the ideal sandbox for pushing the boundaries of technology and learning from talented peers.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What questions do students struggle to find answers for quickly? 2. How do we ensure answers cite the exact textbook page? 3. How to optimize inference latency on low-end laptops?",
"whyJoin": "Passionate about Natural Language Processing, knowledge graphs, and semantic search. Built a domain-specific Q&A bot for engineering syllabi.",
"projectDetails": "GraphNotes: An intelligent graph-based knowledge mapping tool that automatically connects related concepts across lecture PDFs.",
"status": "selected",
"appliedDate": "Aug 23, 2026"
},
{
"id": 1787760000012,
"recruitmentId": "recruitment-2026",
"name": "Reyansh Shetty",
"registerNumber": "24BCE1772",
"email": "reyansh.shetty2024@vitstudent.ac.in",
"phoneNumber": "+91 98920 11447",
"domain": "Operations",
"firstPreference": "Operations",
"secondPreference": "Finance",
"firstPrefReason": "Experienced in handling stage setups, sound/mic equipment, and guest speaker itineraries for inter-college summits.",
"secondPrefReason": "I can maintain detailed expense logs and coordinate with college admin for budget reimbursements.",
"yearOfStudy": "1st Year",
"github": "github.com/reyanshshetty",
"linkedin": "linkedin.com/in/reyansh-shetty-ops",
"portfolio": "reyanshshetty.me",
"sevenDaysBuild": "EventLedger: A mobile receipt capture and instant budget reconciliation app.",
"skillToLearn": "Crisis management and large-scale crowd flow optimization.",
"whyHackclub": "I love fast-moving event environments where problem-solving happens in real time.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What are the common points of failure in event schedules? 2. How to broadcast real-time schedule changes to 500 attendees?",
"whyJoin": "Experienced in handling stage setups, sound/mic equipment, and guest speaker itineraries for inter-college summits.",
"projectDetails": "EventLedger: A mobile receipt capture and instant budget reconciliation app.",
"status": "screening",
"appliedDate": "Aug 24, 2026"
},
{
"id": 1787760000013,
"recruitmentId": "recruitment-2026",
"name": "Sara Khan",
"registerNumber": "23BCE2991",
"email": "sara.khan2023@vitstudent.ac.in",
"phoneNumber": "+91 98199 44332",
"domain": "Technical",
"firstPreference": "Technical",
"secondPreference": "Research & Development",
"firstPrefReason": "Built production backend microservices in Go and Node.js. Experience with Docker containerization and CI/CD GitHub Actions.",
"secondPrefReason": "I want to experiment with WebAssembly compilation to run low-latency AI models in the browser.",
"yearOfStudy": "2nd Year",
"github": "github.com/sarakhan-dev",
"linkedin": "linkedin.com/in/sara-khan-tech",
"portfolio": "sarakhan.dev",
"sevenDaysBuild": "GoProxy: A lightweight, low-memory reverse proxy and rate limiter for campus student projects.",
"skillToLearn": "WASM & Rust systems programming for web performance.",
"whyHackclub": "HackClub has the sharpest developers on campus. I want to build and learn with the best.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What is the memory and CPU footprint budget on mobile? 2. How can we make data synchronization conflict-free?",
"whyJoin": "Built production backend microservices in Go and Node.js. Experience with Docker containerization and CI/CD GitHub Actions.",
"projectDetails": "GoProxy: A lightweight, low-memory reverse proxy and rate limiter for campus student projects.",
"status": "technical",
"appliedDate": "Aug 24, 2026"
},
{
"id": 1787760000014,
"recruitmentId": "recruitment-2026",
"name": "Aryan Das",
"registerNumber": "24BCE1550",
"email": "aryan.das2024@vitstudent.ac.in",
"phoneNumber": "+91 99201 88334",
"domain": "Projects",
"firstPreference": "Projects",
"secondPreference": "Design & Social Media",
"firstPrefReason": "Experienced in full-stack web applications and agile product development. Built an open-source campus lost-and-found portal.",
"secondPrefReason": "I create clean Figma wireframes before writing code to ensure intuitive user flows.",
"yearOfStudy": "1st Year",
"github": "github.com/aryandas-builds",
"linkedin": "linkedin.com/in/aryan-das-vit",
"portfolio": "aryandas.dev",
"sevenDaysBuild": "CampusLostFound: A community portal with image-based item matching and verified student claim system.",
"skillToLearn": "Advanced state management with Zustand and optimistic UI updates.",
"whyHackclub": "I want to build software that solves real campus pain points.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. What is the primary user job-to-be-done? 2. How do we reduce the number of clicks to complete an action?",
"whyJoin": "Experienced in full-stack web applications and agile product development. Built an open-source campus lost-and-found portal.",
"projectDetails": "CampusLostFound: A community portal with image-based item matching and verified student claim system.",
"status": "selected",
"appliedDate": "Aug 25, 2026"
},
{
"id": 1787760000015,
"recruitmentId": "recruitment-2026",
"name": "Meera Iyer",
"registerNumber": "24BCE1289",
"email": "meera.iyer2024@vitstudent.ac.in",
"phoneNumber": "+91 98401 55221",
"domain": "Design & Social Media",
"firstPreference": "Design & Social Media",
"secondPreference": "Operations",
"firstPrefReason": "Specialized in 3D motion graphics in Blender and typography. Managed social media campaigns with 100k+ impressions.",
"secondPrefReason": "I want to organize interactive community design critique sessions and beginner UI workshops.",
"yearOfStudy": "1st Year",
"github": "github.com/meeraiyer-design",
"linkedin": "linkedin.com/in/meera-iyer-creative",
"portfolio": "meeraiyer.art",
"sevenDaysBuild": "MotionVault: A curated collection of open-source Lottie animations and SVG micro-interactions for developers.",
"skillToLearn": "Shader programming with GLSL and Three.js canvas shaders.",
"whyHackclub": "HackClub has an iconic aesthetic. I want to level up the club branding across web and social.",
"expectations": "Collaborative code reviews, peer mentorship, and shipping real hackathon projects.",
"productiveWebsiteQuestions": "1. How does design impact cognitive load? 2. What color palettes maintain focus during late-night work?",
"whyJoin": "Specialized in 3D motion graphics in Blender and typography. Managed social media campaigns with 100k+ impressions.",
"projectDetails": "MotionVault: A curated collection of open-source Lottie animations and SVG micro-interactions for developers.",
"status": "rejected",
"appliedDate": "Aug 25, 2026"
}
],
"allowedEmails": [
{
"email": "admin@vitstudent.ac.in",
"addedBy": "seed"
},
{
"email": "user@vitstudent.ac.in",
"addedBy": "seed"
},
{
"email": "khandelwalprachi42@gmail.com",
"addedBy": "seed"
},
{
"email": "shaurya.verma@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "raj.roy@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "shaurya.reddy@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "raj.joshi@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "ananya.rao2024@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "varun.nair2023@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "karan.singh2023@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "kavya.hegde2024@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
},
{
"email": "meera.iyer2024@vitstudent.ac.in",
"addedBy": "Recruitment Seed"
}
]
}