-
Notifications
You must be signed in to change notification settings - Fork 356
/
data.json
1226 lines (1226 loc) · 61.9 KB
/
data.json
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
[
{
"name": "7PHP",
"difficulty": "easy",
"description": "If you are a fan of 7PHP, send them an email and receive some free stickers!",
"reference": "https://7php.com/stickers/",
"image": "https://7php.com/wp-content/uploads/2018/05/7php-sticker-v2.jpg",
"dateAdded": "2018-11-23T17:27:00.000Z",
"tags": ["stickers", "expired"]
},
{
"name": "Accord Project",
"difficulty": "medium",
"description": "Contribute to their participating repositories, get swag in the form of t-shirts and stickers. You'll also be mentioned in a dedicated blog post in November.",
"reference": "https://www.accordproject.org/events/hacktoberfest-2019/",
"image": "https://i.imgur.com/dnwfG8P.jpg",
"dateAdded": "2019-10-04T15:29:00.000Z",
"tags": ["stickers", "clothing", "hacktoberfest", "expired"]
},
{
"name": "Airbyte",
"difficulty": "medium",
"description": "Join the Airbyte 1.0 Hacktoberfest: Connector Builder Challenge! Use the UI Connector Builder and AI Assistant to create as many new connectors as possible and compete for a share of the massive prize pool. For each connector merged, you'll earn a $50 reward, redeemable as swag or cash.",
"reference": "https://airbyte.com/community/connector-hackathon",
"image": "https://i.imgur.com/lCirQFS.jpg",
"dateAdded": "2024-10-14T17:01:00.000Z",
"tags": ["clothing", "hacktoberfest", "cash"]
},
{
"name": "Akto",
"difficulty": "medium",
"description": "Contribute to the Akto project in GitHub and earn cool merchandise! Simply make 1 merged PR to receive an Akto sticker, 2 merged PRs for an Akto t-shirt, 3 merged PRs for an Akto hoodie, and if you make 4 or more merged PRs, you'll get all of the above rewards.",
"reference": "https://www.akto.io/akto-hacktoberfest-2023",
"image": "https://i.imgur.com/nsLUWeG.png",
"dateAdded": "2023-10-15T11:09:00.000Z",
"tags": ["clothing", "stickers", "hacktoberfest", "expired"]
},
{
"name": "Alby",
"difficulty": "medium",
"description": "Contribute to Bitcoin open-source projects and win some Alby merchandise.",
"reference": "https://blog.getalby.com/contribute-to-the-bitcoin-open-source-this-hacktoberfest-2023/",
"image": "https://i.imgur.com/jtBupEc.png",
"dateAdded": "2023-10-21T11:09:00.000Z",
"tags": ["stickers", "hacktoberfest", "clothing", "accessories", "expired"]
},
{
"name": "Alexa",
"difficulty": "hard",
"description": "Publish a skill, get a t-shirt and an Echo Spot (if 50 customers per month use your Display skill for the first three months after publication)! Earn a 2-pack of Echo Buttons if you publish a Gadgets skill!",
"reference": "https://developer.amazon.com/alexa-skills-kit/alexa-developer-skill-promotion",
"image": "https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/promos/ASK_DevIncentive_swag_v2._CB472624419_.png",
"dateAdded": "2018-02-18T06:03:00.000Z",
"tags": ["clothing", "device", "expired"]
},
{
"name": "Alligator.io",
"difficulty": "hard",
"description": "Write a blog post on frontend development topics, get some cool Alligator stickers!",
"reference": "https://alligator.io/write-for-us/",
"image": "https://pbs.twimg.com/profile_images/622200384455442432/hf71Z251_400x400.png",
"dateAdded": "2018-12-09T07:08:00.000Z",
"tags": ["expired", "stickers"]
},
{
"name": "Amplication",
"difficulty": "medium",
"description": "Propose an app idea, get it approved, and build it using Amplication. Then, craft a clear and comprehensive tutorial or video walkthrough and submit a PR link to the official repo. Receive a free T-shirt for your effort!",
"reference": "https://github.com/amplication/amplication/issues/7028",
"image": "https://i.imgur.com/ENUPvt9.png",
"dateAdded": "2023-10-05T07:08:00.000Z",
"tags": ["hacktoberfest", "clothing", "expired"]
},
{
"name": "Appblock",
"difficulty": "medium",
"description": "Each accepted PR to AppBlock during the Hacktoberfest will win ₹5,000. You have a chance to win up to ₹30,000!!",
"reference": "https://hacktoberfest.appblocks.com/pages/rewards/",
"image": "https://i.imgur.com/57NFwH5.png",
"dateAdded": "2023-10-23T21:04:00.000Z",
"tags": ["hacktoberfest", "cash", "expired"]
},
{
"name": "Appsmith",
"difficulty": "medium",
"description": "Submit more than 4 PRs and invite others to contribute to Appsmith repository will get a special prize",
"reference": "https://www.appsmith.com/blog/hacktoberfest-2021-let-the-contributions-begin",
"image": "https://uploads-ssl.webflow.com/5f3d61ff1ad2bb54772d57de/614dbb8051b73a9c5ce9382e_Appsmith_HF2021%20(1)-p-1600.png",
"dateAdded": "2021-09-28T00:00:00.000Z",
"tags": ["hacktoberfest", "expired"]
},
{
"name": "Appwrite",
"difficulty": "medium",
"description": "Contributing to any Appwrite repo this October will land you some cool merchandise, including stickers, magnets, and pins. There is also an exclusive T-Shirt for this month's top 20 contributors, and a chance to win a Digitalocean, Intel, and 'the Practical DEV' limited edition t-shirt.",
"reference": "https://medium.com/appwrite-io/celebrate-hacktoberfest-20-with-appwrite-1356337e2159",
"image": "https://i.imgur.com/ZAaScv2.png",
"dateAdded": "2020-09-21T18:32:00.000Z",
"tags": ["badges", "hacktoberfest", "stickers", "clothing", "expired"]
},
{
"name": "Appwrite",
"difficulty": "medium",
"description": "Earn an Appwrite hoodie and stickers for contributing only one accepted and merged PR!",
"reference": "https://appwrite.io/blog/post/hacktoberfest-2023",
"image": "https://i.imgur.com/CQw3i2V.png",
"dateAdded": "2023-10-05T15:29:00.000Z",
"tags": ["hacktoberfest", "clothing", "stickers", "expired"]
},
{
"name": "Aqua",
"difficulty": "medium",
"description": "Contribute to Aqua's open source portfolio, and win stickers, t-shirts and even a book on Kubernetes Security.",
"reference": "https://blog.aquasec.com/aqua-open-source-security-hacktoberfest",
"image": "https://blog.aquasec.com/hs-fs/hubfs/Blog/HacktoberFest%20Blog_650_315.jpg?width=1300&name=HacktoberFest%20Blog_650_315.jpg",
"dateAdded": "2019-10-07T13:05:05.000Z",
"tags": ["stickers", "clothing", "hacktoberfest", "expired"]
},
{
"name": "AquaSec",
"difficulty": "medium",
"description": "Contribute to AquaSec's open source portfolio and win branded sticker packs, face masks, or limited edition Aqua Hacktoberfest T-shirts!",
"reference": "https://blog.aquasec.com/hacktoberfest-2020-aqua-open-source",
"image": "https://blog.aquasec.com/hs-fs/hubfs/Hacktoberfest%202.0%20Blog%20Image%20v4.jpg",
"dateAdded": "2020-10-01T19:47:00.000Z",
"tags": ["hacktoberfest", "stickers", "clothing", "expired"]
},
{
"name": "Aras",
"difficulty": "medium",
"description": "Submit an improvement to any <a href='http://community.aras.com/en/projects/'>Aras Community Project</a> in October 2018 to earn stickers! Submit five, earn a limited edition T-shirt!",
"reference": "https://community.aras.com/b/english/posts/join-aras-labs-hacktoberfest-2018",
"image": "https://i.imgur.com/7AeP0B0.jpg",
"dateAdded": "2018-10-24T11:45:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired", "stickers"]
},
{
"name": "Auth0",
"difficulty": "hard",
"description": "Have one accepted pull request in a qualifying Auth0 Github project in October 2018 and receive a kickass 2018 Hacktoberfest t-shirt courtesy of the awesome Auth0 team, along with a psychedelic Auth0 sticker pack!",
"reference": "https://auth0.com/blog/celebrate-hacktoberfest-with-auth0/",
"image": "https://images.all-free-download.com/images/graphiclarge/blank_t_shirt_clip_art_19042.jpg",
"dateAdded": "2018-10-06T03:35:20.000Z",
"tags": ["clothing", "hacktoberfest", "expired", "stickers"]
},
{
"name": "Ballerina",
"difficulty": "medium",
"description": "Contribute to Ballerina and earn exciting swags! For code contributions, you earn an Amazon voucher and stickers. But no worries if you're more into low/no-code contributions - you can still earn Amazon vouchers, a sleek t-shirt, and cool stickers! Start contributing and boost your swag collections!",
"reference": "https://ballerina.io/hacktoberfest/",
"image": "https://i.imgur.com/qX9c9KE.png",
"dateAdded": "2023-10-18T17:36:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Blockstack",
"difficulty": "medium",
"description": "Complete the Zero-to-DApp tutorial and submit your sample to App.co to get a T-shirt!",
"reference": "https://community.blockstack.org/z2d-shirt",
"image": "https://static.tildacdn.com/tild6433-6535-4833-b932-323062343930/Zero_to_Dapp_shirt_p.png",
"dateAdded": "2020-01-19T05:30:00.000Z",
"tags": ["clothing", "expired"]
},
{
"name": "Blockstack",
"difficulty": "easy",
"description": "Get up to 5 awesome stickers from Blockstack! Don't be evil!",
"reference": "https://web.archive.org/web/20200616131621/https://blockstack.myshopify.com/collections/frontpage/products/dont-be-evil-stickers",
"image": "https://i.imgur.com/sHgpibu.jpg",
"dateAdded": "2020-07-21T14:42:00.000Z",
"tags": ["stickers", "expired"]
},
{
"name": "Camunda",
"difficulty": "medium",
"description": "Complete the Camunda challenge to earn a limited edition Camunda x Hacktoberfest 2021 t-shirt as well as nifty stickers.",
"reference": "https://camunda.com/hacktoberfest2021/",
"image": "https://camunda.com/wp-content/uploads/2021/09/Join-the-Fun-%E2%80%93-Hacktoberfest-2021-2-09012021.png",
"dateAdded": "2021-09-28T15:56:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Chimoney",
"difficulty": "medium",
"description": "Earn $25 per merged PR, get Chimoney Hacktoberfest swag with up to 4 merged PRs, and have a shot at winning up to $100 and more Hacktoberfest rewards with a total of 4 merged PRs.",
"reference": "https://chimoney.io/blogs/Join-Chimoney-for-hacktoberfest-2023",
"image": "https://i.imgur.com/2aSn0wn.jpg",
"dateAdded": "2023-10-15T15:56:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "CircleCI",
"difficulty": "medium",
"description": "Participate in #Orbtoberfest with CircleCI and claim limited edition swag! 1 - 3 pull requests: Limited-Edition Sticker, 4+ pull requests: Limited-Edition T-shirt",
"reference": "https://hacktoberfest.circleci.com",
"image": "https://i.imgur.com/MkxWDck.jpg",
"dateAdded": "2020-10-02T19:30:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Cloudinary",
"difficulty": "medium",
"description": "Make 4 or more valid PRs to the 'hacktoberfest' labeled Cloudinary repositories to earn a swag bag.",
"reference": "https://cloudinary.com/blog/hacktoberfest-celebrate-open-source-sdks",
"image": "https://i.imgur.com/MzVyA3W.png",
"dateAdded": "2023-10-10T22:30:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Codeship",
"difficulty": "medium",
"description": "Submit 15 builds in 30 days, get stickers sent your way! (Ships only to North America and Europe)",
"reference": "https://codeship.com/swag",
"image": "https://i.imgur.com/kKlIWb3.jpg",
"dateAdded": "2018-02-18T18:44:53.000Z",
"tags": ["expired", "stickers"]
},
{
"name": "CodingBlocks",
"difficulty": "medium",
"description": "Have one merged PR on any of <a href='https://cb.lk/gh'>Coding Blocks open source projects</a> and get t-shirt with stickers or even a bag (1 PR - t-shirt, 5+ PRs - bag)",
"reference": "https://blog.codingblocks.com/2019/cb-hacktoberfest-2019/",
"image": "https://i.imgur.com/0SrSsNM.png",
"dateAdded": "2019-10-09T19:00:00.000Z",
"tags": ["accessories", "stickers", "hacktoberfest", "clothing", "expired"]
},
{
"name": "Collectiv",
"difficulty": "medium",
"description": "Contribute by submitting 4 PRs to any repository with over 100 stars, with the assistance of Collectiv AI. Once your PRs have been successfully merged, you qualify for some exciting merchandise!",
"reference": "https://chat.collectivai.com/hacktober-fest",
"image": "https://framerusercontent.com/images/jc3Lc08XJF1WUJr4V3VY6A0XnE.png?scale-down-to=512",
"dateAdded": "2023-10-15T03:35:00.000Z",
"tags": ["hacktoberfest", "clothing", "stickers", "expired"]
},
{
"name": "CommerceJS",
"difficulty": "medium",
"description": "Submit one pull request to Commerce.js to win more cool swag!",
"reference": "https://commercejs.com/docs/hacktoberfest/",
"image": "https://images.ctfassets.net/u77gi3ejnmxq/32QPYCIi28peoxPpwxmiml/3a56eecf0eaa4ec682d78ff0f560bd82/Group_5.svg",
"dateAdded": "2020-10-06T07:54:00.000Z",
"tags": ["hacktoberfest", "stickers", "badges", "expired"]
},
{
"name": "Configu",
"difficulty": "medium",
"description": "Contribute to the Configu project in GitHub and earn cool merchandise! Simply make 1 merged PR to receive an Configu Socks, and if you make 2 or more merged PRs, you'll get Configu Limited-Edition Hacktoberfest T-shirt.",
"reference": "https://github.com/configu/configu/issues/266",
"image": "https://i.imgur.com/UbzLvtD.png",
"dateAdded": "2023-10-18T00:53:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Container Solutions",
"difficulty": "easy",
"description": "Submit one successful pull request to any of Container Solutions' repos to win a free t-shirt!",
"reference": "https://blog.container-solutions.com/container-solutions-does-hacktoberfest",
"image": "https://blog.container-solutions.com/hubfs/hacktober2020.png",
"dateAdded": "2020-10-15T06:40:00.000Z",
"tags": ["hacktoberfest", "clothing", "expired"]
},
{
"name": "Contentful",
"difficulty": "easy",
"description": "Sign up to Contentful and get a free pair of socks to your door.",
"reference": "https://www.contentful.com/resources/syntaxfm/",
"image": "https://i.imgur.com/15gp2Ml.jpg",
"dateAdded": "2018-12-03T04:36:19.000Z",
"tags": ["clothing", "expired"]
},
{
"name": "Covalent",
"difficulty": "medium",
"description": "Join the Covalent Hacktoberfest. Get rewarded with cash prizes based on the complexity and level of your contributions. Beginners can earn $25 per merged PR, while experts have an opportunity to earn $100.",
"reference": "https://www.covalent.xyz/covalent-x-hacktoberfest-2023/",
"image": "https://i.imgur.com/cYC9xXL.png",
"dateAdded": "2023-10-23T21:21:00.000Z",
"tags": ["cash", "hacktoberfest", "expired"]
},
{
"name": "Datenanfragen.de e. V.",
"difficulty": "medium",
"description": "One merged PR gets at least 3 stickers (limited to 100 sets) and a chance at a limited edition t-shirt.",
"reference": "https://www.datarequests.org/blog/hacktoberfest-2020/",
"image": "https://i.imgur.com/HVVfIma.jpg",
"dateAdded": "2020-10-01T19:00:00.000Z",
"tags": ["stickers", "clothing", "hacktoberfest", "expired"]
},
{
"name": "Depths",
"difficulty": "medium",
"description": "Read 2 curated learning resources daily, share insights in comments, complete 30 days of challenges for rewards and a Hacktoberfest merged PR, get a free Depths swag!",
"reference": "https://www.depths.so/30daysopensource",
"image": "https://i.imgur.com/Y0jfdwN.png",
"dateAdded": "2023-10-10T16:45:00.000Z",
"tags": ["clothing", "stickers", "hacktoberfest", "expired"]
},
{
"name": "Deque",
"difficulty": "easy",
"description": "Answer Deque's feedback survey once you're logged in to get an awesome t-shirt.",
"reference": "https://web.archive.org/web/20191011183127/https://twitter.com/dequesystems/status/1182651282869362694",
"image": "https://i.imgur.com/t82DlcW.jpg",
"dateAdded": "2020-02-25T14:33:22.000Z",
"tags": ["clothing", "expired"]
},
{
"name": "DEV Podcast",
"difficulty": "easy",
"description": "Leave a review about DevNews OR DevDiscuss podcasts on Apple Podcasts and get a free pack of DEV stickers.",
"reference": "https://airtable.com/shr8oKAIMZgdYnBxx",
"image": "https://dev-to-uploads.s3.amazonaws.com/i/g6kt7ukqd9adhssdmoe9.png",
"dateAdded": "2020-10-01T17:18:00.000Z",
"tags": ["stickers"]
},
{
"name": "Devfolio",
"difficulty": "hard",
"description": "Contribute 4 valid PRs to one of Devfolio's approved repositories, and receive some stickers! Top 50 contributors will also get a t-shirt. (Ships only to India)",
"reference": "https://devfolio.co/blog/devfolio-hacktoberfest-2020/",
"image": "https://pbs.twimg.com/media/EJfpSDTUUAIXtdP.jpg",
"dateAdded": "2020-10-01T16:35:21.000Z",
"tags": ["stickers", "clothing", "hacktoberfest", "expired"]
},
{
"name": "devICT",
"difficulty": "medium",
"description": "Contribute two pull requests to the listed repositories and get some local swag from devICT",
"reference": "https://hacktoberfest.devict.org/",
"image": "https://i.imgur.com/0mSHJNP.png",
"dateAdded": "2023-10-21T21:00:00.000Z",
"tags": ["stickers", "hacktoberfest", "expired"]
},
{
"name": "devRant",
"difficulty": "medium",
"description": "Get 30 ++'s on a single rant you've posted to devRant to receive 3 free high-quality devRant laptop stickers! Or post an awesome rant that gets over 750 ++'s to receive a free devRant squishy stress ball!",
"reference": "https://devrant.com/free-stickers",
"image": "https://devrant.com/static/devrant/img/stickers-collection3.png",
"dateAdded": "2018-02-19T09:11:04.000Z",
"tags": ["accessories", "stickers"]
},
{
"name": "DocsGPT",
"difficulty": "medium",
"description": "Contribute by creating a valuable PR for code improvements, enhancing documentation, refining UI/UX, or introducing new features and get a free t-shirt!",
"reference": "https://github.com/arc53/DocsGPT/blob/main/HACKTOBERFEST.md",
"image": "https://i.imgur.com/tuRDlFb.png",
"dateAdded": "2023-10-11T12:37:23.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Docusaurus",
"difficulty": "hard",
"description": "Get swag for migrating websites to Docusaurus 2!",
"reference": "https://github.com/facebook/docusaurus/issues/1834",
"image": "https://i.imgur.com/IbZCAWP.jpg",
"dateAdded": "2019-10-27T12:37:23.000Z",
"tags": ["expired", "stickers"]
},
{
"name": "Dyrector.io",
"difficulty": "medium",
"description": "Contribute to any issue of dyrector.io and win an exclusive cap and stickers! Swag can optionally be personally delivered at esteemed events like KubeCon EU, Web Summit, and more if you're in Europe.",
"reference": "https://github.com/dyrector-io/dyrectorio/issues/837",
"image": "https://i.imgur.com/2JiHzft.png",
"dateAdded": "2023-10-23T21:36:00.000Z",
"tags": ["hacktoberfest", "clothing", "stickers", "expired"]
},
{
"name": "Earthly",
"difficulty": "medium",
"description": "First 40 participants to get atleast one PR merged to <a href='https://github.com/earthly/earthly'>earthly</a> will receive Sticker. You can also qualify for the sticker by adding a working Earthfile file to another opensource project.",
"reference": "https://blog.earthly.dev/hacktoberfest-2020/",
"image": "https://static.wixstatic.com/media/2cf192_051ee9f4b18b42a49c5d3bb11d87e3f3~mv2.png/v1/fill/w_162,h_50,al_c,q_85,usm_0.66_1.00_0.01/Dark%20bg.webp",
"dateAdded": "2020-10-01T16:38:00.000Z",
"tags": ["hacktoberfest", "stickers", "expired"]
},
{
"name": "EMQ",
"difficulty": "medium",
"description": "Contribute 1 PR to plant a tree. Get 2 or more PRs accepted in eKuiper or NanoMQ projects and get a t-shirt.",
"reference": "https://www.emqx.com/en/blog/join-hacktoberfest-2023-with-emq-community",
"image": "https://i.imgur.com/0agjcqb.jpg",
"dateAdded": "2023-10-20T02:50:00.000Z",
"tags": ["hacktoberfest", "clothing", "expired"]
},
{
"name": "erxes",
"difficulty": "medium",
"description": "Submit 3 issues and 1 PR to their <a href='https://github.com/erxes/erxes'>repo</a>, get a t-shirt and stickers.",
"reference": "https://erxes.io/hubspot-alternative-erxes-swag",
"image": "https://i.imgur.com/pE9Ml3v.png",
"dateAdded": "2020-03-16T05:06:00.000Z",
"tags": ["expired", "clothing", "stickers"]
},
{
"name": "featureform",
"difficulty": "medium",
"description": "Contribute to featureform and Accepted PRs will get a Featureform Swag package and will be entered for a raffle for a $500 gift card",
"reference": "https://www.featureform.com/hacktoberfest-2023",
"image": "https://i.imgur.com/OxlzuHM.png",
"dateAdded": "2023-10-21T17:41:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Flutterwave",
"difficulty": "hard",
"description": "Contribute 2 or more merged PRs to any of our community libraries and win a shirt",
"reference": "https://twitter.com/Ace_KYD/status/1183738026511519745",
"image": "https://i.imgur.com/OnQL0zO.jpg",
"dateAdded": "2019-10-17T05:55:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Flyte",
"difficulty": "medium",
"description": "Contribute 2 or more merged PRs to win a t-shirt, stickers, water bottle, and sweatshirt.",
"reference": "https://flyte.org/blog/flyte-at-hacktoberfest-2023",
"image": "https://i.imgur.com/0qyYFJB.jpg",
"dateAdded": "2023-10-19T05:55:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "accessories", "expired"]
},
{
"name": "Gatsby x Netlify",
"difficulty": "hard",
"description": "Get a pull request merged into Gatsby and receive a free shirt, socks, or stickers.",
"reference": "https://www.gatsbyjs.com/contributing/contributor-swag/",
"image": "https://cdn.shopify.com/s/files/1/0332/2730/9195/products/Shirt.png?v=1677684481&width=600&height=",
"dateAdded": "2024-10-04T16:08:09.000Z",
"tags": ["clothing", "stickers", "mug"]
},
{
"name": "GeeksForGeeks",
"difficulty": "medium",
"description": "Solve daily coding problems, earn coins and redeem swags such as t-shirts, hoodies and bags.",
"reference": "https://practice.geeksforgeeks.org/problem-of-the-day",
"image": "https://i.imgur.com/oIAh3jt.png",
"dateAdded": "2023-10-20T12:13:09.000Z",
"tags": ["clothing"]
},
{
"name": "Globo",
"difficulty": "medium",
"description": "Contribute 2 pull requests to Globo's Open Source Projects. At least 1 PR has to be accepted and you have to be in the first 200 registrants to get an exclusive t-shirt. Delivery only in Brazil.",
"reference": "https://opensource.globo.com/hacktoberfest/",
"image": "https://i.imgur.com/TTrRMaE.jpg",
"dateAdded": "2019-10-10T13:00:00.000Z",
"tags": ["hacktoberfest", "clothing", "expired"]
},
{
"name": "GoFr",
"difficulty": "medium",
"description": "Contribute to GoFr by submitting a notable pull request or by writing an article. Contributions in someway to development or spreading the word about 'GoFr'. Receive GoFr T-Shirt and Stickers as a token of appreciation.",
"reference": "https://github.com/gofr-dev/gofr#-contribute",
"image": "https://avatars.githubusercontent.com/u/146108433?s=200&v=4",
"dateAdded": "2024-10-05T15:09:00.000Z",
"tags": ["clothing", "stickers"]
},
{
"name": "Google Assistant",
"difficulty": "hard",
"description": "Make an app for the Google Assistant available to users, get an exclusive Google Assistant t-shirt and a Google Home (if a certain number of users engage with it)!",
"reference": "https://developers.google.com/actions/community/overview",
"image": "https://i.imgur.com/xElC8jm.jpg",
"dateAdded": "2018-02-18T19:59:42.000Z",
"tags": ["clothing", "device", "expired"]
},
{
"name": "Hacktoberfest 2020",
"difficulty": "medium",
"description": "Make four Pull Requests (PRs) between October 1–31 in any time zone, and earn a limited edition T-shirt!",
"reference": "https://hacktoberfest.digitalocean.com/",
"image": "https://i.imgur.com/fAuXACg.png",
"dateAdded": "2020-09-16T21:33:20.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Hasura",
"difficulty": "medium",
"description": "Submit a PR to Hasura's <a href='https://github.com/hasura/graphql-engine'>GraphQL Engine</a> or <a href='https://github.com/hasura/learn-graphql'>GraphQL Tutorial Series</a> during Hacktoberfest 2020 and get a Hasura sticker pack. For all valid PRs closing an issue with the label hacktoberfest, a secret swag will be sent.",
"reference": "https://hasura.io/blog/hasura-joins-hacktoberfest-3rd-year-in-a-row/",
"image": "https://i.imgur.com/SFiixrc.png",
"dateAdded": "2020-10-02T12:27:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Haystack",
"difficulty": "medium",
"description": "Contribute to open issues with the 'hacktoberfest' tag at Haystack's repository and grab some exclusive stickers!",
"reference": "https://twitter.com/bilgeycl/status/1712135054489444650",
"image": "https://i.imgur.com/J4drdtV.jpg",
"dateAdded": "2023-10-23T21:53:00.000Z",
"tags": ["hacktoberfest", "stickers", "expired"]
},
{
"name": "Huddle01",
"difficulty": "medium",
"description": "Join Huddle01's Hacktoberfest 2023 challenge! Win from a $300/$100 pool prize for advanced/intermediate level respectively. Beginners can earn unique POAP tokens and merchandise.",
"reference": "https://huddle01.hashnode.dev/huddle01-hacktoberfest-2023",
"image": "https://i.imgur.com/VPErL4Z.png",
"dateAdded": "2023-10-24T14:21:00.000Z",
"tags": ["hacktoberfest", "cash", "clothing", "expired"]
},
{
"name": "Hyperswitch",
"difficulty": "medium",
"description": "Contribute to open issues and win a swag for every successful PR.",
"reference": "https://hyperswitch.io/hacktoberfest",
"image": "https://i.imgur.com/Q5DdlQh.png",
"dateAdded": "2023-10-21T21:00:00.000Z",
"tags": ["hacktoberfest", "clothing", "expired"]
},
{
"name": "IHP",
"difficulty": "easy",
"description": "Fill out the form, and get some stickers sent to you!",
"reference": "https://ihp.digitallyinduced.com/Stickers",
"image": "https://i.imgur.com/lV40hIR.png",
"dateAdded": "2020-10-02T09:59:00.000Z",
"tags": ["stickers"]
},
{
"name": "ImgBot",
"difficulty": "easy",
"description": "Install the bot on your repo and get some awesome laptop stickers from ImgBot after filling out the form!",
"reference": "https://docs.google.com/forms/d/e/1FAIpQLScpL5wT5dsFTXZou49p7_W7Y2sbMeqKulvDrwHQabecc4YF7w/viewform",
"image": "https://pbs.twimg.com/media/EJzGQGKUwAALlSC?format=jpg&name=4096x4096",
"dateAdded": "2020-01-02T05:30:00.000Z",
"tags": ["stickers", "expired"]
},
{
"name": "Indeed",
"difficulty": "medium",
"description": "Complete two or more pull requests in October 2020 to any open source Indeed repository and be eligible to earn an Open Source sweatshirt! (Shipping only to US)",
"reference": "https://engineering.indeedblog.com/indeed-hacktoberfest-2020/",
"image": "https://i.imgur.com/ITkwlYj.jpg",
"dateAdded": "2020-09-30T03:19:14.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "InfraCloud",
"difficulty": "medium",
"description": "The first 50 people to get one PR merged into an InfraCloud repo will get a cool t-shirt, along with some amazing stickers. Jumbo Prize – The person with the most merged PRs will also get a Kindle.",
"reference": "https://twitter.com/infracloudio/status/1310980826541092865",
"image": "https://i.imgur.com/Wlfg3Xq.png",
"dateAdded": "2020-09-25T19:20:42.000Z",
"tags": ["stickers", "clothing", "device", "hacktoberfest", "expired"]
},
{
"name": "Interledger",
"difficulty": "medium",
"description": "Earn exclusive Interledger swag this Hacktoberfest! Get a T-shirt with 1+ accepted PRs. Get limited edition swag with 4+ accepted PRs.",
"reference": "https://community.interledger.org/devcer/hacktoberfest-with-interledger-join-the-open-payments-movement-3bkd",
"image": "https://i.imgur.com/z90100J.png",
"dateAdded": "2023-10-23T22:18:00.000Z",
"tags": ["stickers", "clothing", "hacktoberfest", "expired"]
},
{
"name": "IPFS",
"difficulty": "easy",
"description": "Contact the IPFS team via e-mail, and ask them kindly for some swag!",
"reference": "https://github.com/ipfs/community/#swag",
"image": "https://i.imgur.com/sGUHD1P.jpg",
"dateAdded": "2019-08-20T19:20:42.000Z",
"tags": ["stickers", "clothing", "expired"]
},
{
"name": "JabRef",
"difficulty": "medium",
"description": "Get a pull request merged, receive a sticker. Get five pull requests merged, receive a T-shirt.",
"reference": "https://www.jabref.org/hacktoberfest/2019.html",
"image": "https://i.imgur.com/eEXO4ep.jpg",
"dateAdded": "2019-10-05T23:07:46.000Z",
"tags": ["stickers", "clothing", "hacktoberfest", "expired"]
},
{
"name": "JavaScript Today",
"difficulty": "easy",
"description": "Submit pull requests on GitHub, send an email with mailing address, and get stickers delivered to you.",
"reference": "https://javascripttoday.com/blog/hacktoberfest-2024-free-sticker/",
"image": "https://javascripttoday.com/images/js-sticker_huf9b3fe00cbf25c8d083637b504fc9160_321265_300x0_resize_q100_h2_box_3.webp",
"dateAdded": "2024-10-12T16:27:00.000Z",
"tags": ["hacktoberfest", "javascript", "stickers"]
},
{
"name": "Jetbrains",
"difficulty": "easy",
"description": "Fill in the form and you will get a coupon for a one-month access to 'All Products Pack' subscription of Jetbrains. It's free of charge and can be used by anyone.",
"reference": "https://www.jetbrains.com/lp/hacktoberfest-2020/#get-the-tools",
"image": "https://i.imgur.com/Lee21sb.png",
"dateAdded": "2020-09-18T21:33:20.000Z",
"tags": ["software", "hacktoberfest", "expired"]
},
{
"name": "Jina AI",
"difficulty": "medium",
"description": "Love Jina, get swag! Make a PR, write a blog post, or provide awesome tech support and you'll get a notepad, stickers, keyring, pen and tote bag.",
"reference": "https://jina.ai/blog/swag/",
"image": "https://i.imgur.com/P9bpDIw.jpg",
"dateAdded": "2021-07-23T16:38:20.000Z",
"tags": ["expired", "accessories", "stickers"]
},
{
"name": "JS Bin",
"difficulty": "easy",
"description": "Fill out a Google form with your name and address and get a sticker. There’s no cost to you, but they will be restricting the send outs to bi-monthly or quarterly depending on demand.",
"reference": "https://jsbin.com/help/stickers/",
"image": "https://i.imgur.com/bC60GuZ.png",
"dateAdded": "2018-11-28T16:42:00.000Z",
"tags": ["stickers"]
},
{
"name": "Kong",
"difficulty": "medium",
"description": "Everyone who gets 1 PR accepted to a Kong repo can get a Kong Contributor T-shirt!",
"reference": "https://github.com/Kong/kong/blob/master/CONTRIBUTING.md#contributor-t-shirt",
"image": "https://i.imgur.com/itxBq8P.jpg",
"dateAdded": "2018-10-24T11:18:55.000Z",
"tags": ["clothing"]
},
{
"name": "LadyBug",
"difficulty": "medium",
"description": "In addition to the Hacktoberfest swag, LadybugTools is offering a sticker if you contribute 1 or more Pull Requests to solve one of our hacktoberfest labelled issues.",
"reference": "https://discourse.ladybug.tools/t/celebrate-hacktoberfest-2019-with-ladybug-tools/7314",
"image": "https://discourse.ladybug.tools/uploads/default/original/2X/d/d0d4cc754f688015675adf8698d42b42dde981bc.png",
"dateAdded": "2019-10-09T10:23:46.000Z",
"tags": ["hacktoberfest", "stickers", "expired"]
},
{
"name": "LBRY",
"difficulty": "medium",
"description": "Anyone who makes any contribution at all, even a one line typo fix, will receive a LBRY sticker. Anyone who contributes anything of any substance will receive a sticker, LBRY t-shirt, and more.",
"reference": "https://lbry.com/news/hacktoberfest-2019",
"image": "https://i.imgur.com/IEchVUJ.png",
"dateAdded": "2019-10-05T10:23:46.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Les tilleuls",
"difficulty": "medium",
"description": "To win a t-shirt, make 3 pull requests on API Platform's GitHub repositories by October 31st, and then <a href='https://cooptilleuls.typeform.com/to/CG0pLd'>fill in this form.</a>",
"reference": "https://les-tilleuls.coop/fr/blog/article/celebrate-hacktoberfest-with-api-platform",
"image": "https://i.imgur.com/uX5nRnW.png",
"dateAdded": "2019-10-18T05:55:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Loft labs",
"difficulty": "medium",
"description": "One merged PR gets you a Loft exclusive T-shirt, two merged PRs get you a brand new Keyboard, and four or more merged PRs get you a Loft Exclusive Swag Box.",
"reference": "https://loft.sh/blog/celebrating-the-spirit-of-hacktoberfest-at-loft/",
"image": "https://i.imgur.com/ECvO3gj.png",
"dateAdded": "2023-10-21T05:55:00.000Z",
"tags": ["stickers", "hacktoberfest", "clothing", "accessories", "expired"]
},
{
"name": "LoginRadius",
"difficulty": "easy",
"description": "Submit a successful pull request for one of the issues with the hacktoberfest label in the LoginRadius GitHub organization and earn a T-shirt and Swags!",
"reference": "https://www.loginradius.com/blog/async/hacktoberfest-2021/",
"image": "https://apidocs.lrcontent.com/images/swag_57515f6b4cc7487f27.76085248.png",
"dateAdded": "2021-09-27T10:00:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Logto",
"difficulty": "medium",
"description": "Submit a successful PR for one of the issues in Logto repository and earn a sweater!",
"reference": "https://github.com/logto-io/logto/issues/4511",
"image": "https://i.imgur.com/nqMeukx.png",
"dateAdded": "2023-10-22T00:46:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Magento + Adobe",
"difficulty": "hard",
"description": "Submit 5 or more pull requests during October 2019 to any open repositories under Adobe or Magento organizations on GitHub, get a Squashtoberfest T-Shirt!",
"reference": "https://opensource.adobe.com/squashtoberfest/",
"image": "https://i.imgur.com/yt3iUBB.png",
"dateAdded": "2019-10-03T14:17:39.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Mattermost",
"difficulty": "easy",
"description": "If you are a first time contributor, get a PR merged to any of their public repository and get a limited edition Mattermost mug!",
"reference": "https://forum.mattermost.com/t/mattermost-first-time-contributor-mugs/143",
"image": "https://i.imgur.com/cGV35Cc.png",
"dateAdded": "2020-09-29T14:17:39.000Z",
"tags": ["mug"]
},
{
"name": "MayaData",
"difficulty": "medium",
"description": "Get a t-shirt for contributing a pull request to LitmusChaos/OpenEBS. There is also exclusive swag and prizes for the top weekly contributors.",
"reference": "https://blog.mayadata.io/celebrate-hacktoberfest-2020-open-source-with-mayadata",
"image": "https://blog.mayadata.io/hs-fs/hubfs/Hacktoberfest%20desktop%20version.png?width=3001&name=Hacktoberfest%20desktop%20version.png",
"dateAdded": "2020-09-30T03:19:14.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Meedan",
"difficulty": "easy",
"description": "Contribute a valid PR to any Meedan repo during the month of October for a limited edition t-shirt, mask, and sticker pack.",
"reference": "https://meedan.com/hacktoberfest",
"image": "https://i.imgur.com/4sxLMVP.jpg",
"dateAdded": "2020-10-03T17:26:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Microsoft",
"difficulty": "medium",
"description": "Make one pull request in October 2018 to any <a href='https://opensource.microsoft.com/'>open source Microsoft repository</a>, earn a limited edition T-shirt!",
"reference": "https://cloudblogs.microsoft.com/opensource/2018/09/30/join-hacktoberfest-2018-celebration-microsoft/",
"image": "https://i.imgur.com/d8Sa90c.jpg",
"dateAdded": "2018-10-01T08:36:05.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "MindsDB",
"difficulty": "medium",
"description": "For every contribution you make you will receive credits that can be exchanged for SWAG. For every 100 credits earned, you will receive one entry into the draw for the 2 awesome Razer Blade 16 laptops!",
"reference": "https://mindsdb.com/hacktoberfest/",
"image": "https://uploads-ssl.webflow.com/62a8755be8bcc86e6307def8/6511149d9743715ec236e5c1_unisex-premium-sweatshirt-white-front-63dbb021a2957.jpg",
"dateAdded": "2023-10-11T14:16:05.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "device", "expired"]
},
{
"name": "Modtoberfest",
"difficulty": "medium",
"description": "Contribute to Modtoberfest! Submit 4 PRs to participating projects, earn a T-Shirt, pins, and contribute to planting a tree. Enhance open-source and the environment together!",
"reference": "https://modtoberfest.com/modtoberforest",
"image": "https://i.imgur.com/q8ApRkT.png",
"dateAdded": "2023-10-22T00:08:00.000Z",
"tags": ["hacktoberfest", "stickers", "clothing", "accessories", "charities", "expired"]
},
{
"name": "NativeScript",
"difficulty": "easy",
"description": "Make your first contribution to the NativeScript community and win an awesome set of stickers. Among the stickers you will find a limited edition 'Contributor' sticker. ",
"reference": "https://www.nativescript.org/blog/nativescript-first-time-contribution-contest-continued-and-extended",
"image": "https://i.imgur.com/iiWLHhk.png",
"dateAdded": "2019-01-25T06:45:29.000Z",
"tags": ["expired", "stickers"]
},
{
"name": "NativeScript",
"difficulty": "medium",
"description": "Make your mark on Native Script! Either build a neat project on StackBlitz, or contribute a quality PR. Tweet about your work and mention @NativeScript. DM maintainers to claim your stickers!",
"reference": "https://twitter.com/NativeScript/status/1709066192605061392",
"image": "https://i.imgur.com/FRhfAK4.png",
"dateAdded": "2023-10-22T11:57:00.000Z",
"tags": ["hacktoberfest", "stickers", "expired"]
},
{
"name": "Netlify",
"difficulty": "easy",
"description": "Just fill out the <a href='https://swag.netlify.com/'>form</a> and get stickers.",
"reference": "https://swag.netlify.com/",
"image": "https://i.imgur.com/lRJYJ3o.jpg",
"dateAdded": "2018-04-27T19:36:39.000Z",
"tags": ["stickers", "expired"]
},
{
"name": "Nexmo",
"difficulty": "medium",
"description": "Have one accepted pull request in October 2018 to any <a href='https://github.com/nexmo/'>Nexmo Repository</a>, earn a limited edition #nextoberfest T-shirt!",
"reference": "https://www.nexmo.com/blog/2018/10/09/join-nextoberfest-tis-the-season-to-be-hacking-dr/",
"image": "https://i.imgur.com/ihe89Wx.png",
"dateAdded": "2018-10-12T13:32:07.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Novu",
"difficulty": "medium",
"description": "Contribute to Novu Repo in GitHub and Make 3 merged PRs to win the swag pack.",
"reference": "https://novu.co/hacktoberfest/",
"image": "https://i.imgur.com/tswQ6m8.png",
"dateAdded": "2023-10-21T17:52:00.000Z",
"tags": ["hacktoberfest", "clothing", "stickers", "expired"]
},
{
"name": "npm",
"difficulty": "hard",
"description": "Fix a <a href='https://npm.community/c/bugs'>bug</a>, get a fashionable pair of socks!",
"reference": "http://blog.npmjs.org/post/129827785565/npm-weekly-30-package-scripts-for-tooling-a",
"image": "https://i.imgur.com/saUR1HM.jpg",
"dateAdded": "2018-02-18T06:03:12.000Z",
"tags": ["expired", "clothing"]
},
{
"name": "OpenBazaar",
"difficulty": "medium",
"description": "Help improve our code and earn a limited edition shirt.",
"reference": "https://openbazaar.org/blog/Hacktoberfest-with-OpenBazaar-Help-Make-Trade-Free-Get-Rewards/",
"image": "https://i.imgur.com/bZouEJ6.jpg",
"dateAdded": "2018-10-23T10:06:06.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "OpenBB",
"difficulty": "medium",
"description": "Earn a T-shirt or hat from OpenBB in Hacktoberfest. Contribute by making no-code contributions, code enhancements, adding a non-extension feature, or creating a custom extension.",
"reference": "https://openbb.co/blog/hacktoberfest-join-us-in-celebrating-open-source",
"image": "https://i.imgur.com/Z5MRnAW.png",
"dateAdded": "2023-10-24T14:00:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "OpenEBS",
"difficulty": "hard",
"description": "One merged PR to OpenEBS Repository and a change get exclusive and limited OpenEBS swag, OpenEBS will contact you to fill out a form to send a special edition swag designed for Hacktoberfest. Not only this but by becoming a top weekly contributor, you’ll be able to grab even more swag.",
"reference": "https://openebs.io/blog/hacktoberfest-2020-contribute-to-openebs/",
"image": "https://raw.githubusercontent.com/cncf/artwork/ef31e1ee9503c134a13c6340ef2284d1b76ea38d/projects/openebs/stacked/color/openebs-stacked-color.png",
"dateAdded": "2020-10-01T03:58:08.000Z",
"tags": ["hacktoberfest", "stickers", "expired"]
},
{
"name": "Operation Code",
"difficulty": "medium",
"description": "Resolve 3 issues to get a an Operation Code t-shirt. Get 2 PRs merged to get a pack of Operation Code stickers.",
"reference": "https://github.com/OperationCode/START_HERE",
"image": "https://operation-code-assets.s3.us-east-2.amazonaws.com/branding/logos/small-blue-logo.png",
"dateAdded": "2020-10-01T16:31:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "opsdroid",
"difficulty": "medium",
"description": "Contribute to opsdroid and receive some stickers!",
"reference": "https://medium.com/opsdroid/contributor-sticker-packs-738058ceda59",
"image": "https://i.imgur.com/FTfBIeB.jpeg",
"dateAdded": "2019-01-04T22:12:15.000Z",
"tags": ["expired", "stickers"]
},
{
"name": "Pagerduty",
"difficulty": "easy",
"description": "Create and fill out your profile. Upload a custom avatar. Introduce yourself.",
"reference": "https://twitter.com/pagerduty",
"image": "https://i.imgur.com/WYeYymd.jpg",
"dateAdded": "2019-10-09T22:04:00.000Z",
"tags": ["stickers", "expired"]
},
{
"name": "Parity Technologies",
"difficulty": "medium",
"description": "Anyone who makes any significant contribution to the Substrate ecosystem during Hacktoberfest is eligible for a special limited edition Parity Hacktoberfest 2019 gym bag.",
"reference": "https://www.parity.io/blog/hacktoberfest-2019-parity/",
"image": "https://i.imgur.com/wCzAkOA.png",
"dateAdded": "2019-10-12T19:49:00.000Z",
"tags": ["hacktoberfest", "accessories", "expired"]
},
{
"name": "Passenger",
"difficulty": "easy",
"description": "Register to join the November 1st livestream in which Phusion adds a major feature to Passenger, and win a custom key cap or beanie with the Passenger logo embroided (and stickers, guaranteed).",
"reference": "https://blog.phusion.nl/2018/10/19/livestreaming-from-phusion-hq-adding-a-feature-to-passenger/",
"image": "https://i.imgur.com/gVfuWsu.png",
"dateAdded": "2018-10-20T11:38:34.000Z",
"tags": ["clothing", "accessories", "expired", "stickers"]
},
{
"name": "Postman",
"difficulty": "medium",
"description": "Make a notable contribution for any of the postman open source projects, and receive a Postman t-shirt as a small token of appreciation.",
"reference": "https://www.postman.com/contributors/",
"image": "https://www.postman.com/_mk-www-v8.180.0/assets/contributors/postman-contributor-logo-dark.svg",
"dateAdded": "2024-10-03T14:18:34.000Z",
"tags": ["clothing"]
},
{
"name": "Prefix.dev",
"difficulty": "medium",
"description": "Contribute to pixi and rattler-build repositories on prefix.dev and win exciting rewards! First time contributors can earn premium prefix.dev t-shirts and cool stickers.",
"reference": "https://twitter.com/prefix_dev/status/1711380876385292595",
"image": "https://i.imgur.com/PSmcqxs.jpg",
"dateAdded": "2023-10-23T11:35:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "QMK",
"difficulty": "medium",
"description": "Four interactions with a QMK repo or $15 to cKeys non-profit will qualify you for a QMK T-shirt.",
"reference": "https://hacktoberfest.qmk.fm/",
"image": "https://i.imgur.com/JYNPjDK.jpg",
"dateAdded": "2019-10-14T16:16:36.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "QuestDB",
"difficulty": "medium",
"description": "Successfully contribute to any QuestDB project during Hacktoberfest and earn a QuestDB t-shirt and stickers.",
"reference": "https://questdb.io/blog/hacktoberfest-2023-questdb/",
"image": "https://i.imgur.com/ZhwC1y1.png",
"dateAdded": "2023-10-21T18:42:00.000Z",
"tags": ["clothing", "hacktoberfest", "stickers", "expired"]
},
{
"name": "Redis Cloud",
"difficulty": "easy",
"description": "Sign up and create your first database, you will receive a free t-shirt. (Ships only to North America)",
"reference": "https://redislabs.com/try-redis-cloud-essentials-for-a-free-shirt/",
"image": "https://i.imgur.com/pU8KfaE.png",
"dateAdded": "2020-02-14T17:13:48.000Z",
"tags": ["clothing", "expired"]
},
{
"name": "RedwoodJS",
"difficulty": "easy",
"description": "Simply fill in your postal address and get free stickers! (Shipped worldwide)",
"reference": "https://web.archive.org/web/20240315101615/https://redwoodjs.com/stickers",
"image": "https://i.imgur.com/zlnnR1F.png",
"dateAdded": "2020-09-03T15:43:00.000Z",
"tags": ["stickers", "expired"]
},
{
"name": "Renumics",
"difficulty": "medium",
"description": "Join Renumics for Hacktoberfest! For each accepted PR, we're giving out a Renumics T-Shirt.",
"reference": "https://renumics.com/blog/hacktoberfest_2023/",
"image": "https://i.imgur.com/MA8EoCo.png",
"dateAdded": "2023-10-22T16:20:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Revert",
"difficulty": "medium",
"description": "Earn spooky pumpkins for every PR merged in the Hacktoberfest at Revert! Collect as many pumpkins as you can before Halloween 2023 strikes and win some amazing swags!!",
"reference": "https://blog.revert.dev/hacktoberfest2023/",
"image": "https://i.imgur.com/iJ8eMid.jpg",
"dateAdded": "2023-10-24T13:44:00.000Z",
"tags": ["clothing", "hacktoberfest", "mug", "stickers", "expired"]
},
{
"name": "Robo.js",
"difficulty": "medium",
"description": "Create Discord Bots or Discord Activities with Robo.js and win rewards! Contribute plugins, templates, or videos to win free Nitro, T-shirts, and more.",
"reference": "https://roboplay.dev/hacktoberfest",
"image": "https://waveplay.com/hacktoberfest-2024-promo.png",
"dateAdded": "2024-10-01T00:00:00.000Z",
"tags": ["clothing", "digital", "hacktoberfest", "hosting", "stickers"]
},
{
"name": "RoboPlay",
"difficulty": "medium",
"description": "Create a Discord bot or plugin with Robo.js - score 3 months of hosting, a month of Nitro, and a special edition T-Shirt!",
"reference": "https://blog.waveplay.com/hacktoberfest-with-robo-js-build-bots-or-plugins-win-cool-prizes/",
"image": "https://i.imgur.com/KUP8OxD.png",
"dateAdded": "2023-10-05T06:47:30.000Z",
"tags": ["clothing", "digital", "hacktoberfest", "hosting", "expired"]
},
{
"name": "Ronin",
"difficulty": "medium",
"description": "Contribute to any Ronin project and get your PR accepted to receive stickers.",
"reference": "https://ronin-rb.dev/blog/2023/09/26/ronin-is-participating-in-hacktoberfest-2023.html",
"image": "https://i.imgur.com/mi3vbOM.png",
"dateAdded": "2023-10-21T21:11:00.000Z",
"tags": ["stickers", "hacktoberfest", "expired"]
},
{
"name": "Saleor",
"difficulty": "medium",
"description": "Solve any of the issues with the Hacktoberfest label and win a pair of Saleor Socks.",
"reference": "https://twitter.com/getsaleor/status/1179370205895634946",
"image": "https://i.imgur.com/fZhBx2G.jpg",
"dateAdded": "2018-10-23T17:39:00.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "SalesAgility",
"difficulty": "hard",
"description": "At least 1 merged PR in the SuiteCRM, SuiteDocs or SuitePortal repos wins you a mug.",
"reference": "https://suitecrm.com/community-diary-sept-2019-edition/",
"image": "https://suitecrm.com/wp-content/uploads/2017/12/icon_about1-200x39.png",
"dateAdded": "2018-10-23T17:44:00.000Z",
"tags": ["hacktoberfest", "accessories", "expired"]
},
{
"name": "SendGrid",
"difficulty": "hard",
"description": "Five accepted pull results from SendGrid will qualify you for a special edition SendGrid Hacktoberfest T-shirt.",
"reference": "https://sendgrid.com/blog/hacktoberfest-2018-has-arrived/",
"image": "https://i.imgur.com/2s6hwdZ.png",
"dateAdded": "2018-10-12T13:10:59.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},
{
"name": "Sense/Net",
"difficulty": "easy",
"description": "First 100 participants to make a pull request to any Sense/Net repo between October 1 and October 31 will receive a limited edition sensenet #hacktoberfest t-shirt.",
"reference": "https://www.sensenet.com/blog/2019-10-01-hacktoberfest-is-here",
"image": "https://raw.githubusercontent.com/SenseNet/sncom-resources/master/img/posts/hacktoberfest2019.png",
"dateAdded": "2019-10-05T22:56:53.000Z",
"tags": ["clothing", "hacktoberfest", "expired"]
},