-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathapi.json
More file actions
1330 lines (1330 loc) · 52.2 KB
/
api.json
File metadata and controls
1330 lines (1330 loc) · 52.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
996
997
998
999
1000
{
"limitedTime": [
{
"name": "HackCraft",
"description": "Create a Minecraft mod, get Stickers, Minecraft 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 or server upon successful submission.",
"Support is available through our Slack community."
]
},
{
"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-08-31T23:59:59",
"participants": 10985
},
{
"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": "active",
"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": "Reality",
"description": "Build a tool that helps you or others break free from a digital bad habit! We ship you a personalized prize!",
"website": "https://reality.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C09668Y9H1R",
"slackChannel": "#reality",
"status": "active",
"deadline": "2025-08-15T23:59:59"
},
{
"name": "Authly",
"description": "Build the weirdest and never-before-seen authentication system, get yubikeys, programmable nfc tags, antivirus giftcards and more!",
"website": "https://authly.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C0963JU3CSD",
"slackChannel": "#authly",
"status": "active",
"deadline": "2025-08-31T23:59:59"
},
{
"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": "active",
"deadline": "2025-08-11T23:59:59"
},
{
"name": "Clutter",
"description": "Make something that organizes your digital life, get a grant to organize your physical life!",
"website": "https://clutter.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C0997C887M3",
"slackChannel": "#clutter",
"status": "active",
"deadline": "2025-09-03T23: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": "active",
"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": "active",
"deadline": "2025-08-16T23: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": "active",
"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": "active",
"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-14T23: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": "active"
},
{
"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 v3",
"description": "Build and publish your own terminal program and earn a $60 grant",
"website": "https://terminalcraft.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C08F58MT3GV",
"slackChannel": "#terminal-craft",
"status": "active",
"deadline": "2025-08-10T23:59:59"
},
{
"name": "Slushies",
"description": "Build a flask app, get $5 or $10 for slushies!",
"website": "https://slushies.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C097GP305G8",
"slackChannel": "#slushies",
"status": "active",
"deadline": "2025-08-23T23: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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"deadline": "2025-07-05T23:59:59"
},
{
"name": "Dummies",
"description": "learn a new language, recieve a guide book!",
"website": "https://dummies.hackclub.com/",
"deadline": "2025-08-14T23: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": "active"
},
{
"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": "active",
"deadline": "2025-07-20T23:59:59"
},
{
"name": "Silicon",
"description": "Design your own custom devboard and we'll fund it",
"website": "https://silicon.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C090WQ9JBTM",
"slackChannel": "#silicon",
"status": "active",
"deadline": "2025-08-06T23:59:59"
},
{
"name": "Grounded",
"description": "Onboard + Bin v2",
"website": "https://grounded.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C0948RT0C1M",
"slackChannel": "#grounded",
"status": "active",
"deadline": null
},
{
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active",
"deadline": "2025-07-17T23:59:59"
},
{
"name": "Converge",
"description": "Build Discord/Slack bots, we ship domain names, server hosting, Blahajs, and more",
"website": "https://converge.hackclub.com/?utm_source=ysws-site",
"slack": "https://hackclub.slack.com/archives/C091UF79VDM",
"slackChannel": "#converge",
"status": "active",
"deadline": "2025-07-15T23:59:59"
},
{
"name": "Reactive",
"description": "Ship a website built with React, get $15 to buy a domain.",
"website": "http://reactive.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C090S7Q2HT4",
"slackChannel": "#reactive",
"status": "active",
"deadline": "2025-07-04T23:59:59",
"requirements": [
"Basic knowledge of HTML and CSS",
"A little knowledge of JavaScript"
]
},
{
"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": "active",
"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": "active",
"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": "active",
"deadline": "2025-07-11T23:59:59"
},
{
"name": "cmd + k",
"description": "Build a Raycast extension, get Raycast Pro & stickers",
"website": "https://cmd-k.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C0981BXG124",
"slackChannel": "#cmd-k",
"status": "active",
"deadmine": "2025-08-17T23: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": "active",
"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": "active",
"deadmine": "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": "active",
"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": "active",
"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": "active",
"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": "active",
"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": "active"
},
{
"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": "active",
"deadline": "2025-03-19T23:59:59",
"participants": 22
},
{
"name": "TerminalCraft",
"description": "Build a terminal program and earn a Raspberry Pi 4",
"detailedDescription": "Build & publish a cross-platform terminal app. Get 10 users, open-source it, and snag your Pi 4",
"website": "https://terminalcraft.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C08F58MT3GV",
"slackChannel": "#terminal-craft",
"status": "active",
"deadline": "2025-06-21T23:59:59"
},
{
"name": "Pixeldust",
"description": "Make a neopixel based PCB, get the parts to make one!",
"detailedDescription": "Create a PCB using KiCad / other EDA. It should use neopixels and a Xiao RP2040, and act as a decoration. Once submitted you can get the parts to make one yourself!",
"website": "https://pixeldust.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C0895PXH53M",
"slackChannel": "#pixeldust",
"status": "active",
"deadline": "2025-04-13T23:59:59"
},
{
"name": "Juice",
"description": "Spend 100 hours in 2 months building a game, and we'll cover your Steam release and fund a flight to China for a pop-up shop.",
"website": "https://juice.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C088UF12N1Z",
"slackChannel": "#juice",
"status": "active",
"deadline": "2025-04-01T23:59:59"
},
{
"name": "Jungle",
"description": "Spend time working on your game, get money to help publish it! Prizes include steam license, itch.io asset store credits, and much much more!",
"website": "https://juice.hackclub.com/jungle",
"slack": "https://hackclub.slack.com/archives/C086MACKK43",
"slackChannel": "#jungle",
"status": "active",
"deadline": "2025-04-01T23:59:59"
},
{
"name": "Infill",
"description": "Design your own 3D printer mod, get $20 to build it!",
"website": "https://github.com/hackclub/infill",
"slack": "https://hackclub.slack.com/archives/C08B7LF58TX",
"slackChannel": "#infill",
"status": "active",
"deadline": "2025-05-04T23:59:59",
"participants": 380
},
{
"name": "Visioneer",
"description": "Give your computer the gift of vision, get an esp32-s3-eye to see it through!",
"website": "https://visioneer.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C082PCKJYMN",
"slackChannel": "#visioneer",
"status": "active",
"deadline": "2025-04-20T23:59:59"
},
{
"name": "Hacklet",
"description": "Spend two hours building a creative javascript bookmarklet, get $10 to buy a domain!",
"website": "http://hackclub.github.io/hacklet",
"slack": "https://hackclub.slack.com/archives/C08PJMATU8Y",
"slackChannel": "#hacklet",
"status": "active",
"deadline": "2025-05-10T23:59:59"
},
{
"name": "Asylum",
"description": "Fast-paced hardware YSWS challenges.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C083CCAAHM1",
"slackChannel": "#asylum",
"status": "ended",
"deadline": "2024-12-31T23:59:59"
},
{
"name": "Printboard",
"description": "Design a 3D model that goes with the Ikea Skadis pegboard, and we will send you one!",
"website": "https://printboard.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C0853M4PCUA",
"slackChannel": "#printboard",
"status": "ended",
"deadline": "2025-02-16T23:59:59",
"participants": 94
},
{
"name": "Minus Twelve",
"description": "Create a useful tool and receive a shiny new microcontroller!",
"website": "https://minustwelve.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C087S82MNFR",
"slackChannel": "#minus-twelve",
"status": "ended",
"deadline": "2025-01-27T23:59:59"
},
{
"name": "Hackapet",
"description": "Make a pet game, get a hackable tamagotchi clone!",
"website": "https://hackapet.hackclub.dev",
"slack": "https://hackclub.slack.com/archives/C0809PN4TPE",
"slackChannel": "#hackapet",
"status": "ended",
"deadline": "2025-02-03T23:59:59"
},
{
"name": "Dessert",
"description": "Make an Android app and earn a paid Google Developer account.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C07N06B1FDY",
"slackChannel": "#dessert",
"status": "ended",
"deadline": "2025-01-10T23:59:59"
},
{
"name": "Solder",
"description": "Design and solder your own custom PCB with a free electronics kit!",
"website": "https://solder.hackclub.com/",
"slack": "https://slack.com/archives/C08L288G22Y",
"slackChannel": "#solder",
"status": "active",
"deadline": "2025-06-30T23:59:59"
},
{
"name": "Cascade",
"description": "Create animations with CSS and receive art supplies.",
"website": "https://cascade.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C07QA8HD48N",
"slackChannel": "#cascade-ysws",
"status": "active",
"deadline": "2024-12-14T23:59:59",
"participants": 55
},
{
"name": "Riceathon",
"description": "Customize your Linux install, and get programmer socks or a Blåhaj.",
"website": "https://github.com/HackClub/riceathon",
"slack": "https://hackclub.slack.com/archives/C07MLF9A8H5",
"slackChannel": "#riceathon",
"status": "active",
"deadline": "2025-01-10T23:59:59",
"participants": 64
},
{
"name": "Hacky Holidays",
"description": "Design a PCB holiday decoration this winter, get one shipped.",
"website": "https://hacky-holidays.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C083SK3G5D3",
"slackChannel": "#hacky-holidays",
"status": "ended",
"deadline": "2025-01-31T23:59:59"
},
{
"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": "Retrospect (J2ME edition)",
"description": "Create a J2ME game (Java MIDlet) and have it delivered on a J2ME-capable phone.",
"website": "https://retrospect.hackclub.com/j2me",
"slack": "https://hackclub.slack.com/archives/C07MUFXNG82",
"slackChannel": "#retrospect",
"status": "active",
"deadline": "2025-04-07T23:59:59"
},
{
"name": "Hackaccino",
"description": "Build a 3D website and get a free frappuccino.",
"website": "https://fraps.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C078DFVL5LZ",
"slackChannel": "#fraps",
"status": "active",
"deadline": "2025-06-30T23:59:59",
"participants": 362
},
{
"name": "Cider",
"description": "Create an iOS app and receive a $100 Apple Developer account to publish it.",
"website": "https://cider.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C073DTGENJ2",
"slackChannel": "#cider",
"status": "active",
"deadline": null,
"participants": 34
},
{
"name": "10 Days of Tarot",
"description": "Build a project or feature and get exclusive prizes for each card requirement you hit.",
"website": "https://tarot.hackclub.com/",
"slack": "https://slack.com/archives/C08L60RUQ92",
"slackChannel": "#10-days-of-tarot",
"status": "active",
"deadline": "2025-04-13T23:59:59"
},
{
"name": "Tonic",
"description": "Make a Jekyll theme, show it to the world, and we'll send you a Hack Club hat!",
"website": "https://tonic.hackclub.com/",
"slack": "https://slack.com/archives/C08K7ARJ58U",
"slackChannel": "#tonic",
"status": "active",
"deadline": null
},
{
"name": "Thunder",
"description": "You Ship A Slack bot. We Ship A limited edition Orpheus bucket hat.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C06V2GEV3MY",
"slackChannel": "#thunder",
"status": "active",
"deadline": "2025-07-15T23:59:59"
},
{
"name": "Shipwrecked",
"description": "You Ship 60 hours of work, 4 projects, and go viral. We Ship A ticket to an island hackathon in Boston.",
"detailedDescription": "You ship 60 hours of coding work, four shipped projects, and make one of them go viral. We ship you a ticket to Shipwrecked, a four-day, in-person hackathon on Cathleen Stone Island in the Boston Harbor, with travel stipends available.",
"website": "https://shipwrecked.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C073L9LB4K1",
"slackChannel": "#shipwrecked",
"status": "active",
"deadline": "2025-08-08T15:00:00"
},
{
"name": "Neighborhood",
"description": "You Ship 100 hours of coding on one project. We Ship A free summer of coding in San Francisco.",
"detailedDescription": "You ship 100 hours of coding work on a single, new, open-source project. We ship you a flight to San Francisco and cover your housing, food, and transit for up to three months while you code with other teenagers.",
"website": "https://neighborhood.hackclub.com",
"slack": "https://hackclub.slack.com/archives/C073L9LB4K1",
"slackChannel": "#neighborhood",
"status": "ended"
}
],
"indefinite": [
{
"name": "Sprig",
"description": "Build a JS game and play it on your own console.",
"website": "https://sprig.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C02UN35M7LG",
"slackChannel": "#sprig",
"status": "active",
"participants": 657
},
{
"name": "OnBoard",
"description": "Design a PCB and we'll fabricate it for you.",
"website": "https://hackclub.com/onboard",
"slack": "https://hackclub.slack.com/archives/C056AMWSFKJ",
"slackChannel": "#electronics",
"status": "ended",
"participants": 1000
},
{
"name": "Boba Drops",
"description": "Build a website and get boba!",
"website": "https://boba.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C06UJR8QW0M",
"slackChannel": "#boba",
"status": "active",
"participants": 1253
},
{
"name": "OnBoard Live",
"description": "Design a PCB live on YouTube for $5/hour PCB credit.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C07F3EA2L8G",
"slackChannel": "#onboard-live",
"status": "active"
}
],
"drafts": [
{
"name": "Swatchbox",
"description": "You ship a modular art component, we ship the swatchbox to go with it!",
"website": null,
"slack": "https://hackclub.slack.com/archives/C094R49MS9Y",
"slackChannel": "#swatchbox",
"status": "draft"
},
{
"name": "Rube Goldburg YSWS",
"description": null,
"website": null,
"slack": "https://hackclub.slack.com/archives/C094U05FAE6",
"slackChannel": "#rube-goldberg-ysws",
"status": "draft"
},
{
"name": "Poetry",
"description": "You ship: poetry (details to be decided soon) We ship: Maybe a poster or smth?",
"website": null,
"slack": "#poetry-ysws",
"slackChannel": "https://hackclub.slack.com/archives/C095DDUVCJX",
"status": "draft"
},
{
"name": "Plunge",
"description": "DESIGN A PLUNGER-STYLE COOKIE CUTTER, GET IT SHIPPED!",
"website": "http://plunge.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C0955KVD1SA",
"slackChannel": "#plunge",
"status": "draft"
},
{
"name": "Aquarium",
"description": null,
"website": null,
"slack": "https://hackclub.slack.com/archives/C095PTABEJK",
"slackChannel": "#aquarium",
"status": "draft"
},
{
"name": "Apogee",
"description": "a rocketry ysws - still workshopping the idea!",
"website": null,
"slack": "https://hackclub.slack.com/archives/C095RKGV5J4",
"slackChannel": "#apogee",
"status": "draft"
},
{
"name": "Slushies",
"description": "Earn $5 for deploying your Flask app (WIP)",
"website": "https://slushies.vercel.app/",
"slack": "https://hackclub.slack.com/archives/C097GP305G8",
"slackChannel": "#slushies",
"status": "draft"
},
{
"name": "Glossarium",
"description": "You ship anything that can provide knowledge (a comic, a tutorial, a how-to...) We ship a zine from Julia Evans",
"website": "https://mathiasdpx.github.io/glossarium/",
"slack": "https://hackclub.slack.com/archives/C096L6J19PY",
"slackChannel": "#glossarium",
"status": "draft"
},
{
"name": "Hacksaber",
"description": "An (not official) YSWS that you make an beat saber mod or custom map and we give beat saber copy",
"website": null,
"slack": "https://hackclub.slack.com/archives/C096K1ZEXDL",
"slackChannel": "#hacksaber",
"status": "draft"
},
{
"name": "Hack A Home",
"description": "You Ship a Home Assistant with Software,PCB and Case, We Ship a grant ($150 Max)to make it.",
"detailedDescription": "Build a home assistant with Software,PCB and Case . We will send u a grant ($150 Max)to make it.\n",
"website": null,
"slack": "https://hackclub.slack.com/archives/C08N4UN6AUS",
"slackChannel": "#hack-a-home",
"status": "draft"
},
{
"name": "Hackumentary",
"description": "You Ship a project with dev vlogs, We Ship points through which you can buy goodies",
"detailedDescription": "Build a project with daily dev vlogs, we ship you points for every dev vlog you create, which you can use to purchase exciting goodies after shipping your project\n",
"website": null,
"slack": "https://hackclub.slack.com/archives/C08NH401M2S",
"slackChannel": "#hackumentary",
"status": "draft"
},
{
"name": "Reef",
"description": "Ship a deep learning project (AI/ML/LLM/NN), get a custom coral based accelerator.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C08K33ZUUR5",
"slackChannel": "#reef",
"status": "draft"
},
{
"name": "Hackducky",
"description": "Create A DuckyScript get a Rubber Ducky ! ( hackducky )",
"website": null,
"slack": "https://hackclub.slack.com/archives/C08B8HZBC85",
"slackChannel": "#hackducky",
"status": "draft"
},
{
"name": "HackABand",
"description": "ship a wristband design and we ship you fabric woven wristband with NFC chip",
"website": "https://hackaband.vercel.app/",
"slack": "https://hackclub.slack.com/archives/C089WSLC59V",
"slackChannel": "#hack-a-band",
"status": "draft"
},
{
"name": "Forge",
"description": "Design a 3D model that solves a problem and receive a custom 3D printer.",
"website": "https://forge.hackclub.com/",
"slack": "https://hackclub.slack.com/archives/C078GBDKC03",
"slackChannel": "#forge-updates",
"status": "draft"
},
{
"name": "Vine",
"description": "Create a song using open-source music software and receive a vinyl with your song.",
"website": "https://vineysws.vercel.app/",
"slack": "https://hackclub.slack.com/archives/C07N0VA3YGJ",
"slackChannel": "#vine-ysws",
"status": "draft"
},
{
"name": "Hack Store",
"description": "Use a free alternative app store and get a Google Developer account.",
"website": "https://www.hackstore.dev/",
"slack": "https://hackclub.slack.com/archives/C07BGFG6CDQ",
"slackChannel": "#hack-store",
"status": "draft"
},
{
"name": "Light Up",
"description": "Design an electronic circuit with lights, and Hack Club sends you the components and gifts.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C07RNEJ13LJ",
"slackChannel": "#lightup-ysws",
"status": "draft"
},
{
"name": "Aether",
"description": "Build a Windows app, and Hack Club provides a Microsoft Store developer account.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C07V78URSGL",
"slackChannel": "#aether-ysws",
"status": "draft"
},
{
"name": "Onward",
"description": "Build a robot using Arduino and receive one.",
"website": null,
"slack": "https://hackclub.slack.com/archives/C079G5MKC93",
"slackChannel": "#onward",
"status": "draft"
},