forked from PawiX25/YSWS-Catalog
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathapi.json
More file actions
1847 lines (1847 loc) · 77.6 KB
/
api.json
File metadata and controls
1847 lines (1847 loc) · 77.6 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
{
"limitedTime": [
{
"name": "Flavortown",
"deadline": "2026-03-31T00:00:00.000Z",
"description": "Cook personal projects. Win free prizes.",
"website": "https://flavortown.hackclub.com/?ref=ysws-catalog",
"slack": "https://hackclub.enterprise.slack.com/archives/C09MPB8NE8H",
"slackChannel": "#flavortown",
"status": "active"
},
{
"name": "Sleepover",
"deadline": "2026-05-01T00:00:00.000Z",
"description": "Learn to code and fly to an all girls slumber party hackathon!",
"website": "https://sleepover.hackclub.com/?ref=ysws-catalog",
"slack": "https://hackclub.enterprise.slack.com/archives/C0A9UNRF96V",
"slackChannel": "#athena-sleepover",
"status": "active"
},
{
"name": "Stasis",
"deadline": "2026-05-18T00:00:00.000Z",
"description": "Build hardware projects and fly to a hardware hackathon in Austin, Texas",
"website": "https://stasis.hackclub.com/?ref=ysws-catalog",
"slack": "https://hackclub.enterprise.slack.com/archives/C09HSQM550A",
"slackChannel": "#stasis",
"status": "active"
},
{
"name": "Slushies",
"deadline": "2026-04-07T23:59:59",
"description": "Earn $5 for deploying your Flask app",
"website": "https://slushies.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C097GP305G8",
"slackChannel": "#slushies",
"status": "active"
},
{
"name": "Scraps",
"deadline": "2026-03-04T23:59:59",
"description": "Create projects, earn scraps, try your luck, get prizes, repeat",
"website": "https://scraps.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C0ADMQFFU56",
"slackChannel": "#scraps",
"status": "active"
},
{
"name": "Reboot",
"deadline": "2026-02-11T23:59:59",
"description": "Restore old projects, upgrade your desktop setup!",
"website": "https://reboot.hackclub.com/",
"slack": "https://hackclub.enterprise.slack.com/archives/C0404BSAS0J",
"slackChannel": "#reboot",
"status": "active"
},
{
"name": "HackCraft",
"description": "Create a Minecraft mod, get Stickers, Minecraft, another game or a server and terraria!",
"website": "https://hackcraft.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C07NQ5QAYNQ",
"slackChannel": "#mc-modding",
"status": "active",
"detailedDescription": "Join HackCraft to build and ship your own Minecraft mod. Access exclusive resources and a supportive community.",
"steps": [
"Make a mod.",
"Publish it on Modrinth.",
"Submit your mod to Hack Club.",
"Receive prizes and enjoy!"
],
"requirements": [
"Basic knowledge of Java programming."
],
"details": [
"Participants will receive a Minecraft Java Edition account, other game like hytale or server upon successful submission.",
"Support is available through our Slack community."
]
},
{
"name": "Pxl",
"description": "Code any project, place pixels on a r/place-like canvas!",
"website": "https://pxl.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C09CKP56TK2",
"slackChannel": "#pxl",
"status": "active",
"deadline": "2026-1-31",
"detailedDescription": "Pxl is a YSWS where you can either code for pixels (you can double dip this, no need to submit!), or make projects for merch with the final canvas!",
"steps": [
"Join the Slack Channel",
"Spend time coding anything",
"Place pixels",
"Optionally- ship a project for merch!"
]
},
{
"name": "Hackvault",
"description": "You make a password manager and we'll ship you a Yubikey!",
"website": "https://hackvault.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C09KQ58CMHD",
"slackChannel": "#hackvault",
"status": "active",
"deadline": "2026-2-22",
"detailedDescription": "Hackvault is the epic YSWS where you can earn either a Yubikey 5C for 5 hours of work making a password manager or for 10 hours a Yubikey Bio! Make anything from a server os for passwords to a mobile app!"
},
{
"name": "HomeLab",
"description": "You ship projects related to having a self hosted server at home, and we ship things to help you create your own setup",
"website": "https://homelab.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C09U5BFU3GA",
"slackChannel": "#home-lab",
"status": "active",
"deadline": "2026-1-31",
"detailedDescription": "A YSWS where you ship projects related to having a self hosted server at home (tracked with hackatime), and we ship things to help you create your own setup (or update a setup you already have!)\\"
},
{
"name": "Haxmas",
"description": "Do workshops, get prizes! Repeat til Christmas!",
"website": "https://haxmas.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C0A277A4FP0",
"slackChannel": "#haxmas",
"status": "active",
"deadline": "2025-12-25T00:00:00.000Z",
"detailedDescription": "Welcome to Haxmas; 12 days of hands-on hacking! From December 13-25, a new workshop drops each day, created by a different member of the Hack Club community. Each workshop is only available on its specific day (day 1's workshop on December 13, day 2's workshop on December 14, and so on), so make sure to participate daily! Each workshop comes with its own special prize, and you'll earn snowflakes that you can redeem for stickers, swag, and more!"
},
{
"name": "Meow",
"description": "Spend 5 hours building something to do with cats, get a cat plushie! Ends Christmas Day!",
"website": "https://meow.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C026LDN0ADB",
"slackChannel": "#meow",
"status": "active",
"deadline": "2025-12-25T00:00:00.000Z",
"detailedDescription": "Meow is a Hack Club YSWS where we'll send you a cat plushie if you ship a project to do with cats!\n",
"steps": [
"Join the Slack channel",
"Spend over 5 hours (tracked with Hackatime) building a project to do with cats",
"Fill out the submission form",
"Receive your cat plushie!"
],
"details": [
"You can make anything, as long as it's to do with cats, you could make a website, an app, or even a hardware project",
"Must be shipped (accessible via a URL or as an executable, or fully built for hardware)",
"US participants receive physical plushie, international participants receive $25 in HCB grant cards to buy their plushie."
]
},
{
"name": "Woof",
"description": "Spend 5 or more hours making a dog-themed project and get a dog plushie!",
"website": "https://woof.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C08LCGSECQP",
"slackChannel": "#woof",
"status": "active",
"deadline": "2026-01-14T00:00:00.000Z",
"detailedDescription": "Spend 5 hours on a dog related project (with hackatime) and get a dog plushie either shipped from HQ (US only) or through a $25 HCB Grant card.",
"steps": [
"Join the Slack Channel",
"Spend 5 or more hours coding (tracked with hackatime)",
"Ship - Fill out the submission form",
"Get a dog plushie!"
],
"details": [
"Your project has to be related to dogs",
"You must track code time with Hackatime and push to GitHub",
"Your project has to be made by you 🫵",
"You need a demo link for your project (URL, downloadable executable or fully built for hardware)",
"US participants receive physical plushie (shipped to address), international participants receive $25 in HCB grant cards to buy their plushie."
]
},
{
"name": "Mosaic",
"description": "Build a website every month with a different theme. Get stuff. Repeat.",
"website": "https://mosaic.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C09Q9CD9ZS8",
"slackChannel": "#mosaic",
"status": "active",
"deadline": "2026-03-14T00:00:00.000Z",
"detailedDescription": "For 12 months, every month you get a random theme to build a full-stack web application! Earn cool prizes like a 3D Printer Grant and even a 1 year Render Hosting Plan!!",
"steps": [
"Join the Slack Channel",
"Spend 30 or more hours (tracked with hackatime)",
"Submit it to review!",
"Get your rewards!!"
]
},
{
"name": "Hack Club The Game",
"deadline": "2026-04-10T00:00:00.000Z",
"description": "Code for 40 hours & fly out to Manhattan to compete in a IRL adventure game!",
"website": "https://game.hackclub.com/?ref=ysws-catalog",
"slack": "https://hackclub.enterprise.slack.com/archives/C088DT8P7B8",
"slackChannel": "#hack-club-the-game",
"status": "active"
},
{
"name": "Wacky Files",
"website": "https://wacky.hackclub.com/",
"deadline": "2026-03-1",
"description": "Find the wackiest ways to store files for free and earn $3/hour with multipliers!",
"slack": "https://hackclub.enterprise.slack.com/archives/C09M0TRLRV0",
"slackChannel": "#wacky-files",
"status": "active",
"detailedDescription": "Sick of cloud-based storage? Own your files the weird way! Find the wackiest and most creative ways to host files for free. Convert binary to static and upload to YouTube, 3D print notches to encode data, or invent something completely absurd - just keep it wacky!\n\nRequirements:\n- Must be able to store the test banana image in all its yellow glory\n- Solution must be reproducible and documented\n- A representation is okay (storing binary without rendering is fine)\n- Must be able to upload AND download the file\n- Track time with Hackatime (use Lapse for hardware projects)\n\nEarn $3/hour baseline, with voting multipliers: ⭐ = 1x, ⭐⭐ = 2x, ⭐⭐⭐ = 3x\n",
"steps": [
"Join the Slack channel",
"Dream up the wackiest file storage method",
"Build it and document everything",
"Track your time with Hackatime",
"Submit for voting!"
],
"details": [
"No CDN or existing solutions used in their intended way",
"Must be your own creative implementation",
"The wackier the better!"
]
},
{
"name": "Bauble",
"description": "3D model an ornament, get it printed and put on the HQ tree! Ends December 25th.",
"website": "https://bauble.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C0A1SH6PF89",
"slackChannel": "#bauble",
"status": "active",
"deadline": "2025-12-25T00:00:00.000Z",
"detailedDescription": "Bauble is a Hack Club YSWS program where you 3D model an ornament, and you get it printed out put on Oscar, the tree at Hack Club’s HQ in Vermont! After the tree gets taken down, you'll receive your ornament in the mail!\n",
"steps": [
"3D model an ornament in the CAD software of your choosing",
"Export it as an STL",
"Fill out the submit form"
],
"details": [
"Your ornament must be modeled by you, models downloaded off the internet do not count",
"Your ornament must be exported in STL format",
"Your ornament must have a hole of a minimum 5mm diameter or some other way a hook or string could be attached",
"Your ornament must be no larger than 100 x 100 x 100 mm in all directions",
"Your ornament must be appropriate",
"Your ornament must be able to print without supports"
]
},
{
"name": "Fudge",
"description": "Make any project you want, get fudge right from the Shelburne County Store next to HQ!",
"website": "https://fudge.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C09UZPNGMMM",
"slackChannel": "#fudge-fudge-fudge",
"status": "active",
"deadline": "2025-12-31T00:00:00.000Z",
"detailedDescription": "Ship any project you want (tracked with Hackatime), get fudge from the Shelburne County Store right next to Hack Club HQ.\nWork for three hours and get half a pound of fudge, six hours for a full pound.\n",
"steps": [
"Make a project",
"Track your time with Hackatime",
"Work on it for 3+ hours",
"Get fudge!"
],
"details": [
"Fudge is shipped from the Shelburne County Store in Shelburne, VT, USA",
"3 hours for half a pound, 6 hours for a full pound",
"Hackatime is required",
"Not limited to the US, but shipping may be expensive and we can't guarantee fudge quality",
"HCB grant cards are available as an alternative to fudge ($10 for half pound, $20 for full pound)",
"Fudge is stackable (1 lb for every 6 hours), but be reasonable (higher shipping costs)"
]
},
{
"name": "Construct",
"description": "Design projects using CAD, Get a 3d printer to print them!",
"website": "https://construct.hackclub.com",
"slack": "https://hackclub.enterprise.slack.com/archives/C09TM7XKSSY",
"slackChannel": "#construct",
"status": "active",
"deadline": "2026-03-09T00:00:00.000Z",
"steps": [
"Log into construct.hackclub.com",
"Make projects!",
"Submit!",
"Get a cool new 3d printer!"
]
},
{
"name": "Carnival",
"description": "Build an extension, plugin, or widget get prizes",
"website": "https://carnival.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C091ZRTMF16",
"slackChannel": "#carnival",
"deadline": "2026-02-26T23:59:59",
"status": "active"
},
{
"name": "Remix",
"description": "Remix an existing song's beats in Strudel and get 1 month of Spotify, Apple Music, or SoundCloud Pro",
"website": "https://remix.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C095614E9B3",
"slackChannel": "#remixchallenge",
"status": "active",
"deadline": "2025-11-30T00:00:00.000Z"
},
{
"name": "Midnight",
"description": "Spend 70 hours building personal projects, fly to a murder mystery hackathon in Vienna, Austria - Jan 2026",
"website": "https://midnight.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09L1BDSC68",
"slackChannel": "#midnight",
"status": "ended",
"deadline": "2025-12-28T00:00:00.000Z"
},
{
"name": "Axiom",
"description": "YSWS for math/science projects!",
"website": "https://axiom.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09K4HZJ2DP",
"slackChannel": "#axiom",
"status": "ended"
},
{
"name": "Accelerate",
"description": "Build physics simulations, get prizes!",
"website": "https://accelerate.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C09DPBK2K4K",
"slackChannel": "#accelerate",
"status": "active",
"deadline": "2026-01-10T00:00:00.000Z"
},
{
"name": "Blueprint",
"description": "Design a hardware project, up to $400 to build it!",
"website": "https://blueprint.hackclub.com/?utm_source=ysws",
"slack": "https://hackclub.slack.com/archives/C083S537USC",
"slackChannel": "#blueprint",
"status": "active",
"deadline": "2026-03-31T00:00:00.000Z"
},
{
"name": "Aces",
"description": "Create your own digital board game, get a grant to make it a real physical game, and then get a trip to Washington DC to show off your game to the public at AwesomeCon!",
"website": "https://aces.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C09L87DU3T5",
"slackChannel": "#aces",
"status": "active",
"deadline": "2026-03-13T23:59:59"
},
{
"name": "The Zoo",
"description": "Make an animal themed Svelte site, earn Ikea Animal Plushies",
"website": "https://zoo.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C08K37F66AK",
"slackChannel": "#the-zoo",
"status": "active",
"deadline": "2025-12-31T23:59:00",
"detailedDescription": "The Zoo is a Svelte YSWS where participants build an animal themed Svelte site and earn Mynts (currency) which can be turned into an HCB grant at the end to buy Ikea plushies. Get one giant Djungleskog, or multiple mini Blahaj, it's all up to you. Here's the best part: the better your submission is, the more Mynts you earn!\n"
},
{
"name": "Cœur",
"description": "Make an e-card, earn heart themed prizes (including a sweatshirt!!!)",
"website": "https://coeur.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C0A6MCHFFEU",
"slackChannel": "#coeur",
"status": "active",
"deadline": "2026-03-15T23:59:59",
"detailedDescription": "E-cards are a really cool and engaging way to send someone a card, and there's so many different things you can do with them! Cœur is a new YSWS where participants build e-cards about something or someone that they like and earn Hearts (currency) which can used to buy different heart themed prizes (including special stickers and a sweatshirt)! Participants can make multiple submissions and save up for bigger prizes!\n"
},
{
"name": "Shiba Arcade",
"description": "Make a game with Godot, earn SSS, and get invited to build an arcade in Tokyo (flight stipends available!)",
"website": "https://shiba.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C09AG5L0L03",
"slackChannel": "#shiba",
"status": "ended",
"deadline": "2025-10-20T23:59:59",
"detailedDescription": "Shiba is a two-part adventure about game development. Create a game with Godot (an open-source game engine), earn SSS, use that for shop items, but most importantly, an invitation (and flight stipends) to Tokyo, Japan with 29 other Hack Clubbers to build a pop-up arcade!\n"
},
{
"name": "Milkyway",
"description": "Make games, build houses, and get awesome prizes like a flight to a hyper-immersive game jam in Singapore!",
"website": "https://milkyway.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09EZSEMB16",
"slackChannel": "#milkyway",
"status": "active",
"deadline": "2026-03-20T23:59:59.000Z"
},
{
"name": "Haunted Halloween",
"description": "Make a halloween theme for a website or app, get a custom halloween themed sticker and candy!",
"website": "https://halloween.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09P5HGE40G",
"slackChannel": "#haunted-halloween",
"status": "active",
"deadline": "2025-11-03T00:00:00.000Z"
},
{
"name": "Dummies V2",
"description": "Learn A new programming language and make a project with that, And We will send you school supplies, books, and study materials",
"website": "https://dummies.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C096M3EV67M",
"slackChannel": "#dummies",
"status": "active",
"deadline": "2025-12-23T00:00:00.000Z"
},
{
"name": "Siege",
"description": "Code every week, get prizes. Make it to the end, get a framework!",
"website": "https://siege.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C08SKC6P85V",
"slackChannel": "#siege",
"status": "ended",
"deadline": "2025-12-08T00:00:00.000Z"
},
{
"name": "iplace",
"description": "A collaborative canvas of websites, made by Hack Clubbers! Get hosting and domain credits!",
"website": "https://iplace.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09NB7UDSDD",
"slackChannel": "#iplace",
"status": "active",
"deadline": "2025-11-10T00:00:00.000Z"
},
{
"name": "Emerge",
"description": "create an emergent behaviour, place pixels on the group canvas, get the canvas shipped to you!",
"website": "https://emerge.hackclub.com/?utm_source=ysws",
"slack": "https://hackclub.slack.com/archives/C09900Q6873/p1759787865899939",
"slackChannel": "#emerge",
"status": "active",
"deadline": "2025-11-1"
},
{
"name": "Reactive",
"description": "Ship a website built with React, get $15 to buy a domain.",
"website": "http://reactive.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C090S7Q2HT4",
"slackChannel": "#reactive",
"status": "active",
"deadline": "2025-10-16",
"requirements": "Basic knowledge of HTML and CSS, A little knowledge of JavaScript."
},
{
"name": "Hacksaber",
"description": "Ship a Beat Saber Modchart, and we'll ship custom T-Shirt designed by a HC member, or a copy of the game! Live YSWS!",
"website": "https://hacksaber.vercel.app/",
"slack": "https://hackclub.slack.com/archives/C096K1ZEXDL",
"slackChannel": "#hacksaber",
"status": "active"
},
{
"name": "Fanpage",
"description": "Ship a project that celebrates a fandom, and we ship you something related to it!",
"website": "https://fanpage.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09A37XECJV",
"slackChannel": "#fanpage",
"status": "active",
"deadline": "2025-10-17T00:00:00.000Z"
},
{
"name": "Hackberry",
"description": "Built a machine learning project in python, get a personalized raspberry pi kit!",
"website": "https://hackberry.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09A37XECJV",
"slackChannel": "#hackberry-hub",
"status": "active",
"deadline": "2025-10-13T00:00:00.000Z"
},
{
"name": "Waveform",
"description": "Make your own waveform visualizer, get a grant to buy music",
"website": "https://waveform.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09AX5PLLUS",
"slackChannel": "#waveform",
"status": "active",
"deadline": "2025-09-26T00:00:00.000Z"
},
{
"name": "birthday-cards",
"description": "You ship a birthday themed project we ship a birthday card!",
"website": "https://birthday-cards.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C099VPF7V3P",
"slackChannel": "#birthday-cards-ysws",
"status": "active",
"deadline": "2026-08-08T23:59:59"
},
{
"name": "Miniverge",
"description": "Spend 2 hours on a bot, get stickers and a chance for a Blåhaj or Minecraft!",
"website": "https://converge.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C091UF79VDM",
"slackChannel": "#miniverge",
"status": "active",
"deadline": "2025-09-28T00:00:00.000Z"
},
{
"name": "Penumbra",
"description": "Make shaders, and we'll ship you GPUs and posters!",
"website": "https://penumbra.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09EC7ZS05S",
"slackChannel": "#penumbra",
"status": "active",
"deadline": "2025-10-08T23:59:59",
"detailedDescription": "Penumbra is a YSWS, where you create shaders on ShaderToy, and get posters of your shaders shipped right to your doorstep! If you spend up to 45 hours across multiple ships, you'll be able to get a GPU like an RTX 3050!"
},
{
"name": "Playphone",
"description": "Work together to built a godot game, get a custom hackclub badge",
"website": "https://playphone.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C09GJS3PH47",
"slackChannel": "#playphone",
"status": "active",
"deadline": "2025-12-01T23:59:59",
"detailedDescription": "Playphonee is an event where people take turns working on one godot game, and try to build an amazing game together. Everyone who participates will get a cool hackclub badge"
},
{
"name": "Clutter",
"description": "You ship something to organize your digital life. We ship you a grant to buy something to organize your physical life.",
"website": "https://clutter.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C0997C887M3",
"slackChannel": "#clutter",
"status": "active",
"deadline": "2025-09-17T23:59:59"
},
{
"name": "Fusering",
"description": "Design a keyring, get your keyring and a carabiner to hang it from!",
"website": "https://fusering.hackclub.com",
"slackChannel": "#fusering",
"slack": "https://hackclub.slack.com/archives/C098U42PD2A",
"status": "active"
},
{
"name": "iFrame",
"description": "Draw or edit images using any programming language and we will hang your custom image on HQ wall and send a copy to you",
"website": "https://iframe.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C098LMVKPCM",
"slackChannel": "#iframe",
"status": "ended"
},
{
"name": "BakeBuild",
"description": "Design a cookie cutter, get it shipped!",
"detailedDescription": "You ship : A CAD model of a cookie cutter, we ship : A 3D printed model of your custom cookie cutter & cookies!",
"website": "https://bakebuild.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C0844MV2JM9",
"slackChannel": "#bakebuild",
"status": "active"
},
{
"name": "Summer of Making",
"description": "Build stuff. Get stuff. Repeat.",
"website": "https://summer.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C015M4L9AHW",
"slackChannel": "#summer-of-making",
"status": "active",
"deadline": "2025-09-30T23:59:59",
"participants": 10985
},
{
"name": "RSS",
"description": "Build something cool with RSS feeds, get a domain grant.",
"website": "https://rss.hackclub.com/",
"slackChannel": "#rss",
"status": "active",
"deadline": "2025-11-07T00:00:00.000Z"
},
{
"name": "Moonshot",
"description": "Spend 75 hours building personal projects, fly to a hackathon in Orlando, FL Dec 12–15",
"website": "https://moonshot.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09J2HHRQ95",
"slackChannel": "#moonshot",
"status": "ended"
},
{
"name": "Hivemind",
"description": "Create a roguelike in 7 days, get itch.io credit.",
"website": "https://hivemind.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C096T7JRQRG",
"slackChannel": "#hivemind-",
"status": "ended",
"deadline": "2025-08-07T23:59:59",
"steps": [
"Create a traditional roguelike in 7 days.",
"Chronicle its development across 7 devlogs.",
"Get $2.50 in itch.io credit for each approved hour you spend."
]
},
{
"name": "Gemini",
"description": "Ship An Android App and get a FREE Android Phone + Dev License!",
"website": "https://gemini.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C094VQKH1FV",
"slackChannel": "#gemini",
"status": "ended",
"deadline": "2025-08-11T23:59:59"
},
{
"name": "Endpointer",
"description": "Build a REST API, get a grant for Raspberry Pi or Cloud Credits",
"website": "https://endpointer.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C097M5JRT7F",
"slackChannel": "#endpointer",
"status": "ended",
"deadline": "2025-08-12T23:59:59"
},
{
"name": "Portal-VR",
"description": "Build an AR/VR application, get a VR headset!",
"website": "https://portalvr.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C096CPJ1HCN",
"slackChannel": "#portal-vr",
"status": "ended",
"deadline": "2025-08-23T23:59:59"
},
{
"name": "Timeless",
"description": "You have 10 days. Make a video game that could last someone 10 years.",
"website": "https://timeless.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C0956A8CL86",
"slackChannel": "#timeless",
"status": "ended",
"deadline": "2025-07-24T23:59:59"
},
{
"name": "Toybox",
"description": "You ship a daily game, we ship stickers + keycap keychain + steam gift card. Make the next Wordle.",
"website": "https://toybox.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C096HCT11G9",
"slackChannel": "#toybox",
"status": "ended",
"deadline": "2025-07-22T23:59:59"
},
{
"name": "Dummies",
"description": "learn a new language, recieve a guide book!",
"website": "https://dummies.hackclub.com/",
"deadline": "2025-08-21T23:59:59.000Z",
"detailedDescription": "Join Dummies to take on projects in new languages and earn grant cards for books!",
"steps": [
"Develop and publish a project",
"Submit it to Hack Club",
"Receive a grant for books!"
],
"requirements": [
"taking on a NEW skill",
"resulting project can be seen from a weblink"
],
"slack": "https://app.slack.com/client/T0266FRGM/C096M3EV67M",
"slackChannel": "#Dummies",
"status": "ended"
},
{
"name": "Twist",
"description": "Make an esolang, get stickers and a $40 electronics grant.",
"website": "https://twist.hackclub.dev/",
"slack": "https://hackclub.slack.com/archives/C092A93FA4X",
"slackChannel": "#twist-ysws",
"status": "ended",
"deadline": "2025-07-16T23:59:59"
},
{
"name": "Terminal Craft v5",
"description": "Build and publish your own terminal program to earn $5/hr",
"website": "https://terminalcraft.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C08F58MT3GV",
"slackChannel": "#terminal-craft",
"status": "ended",
"deadline": "2025-10-20T23:59:59"
},
{
"name": "Infinity",
"description": "Build a website with an infinite realtime canvas, get awesome prizes!",
"website": "https://infinity.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C098ARHLXFW",
"slackChannel": "#infinity",
"status": "ended",
"deadline": "2025-08-22T23:59:59"
},
{
"name": "Tile",
"description": "Build a tile, get a tile, tile the tiles!",
"website": "https://tile.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C097E6ZAF99",
"slackChannel": "#tile",
"status": "ended",
"deadline": "2025-08-18T23:59:59"
},
{
"name": "Minigame",
"description": "A YSWS where you build \"mini\" 5 hour games and earn a $20 grant for each one! At the end everyone's games will be combined together to make a big Minigame collection!",
"website": "https://minigame.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C093SSC3Z16",
"slackChannel": "#minigame",
"status": "ended",
"deadline": "2025-07-18T23:59:59"
},
{
"name": "Squeak",
"description": "Design a mouse case and receive the case and parts!",
"website": "https://squeak.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C094458MVMX",
"slackChannel": "#squeak",
"status": "ended",
"deadline": "2025-07-13T23:59:59"
},
{
"name": "Pathfinder",
"description": "Make a custom PCB controller board and efidget",
"website": "https://pathfinder.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C0943DE80E4",
"slackChannel": "#pathfinder",
"status": "ended",
"deadline": "2025-07-05T23:59:59"
},
{
"name": "Hackfinger",
"description": "You design a custom appendage (finger, tail, leg, anything you want!) and get your design printed along with a custom control board.",
"website": "https://hackfinger.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C095T0TQ5A8",
"slackChannel": "#hackfinger",
"status": "ended",
"deadline": "2025-07-20T23:59:59"
},
{
"name": "Jumpstart",
"description": "Game-dev YSWS running July 9th to Aug 9th ✨",
"website": "https://jumpstart.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C0931T5SEH4",
"slackChannel": "#jumpstart",
"status": "ended",
"deadline": "2025-08-09T23:59:59"
},
{
"name": "Reinforced",
"description": "Build a game, build a bot to beat it, get compute to do more AI stuff.",
"website": "https://reinforced.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C092JUZ7V7Y",
"slackChannel": "#reinforced",
"status": "ended",
"deadline": "2025-07-18T23:59:59"
},
{
"name": "Decode",
"description": "Learn how a tech product works (hardware + software) and we ship you a grant to make it yourself",
"website": "https://decode.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C091GPYCAFL",
"slackChannel": "#decode",
"status": "ended",
"deadline": "2025-07-10T23:59:59"
},
{
"name": "Storyboard",
"description": "Make a visual novel, get $$ for merch/plushie",
"website": "https://storyboard.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C095E84SE1X",
"slackChannel": "#storyboard",
"status": "ended",
"deadline": "2025-07-13T23:59:59"
},
{
"name": "Pulse",
"description": "Build a project using the Spotify API with 6 hours on Hackatime, get 3 months of Spotify Premium",
"website": "https://pulse.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C090E7XUEA3",
"slackChannel": "#pulse",
"status": "ended",
"deadline": "2025-07-11T23:59:59"
},
{
"name": "Journey",
"description": "The smash-hit Hack Club event where you share insider details of whatever you're building.",
"website": "https://journey.hackclub.com",
"slack": "https://hackclub.slack.com/archives/example",
"slackChannel": "#journey",
"status": "ended",
"deadline": "2025-06-10T23:59:59"
},
{
"name": "Railway",
"description": "Build a site with Ruby on Rails, receive stickers!",
"website": "https://railway.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C094T1FL2KG",
"slackChannel": "#railway",
"status": "ended",
"deadline": "2025-07-22T23:59:59"
},
{
"name": "Cinema",
"description": "You ship a short story JavaScript animation using canvas. In return, we ship HQ-made caramel popcorn",
"website": "https://cinema.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C0936AVS683",
"slackChannel": "#cinema",
"status": "ended",
"deadline": "2025-07-06T23:59:59"
},
{
"name": "Spatula",
"description": "You ship an app or script that sends push notifications, we'll give you a $5 grant card so you can start sending SMS messages with your code!",
"website": "https://spatula.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C093Q40FU3C",
"slackChannel": "#spatula",
"status": "ended",
"deadline": "2025-07-03T23:59:59"
},
{
"name": "Rewind",
"description": "Make an app that runs on Windows XP, get stickers + super cool headphones from KOSS (the KTX Pro 1 or Porta Pros).",
"website": "https://rewind.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C093ALFAW8K",
"slackChannel": "#rewind",
"status": "ended",
"deadline": "2025-08-13T23:59:59"
},
{
"name": "Illumination",
"description": "You build something with ESP32-S3 emulator, and we give you a super cool ESP32-S3 devboard, custom parts, and cloud credits!",
"website": "https://illumination.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C091MS57D37",
"slackChannel": "#illumination",
"status": "ended",
"deadline": "2025-07-16T23:59:59"
},
{
"name": "Overflow-hidden",
"description": "ysws where you can't use a scrollbar",
"website": "https://overflow-hidden.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C095HDJK3TQ",
"slackChannel": "#overflow-hidden",
"status": "ended",
"deadline": "2025-07-21T23:59:59"
},
{
"name": "Swirl",
"description": "Create a quality website with Scoops, get ice cream!",
"detailedDescription": "Ship a static website (html + css) that has a Scoop, and get a grant for ice cream to enjoy! Scoops are made up of groups of three html / css features that add something of value to the website.",
"website": "https://swirl.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C08FR0LMVHD",
"slackChannel": "#swirl",
"status": "ended",
"deadline": "2025-08-03T23:59:59",
"participants": 40
},
{
"name": "Grub",
"description": "You Ship A responsive website using only HTML and Tailwind CSS. We Ship A grant for junk food.",
"detailedDescription": "The grant amount is based on the number of unique features implemented:\\n$6 (Basic Meal): For 2 unique features.\\n$8 (Refreshment Combo): For 4 unique features.\\n$10 (Full Combo Meal): For 6 or more unique features.",
"website": "https://grub.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C08S9NCEULB",
"slackChannel": "#grub",
"status": "ended",
"deadline": "2025-08-03T23:59:59"
},
{
"name": "Toppings",
"description": "You ship an interactive website using framework-less JavaScript, we ship you a grant to an ice cream parlor.",
"website": "https://toppings.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C08R8V2E3LY",
"slackChannel": "#toppings",
"status": "ended",
"deadline": "2025-08-03T23:59:59"
},
{
"name": "Waffles",
"description": "You ship a website using HTML CSS and JavaScript, and get Waffles!!!",
"website": "https://waffles.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C08QBKX5WCD",
"slackChannel": "#waffles",
"status": "ended",
"deadline": "2025-08-03T23:59:59"
},
{
"name": "Hackmate",
"description": "Build a collaborative app, get upto $50 for cloud credits or a raspberry pi",
"website": "https://hackmate.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C092HR1LG20",
"slackChannel": "#hackmate",
"status": "ended",
"deadline": "2025-07-17T23:59:59"
},
{
"name": "Converge",
"description": "Build Discord/Slack bots, we ship domain names, server hosting, Blahajs, and more",
"website": "https://submit.hackclub.com/converge-rsvp",
"slack": "https://hackclub.slack.com/archives/C091UF79VDM",
"slackChannel": "#converge",
"status": "active",
"deadline": "2025-11-10T23:59:59"
},
{
"name": "Gamefolio",
"description": "Make a interactive portfolio website, get $20 for hosting or domains",
"website": "http://gamefolio.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C08RT4C2485",
"slackChannel": "#gamefolio",
"status": "ended",
"deadline": "2025-07-02T23:59:59"
},
{
"name": "Extensify",
"description": "Build an IDE extension, get a keychain or a premium theme for VS Code or Sublime Text!",
"website": "https://extensify.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C094H3V1Y81",
"slackChannel": "#extensify",
"status": "ended",
"deadline": "2025-07-07T23:59:59"
},
{
"name": "Waveband",
"description": "Create a program that uses RTL-SDR, and Hack Club sends you a dongle and antenna kit.",
"website": "https://waveband.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C082S5V95G8",
"slackChannel": "#waveband",
"status": "ended",
"deadline": "2025-07-11T23:59:59"
},
{
"name": "Toolsmith",
"description": "Build a AI extension (MCP tool), get $10 of AI credits.",
"website": "https://toolsmith.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C094X38BFT5",
"slackChannel": "#toolsmith",
"status": "ended",
"deadline": "2025-07-11T23:59:59"
},
{
"name": "Smelt",
"description": "Ship a Svelte/SvelteKit site, get awesome collectable swag!",
"website": "https://smelt.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C09535Y8E83",
"slackChannel": "#smelt",
"status": "ended",
"deadline": "2025-07-31T23:59:59"
},
{
"name": "Highway",
"description": "Make any hardware project, get up to 350 USD to build it! Keyboard, game console, rocket, robot, 3d printer, etc... Then, go to a 4-day hardware hackathon @ Github HQ this summer!",
"detailedDescription": null,
"website": "https://highway.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C08Q1H6D79B",
"slackChannel": "#highway",
"status": "ended",
"deadline": "2025-07-31T23:59:59"
},
{
"name": "Cafe",
"description": "Collect cups, progress the graph, earn bonuses!",
"detailedDescription": "Work on a personal project in a huddle, get a cup every hour. Getting certain amounts of cups can get you special prizes! See the cafe-bulletin channel for more information!",
"website": null,
"slack": "https://hackclub.slack.com/archives/C02A74Z7G7L",
"slackChannel": "#cafe",
"status": "ended",
"deadline": "2025-02-17T23:59:59"
},
{
"name": "RaspAPI",
"description": "Make an API get a Raspberry Pi",
"detailedDescription": "Create an original API using any programming language or framework that you prefer and get a Raspberry Pi Zero 2 W to host it on! The API can be anything you want. The possibilities are endless!",
"website": "https://raspapi.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C07UZSKJQRX",
"slackChannel": "#raspapi-ysws",
"status": "ended",
"deadline": "2025-03-10T23:59:59"
},
{
"name": "Black Box",
"description": "Create a constrained, interactive C program and get a portable device to run it on!",
"website": "https://blackbox.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C08APN1CKEJ",
"slackChannel": "#black-box",
"status": "ended",
"deadline": "2025-03-29T23:59:59"
},
{
"name": "Hackpad",
"description": "Design a keyboard get the parts! Please note this is only open to those who have build a Macropad previously.",
"website": "https://github.com/hackclub/hackpad",
"slack": "https://hackclub.slack.com/archives/C07LESGH0B0",
"slackChannel": "#hackpad",
"status": "ended",
"deadline": "2025-03-16T23:59:59",
"participants": 719
},
{
"name": "Sidequests",
"description": "A short-run low-volume low-effort ysws series from nora & co.",
"detailedDescription": "#1: SkinAmp (ft. phoebe!) - Ship a WinAmp skin, we'll send you the WinAmp source code on CD-R (started 2025-03-26, ended 2025-04-13).\n#2: gemerald - Write something useful in Ruby, i'll send you a sticker (best few get a book!) (started 2025-04-10, ended 2025-04-25).\n",
"website": "https://sidequests.hackclub.com/",
"slack": "https://slack.com/archives/C08KCUK3NF5",
"slackChannel": "#sidequests",
"status": "ended"
},
{
"name": "Lockin",
"description": "Work on anything Wakatime-able on call with another Hack Clubber, spin for stickers at the end of the session.",
"website": "https://lockin.hackclub.com/",
"slack": "https://slack.com/archives/C08JV3ZV1DY",
"slackChannel": "#lock-in",
"status": "ended"
},
{
"name": "BrowserBuddy",
"description": "Build a Chrome extension, and Hack Club provides $30 to launch it on Chrome Web Store.",
"website": "https://browserbuddy.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C07MQBTNVRU",
"slackChannel": "#browser-buddy",
"status": "ended",
"deadline": "2025-03-19T23:59:59",