-
Notifications
You must be signed in to change notification settings - Fork 2
/
shortlinks.json
1626 lines (1626 loc) · 51.7 KB
/
shortlinks.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
[
{
"link": "publicguidelines",
"type": "Article",
"description": "The Community Server Guidelines",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360035969312",
"usefulness": 2
},
{
"link": "gettingstartedonmobile",
"type": "Article",
"description": "How to get started with Discord - On mobile for beginners",
"redirect": "https://support.discord.com/hc/articles/360046618751",
"usefulness": 3
},
{
"link": "howtoreport",
"links": [
"howtoreport",
"serverid",
"userid",
"messageid"
],
"type": "Article",
"description": "How to Properly Report Issues to Trust & Safety",
"redirect": "https://support.discordapp.com/hc/articles/360000291932",
"usefulness": 1
},
{
"link": "beginnersguide",
"type": "Article",
"description": "How to use Discord - For beginners",
"redirect": "https://support.discord.com/hc/articles/360045138571",
"usefulness": 2
},
{
"link": "contact",
"links": [
"contact",
"support"
],
"type": "Form",
"description": "Contact Support - Submit a request",
"redirect": "https://support.discord.com/hc/requests/new",
"usefulness": 1
},
{
"link": "report",
"links": [
"request",
"report"
],
"type": "Form",
"description": "Contact Trust & Safety - Submit a request",
"redirect": "https://support.discord.com/hc/en-us/requests/new?ticket_form_id=360000029731",
"usefulness": 1
},
{
"link": "safety",
"type": "Website",
"description": "Discord Safety Center",
"redirect": "https://discord.com/safety",
"usefulness": 2
},
{
"link": "guidelines",
"type": "Website",
"description": "The Community Guidelines",
"redirect": "https://discordapp.com/guidelines",
"usefulness": 1
},
{
"link": "tos",
"links": [
"tos",
"terms"
],
"type": "Website",
"description": "The Terms of Service",
"redirect": "https://discordapp.com/terms",
"usefulness": 1
},
{
"link": "bugs",
"links": [
"bugs",
"bughunting"
],
"type": "Article",
"description": "How to Report Bugs",
"redirect": "https://support.discord.com/hc/en-us/articles/360046057772",
"usefulness": 2
},
{
"link": "findmyid",
"type": "Article",
"description": "Where can I find my User/Server/Message ID?",
"redirect": "https://support.discordapp.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID-",
"usefulness": 2
},
{
"link": "discord101",
"type": "Blogpost",
"description": "How to use Discord for your classroom",
"redirect": "https://medium.com/@discordnelly/how-to-use-discord-for-your-classroom-8587bf78e6c4",
"usefulness": 3
},
{
"link": "billing",
"type": "Form",
"description": "Contact Support about Billing issues - Submit a request",
"redirect": "https://support.discord.com/hc/requests/new?ticket_form_id=360000118612",
"usefulness": 2
},
{
"link": "hypesquad",
"type": "Website",
"description": "Apply for HypeSquad - Do an application for HypeSquad Events",
"redirect": "https://discordapp.com/hypesquad",
"usefulness": 2
},
{
"link": "moderation",
"links": [
"moderation",
"modacademy",
"dma103",
"dma104",
"dma201",
"dma202",
"dma203",
"(and one for every other article)"
],
"type": "Website",
"description": "Discord Moderator Academy (and links to all the resources)",
"redirect": "https://discord.com/moderation",
"usefulness": 3
},
{
"link": "partners",
"type": "Website",
"description": "The Discord Partners page - Apply for Partner",
"redirect": "https://discordapp.com/partners",
"usefulness": 3
},
{
"link": "feedback",
"type": "Website",
"description": "The Feedback Website",
"redirect": "https://feedback.discordapp.com",
"usefulness": 2
},
{
"link": "bot-verification",
"type": "Article",
"description": "How to get a bot verified",
"redirect": "https://support.discord.com/hc/en-us/articles/360040720412-Bot-Verification-and-Data-Whitelisting",
"usefulness": 3
},
{
"link": "2fa",
"type": "Article",
"description": "How to setup 2FA",
"redirect": "https://support.discordapp.com/hc/en-us/articles/219576828-Setting-up-Two-Factor-Authentication",
"usefulness": 3
},
{
"link": "vfqual",
"links": [
"vfqual",
"vsreqs"
],
"type": "Article",
"description": "Server Verification Qualifications",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360001107231-What-Qualifies-for-Server-Verification-",
"usefulness": 3
},
{
"link": "partnercoc",
"type": "Article",
"description": "The Partnership Code of Conduct",
"redirect": "https://support.discord.com/hc/en-us/articles/360024871991",
"usefulness": 3
},
{
"link": "dnsswap",
"type": "Article",
"description": "Troubleshooting: Changing your DNS provider as a troubleshooting step",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360034366151-Changing-Your-DNS-Provider",
"usefulness": 3
},
{
"link": "cprog",
"type": "Form",
"description": "Contact Support about Community Programs - Submit a request",
"redirect": "https://support.discordapp.com/hc/requests/new?ticket_form_id=360000168511",
"usefulness": 3
},
{
"link": "lang-feedback",
"type": "Form",
"description": "Localization Improvement Form - Translation Issues",
"redirect": "https://support.discord.com/hc/requests/new?ticket_form_id=360004944073",
"usefulness": 3
},
{
"link": "status",
"type": "Website",
"description": "Discord Operating Status",
"redirect": "https://discordstatus.com",
"usefulness": 2
},
{
"link": "nitro",
"type": "Website",
"description": "Showcase of Nitro benefits as well as buying Nitro",
"redirect": "https://discordapp.com/nitro",
"usefulness": 4
},
{
"link": "vfs",
"links": [
"vfs",
"verified"
],
"type": "Website",
"description": "Verification (Verified Servers) - Apply for Verification",
"redirect": "https://discordapp.com/verification",
"usefulness": 3
},
{
"link": "jobs",
"type": "Website",
"description": "Work for Discord - Jobs at Discord",
"redirect": "https://discordapp.com/jobs",
"usefulness": 3
},
{
"link": "refund",
"type": "Article",
"description": "Discord's Refund Policy",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360012668071-Refund-Policy",
"usefulness": 3
},
{
"link": "googleplaystoreintegration",
"type": "Article",
"description": "How to buy Nitro on the Play Store",
"redirect": "https://support.discord.com/hc/articles/360055386693",
"usefulness": 3
},
{
"link": "regionswap",
"type": "Article",
"description": "[Invalid] How to change the Voice Server Region",
"redirect": "https://support.discord.com/hc/en-us/articles/216661717-How-do-I-change-my-Voice-Server-Region-",
"usefulness": 5
},
{
"link": "password",
"type": "Article",
"description": "How to Reset your Password",
"redirect": "https://support.discordapp.com/hc/en-us/articles/218410947-I-forgot-my-Password-Where-can-I-set-a-new-one-",
"usefulness": 3
},
{
"link": "inbox",
"type": "Article",
"description": "How to use the in-app Inbox",
"redirect": "https://support.discord.com/hc/articles/360045027712",
"usefulness": 4
},
{
"link": "macinstall",
"type": "Article",
"description": "macOS Installer Errors",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360022082931",
"usefulness": 3
},
{
"link": "mobilescreenshare",
"type": "Article",
"description": "Mobile Screenshare FAQ",
"redirect": "https://support.discord.com/hc/articles/360058862134",
"usefulness": 4
},
{
"link": "credit",
"type": "Article",
"description": "Nitro Gifting - Account/Nitro Credit",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360030782312-Updates-to-Nitro-Gifting-Account-Credit-",
"usefulness": 3
},
{
"link": "boost",
"links": [
"boost",
"serverboosting"
],
"type": "Article",
"description": "Server Boosting",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360028038352-Server-Boosting-",
"usefulness": 3
},
{
"link": "servervideo",
"type": "Article",
"description": "Server Video Help Article",
"redirect": "https://support.discordapp.com/hc/articles/360041721052",
"usefulness": 3
},
{
"link": "golivescreenshare",
"type": "Article",
"description": "Share your screen with Go Live - Screen Share",
"redirect": "https://support.discordapp.com/hc/articles/360040816151",
"usefulness": 4
},
{
"link": "stagesfaq",
"type": "Article",
"description": "Stage Channels FAQ",
"redirect": "https://support.discord.com/hc/articles/1500005513722",
"usefulness": 4
},
{
"link": "stickersfaq",
"type": "Article",
"description": "Stickers FAQ",
"redirect": "https://support.discord.com/hc/articles/360056891113",
"usefulness": 4
},
{
"link": "voice_errors",
"type": "Article",
"description": "Troubleshooting: Voice connection errors",
"redirect": "https://support.discordapp.com/hc/en-us/articles/115001310031-Voice-Connection-Errors",
"usefulness": 2
},
{
"link": "install",
"links": [
"install",
"installfail"
],
"type": "Article",
"description": "Windows Installer Errors",
"redirect": "https://support.discordapp.com/hc/en-us/articles/209099387--Windows-Installer-Errors",
"usefulness": 2
},
{
"link": "gamepass",
"type": "Article",
"description": "Xbox Game Pass & Discord Nitro",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360035344491",
"usefulness": 4
},
{
"link": "testflight",
"type": "External Website",
"description": "Join the Discord iOS TestFlight Release",
"redirect": "https://testflight.apple.com/join/gdE4pRzI",
"usefulness": 3
},
{
"link": "early_access",
"type": "Form",
"description": "Discord Android Alpha Form",
"redirect": "https://docs.google.com/forms/d/e/1FAIpQLSc0h1dqDjEW14LcoyH9ie_uOLfIuf-tgMiRbzJ2yJmv93B3nA/viewform?usp=sf_link",
"usefulness": 3
},
{
"link": "mytickets",
"type": "Website",
"description": "A link to view your current Support Tickets",
"redirect": "https://support.discordapp.com/hc/en-us/requests",
"usefulness": 3
},
{
"link": "gwupdate",
"type": "Article",
"description": "Gateway Update FAQ for developers",
"redirect": "https://support-dev.discord.com/hc/en-us/articles/360056426994",
"usefulness": 5
},
{
"link": "classroom",
"type": "Article",
"description": "How to use Discord for your classroom (not the blogpost)",
"redirect": "https://support.discordapp.com/hc/articles/360040613072",
"usefulness": 4
},
{
"link": "protectdata",
"type": "Article",
"description": "Protecting Your Data - Selfbots and how Discord limits info available",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360039598252",
"usefulness": 4
},
{
"link": "folders",
"type": "Article",
"description": "Server Folders 101",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360030853132-Server-Folders-101",
"usefulness": 4
},
{
"link": "golive",
"type": "Article",
"description": "Stream your game with Go Live",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360030714312",
"usefulness": 4
},
{
"link": "multistream",
"type": "Article",
"description": "Video & Screenshare Updates - Multistream and More",
"redirect": "https://support.discord.com/hc/articles/360045784891",
"usefulness": 4
},
{
"link": "instability",
"type": "Blogpost",
"description": "Recent Instability & What\u2019s Next - \"What's with the outages?\"",
"redirect": "https://blog.discordapp.com/recent-instability-whats-next-ce7e4a9e3139",
"usefulness": 5
},
{
"link": "2020report",
"type": "Blogpost",
"description": "Transparency report July-December 2020",
"redirect": "https://blog.discord.com/discord-transparency-report-july-dec-2020-34087f9f45fb",
"usefulness": 5
},
{
"link": "stream",
"type": "External Website",
"description": "Link to Discord's Stream on Twitch",
"redirect": "https://www.twitch.tv/discordapp",
"usefulness": 4
},
{
"link": "a11y",
"type": "Form",
"description": "Feedback on Accessibility",
"redirect": "https://forms.gle/jjpshi7n4ahenZod6",
"usefulness": 3
},
{
"link": "devsupport",
"type": "Form",
"description": "Support for Game Developers - Submit a request",
"redirect": "https://support-dev.discordapp.com/hc/en-us/requests/new",
"usefulness": 5
},
{
"link": "marketingjobs",
"type": "Website",
"description": "Discord marketing jobs",
"redirect": "https://discord.com/jobs?team=marketing",
"usefulness": 5
},
{
"link": "devfeedback",
"type": "Website",
"description": "Game Developer Feedback Website",
"redirect": "https://support-dev.discordapp.com/hc/en-us/community/topics",
"usefulness": 5
},
{
"link": "dev-newsletter",
"links": [
"devnewsletter",
"dev-newsletter"
],
"type": "Website",
"description": "[Invalid - 404] Subscribe to the Discord Developer Newsletter",
"redirect": "https://discordapp.com/newsletter",
"usefulness": 5
},
{
"link": "security",
"type": "Website",
"description": "The Bug Bounty Program",
"redirect": "https://discordapp.com/security",
"usefulness": 3
},
{
"link": "nitrotab",
"type": "Article",
"description": "[Currently Sorta Broken] Nitro Tab Clarification Support Article",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360017693772#nitrotab",
"usefulness": 5
},
{
"link": "soundpackfaq",
"type": "Article",
"description": "April Fools 2021: Sound Packs FAQ",
"redirect": "https://support.discord.com/hc/articles/1500005617781",
"usefulness": 5
},
{
"link": "dispatch-error",
"type": "Article",
"description": "Game Dispatch Errors Support Article",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360018124352-Game-Dispatch-Errors",
"usefulness": 5
},
{
"link": "halloweenbot2020",
"type": "Article",
"description": "How to use the 2020 Halloween Bot",
"redirect": "https://support.discord.com/hc/articles/360057167253",
"usefulness": 5
},
{
"link": "krispmobilejp",
"type": "Article",
"description": "Krisp on Mobile FAQ (Japanese)",
"redirect": "https://support.discord.com/hc/ja/articles/360040843952",
"usefulness": 5
},
{
"link": "JP-servervideo",
"type": "Article",
"description": "Server video FAQ (Japanese)",
"redirect": "https://support.discord.com/hc/ja/articles/360041721052",
"usefulness": 5
},
{
"link": "jauz",
"type": "Blogpost",
"description": "2019 Discord Partner Party",
"redirect": "https://blog.discordapp.com/setting-sail-with-jauz-96a2875c8e55?utm_source=medium&utm_medium=blog&utm_campaign=2019-08_bite-this&utm_content=--t%3Acm",
"usefulness": 5
},
{
"link": "ypttartists",
"type": "Blogpost",
"description": "Artists and what Discord means to them",
"redirect": "https://blog.discord.com/discord-is-where-creativity-shines-f64a659aa5b6",
"usefulness": 5
},
{
"link": "bhmcommunities",
"type": "Blogpost",
"description": "Community Spotlight: Black Community Leaders",
"redirect": "https://blog.discord.com/celebrating-black-community-leaders-on-discord-75d23ea60fea",
"usefulness": 5
},
{
"link": "berkeleyblog",
"type": "Blogpost",
"description": "Community Spotlight: UC Berkeley",
"redirect": "https://blog.discord.com/how-a-uc-berkeley-student-helps-recreate-a-campus-experience-through-discord-97dee43d81bb",
"usefulness": 5
},
{
"link": "utdallas-blog",
"type": "Blogpost",
"description": "Community Spotlight: UT Dallas Discord",
"redirect": "https://blog.discord.com/b8934b19a886",
"usefulness": 5
},
{
"link": "hackweek",
"type": "Blogpost",
"description": "Discord Community Hack Week",
"redirect": "https://blog.discordapp.com/discord-community-hack-week-build-and-create-alongside-us-6b2a7b7bba33",
"usefulness": 5
},
{
"link": "holycrap",
"type": "Blogpost",
"description": "Discord Did Things in 2017",
"redirect": "https://blog.discordapp.com/discord-did-things-in-2017-5eb2087da4f2",
"usefulness": 5
},
{
"link": "communityservers",
"type": "Blogpost",
"description": "Discord is for Your Communities - Community Features for everyone",
"redirect": "https://blog.discord.com/discord-is-for-your-communities-3d14464d4c7b",
"usefulness": 5
},
{
"link": "trickcordtreat",
"type": "Blogpost",
"description": "Discord Saves Halloween (Discord's 2020 Halloween Bot)",
"redirect": "https://blog.discord.com/discord-saves-halloween-7816b934c0b1",
"usefulness": 5
},
{
"link": "snowblog18",
"type": "Blogpost",
"description": "Discord Snowsgiving 2018",
"redirect": "https://blog.discordapp.com/discord-snowsgiving-2018-3f0d09d483c",
"usefulness": 5
},
{
"link": "2020-in-review",
"type": "Blogpost",
"description": "Discord's 2020 and how it went, how things are now",
"redirect": "https://blog.discord.com/building-on-our-momentum-bb51874c71e",
"usefulness": 5
},
{
"link": "fancyfancyandroidthings",
"type": "Blogpost",
"description": "Easier In-App Navigation on Android",
"redirect": "https://blog.discord.com/how-discord-made-android-in-app-navigation-easier-fbd904d12521",
"usefulness": 5
},
{
"link": "modappreciation",
"type": "Blogpost",
"description": "Hear it from the Mods: The life of moderators",
"redirect": "https://blog.discord.com/lets-hear-it-for-the-mods-3aaa2426254b",
"usefulness": 4
},
{
"link": "iOSgofast",
"type": "Blogpost",
"description": "How Discord achieves native iOS performance with React Native",
"redirect": "https://blog.discordapp.com/how-discord-achieves-native-ios-performance-with-react-native-390c84dcd502",
"usefulness": 5
},
{
"link": "prideshowcase",
"type": "Blogpost",
"description": "How Discord Communities Celebrate Pride",
"redirect": "https://blog.discord.com/how-discord-communities-celebrate-pride-9255cf3fb761",
"usefulness": 5
},
{
"link": "communitystories",
"type": "Blogpost",
"description": "How Discord is Bringing People Together",
"redirect": "https://blog.discordapp.com/how-discord-is-bringing-people-together-e215bbd41ad9",
"usefulness": 5
},
{
"link": "fodblog",
"type": "Blogpost",
"description": "Introducing First on Discord games [Old]",
"redirect": "https://medium.com/@discordnelly/the-first-first-on-discord-games-73525dab4fd5",
"usefulness": 5
},
{
"link": "stickerswhen",
"type": "Blogpost",
"description": "Introducing Stickers and when they will come",
"redirect": "https://blog.discord.com/peeling-back-the-wrapping-on-stickers-4b37a1d1d17",
"usefulness": 5
},
{
"link": "noisecancellation",
"type": "Blogpost",
"description": "Introduction of noise cancellation as well as Covid-19 voice stats",
"redirect": "https://blog.discord.com/talking-to-each-other-during-covid-19-6ca471fbe5ac",
"usefulness": 5
},
{
"link": "tns2019",
"type": "Blogpost",
"description": "Maintaining Trust and Safety at Discord With Over 200 Million People",
"redirect": "https://blog.discordapp.com/maintaining-trust-and-safety-at-discord-with-over-200-million-people-f0b39adfc00c",
"usefulness": 5
},
{
"link": "krispmobile",
"type": "Blogpost",
"description": "Noise suppression is now available on iOS and Android",
"redirect": "https://blog.discord.com/tune-into-discord-with-krisp-noise-suppression-on-ios-and-android-fcf5806967a0",
"usefulness": 5
},
{
"link": "juneteenth",
"type": "Blogpost",
"description": "Our stand on racial equality",
"redirect": "https://blog.discord.com/our-stand-on-racial-equality-320088e83a22",
"usefulness": 5
},
{
"link": "iwd-events",
"type": "Blogpost",
"description": "Raising Funds for the Breast Cancer Research Foundation",
"redirect": "https://blog.discord.com/raising-funds-for-the-breast-cancer-research-foundation-8729f4145df4",
"usefulness": 5
},
{
"link": "stopasianhate",
"type": "Blogpost",
"description": "Resources Against Hate and Discrimination Towards the AAPI Community",
"redirect": "https://blog.discord.com/resources-against-hate-and-discrimination-towards-the-aapi-community-5c4e385a6e6",
"usefulness": 5
},
{
"link": "vote2020",
"type": "Blogpost",
"description": "Resources for Exercising Your Right to Vote",
"redirect": "https://blog.discord.com/resources-for-exercising-your-right-to-vote-c53cfc23c56f",
"usefulness": 5
},
{
"link": "sayhi2servideo",
"type": "Blogpost",
"description": "Server Video is now added",
"redirect": "https://blog.discord.com/wave-hello-to-server-video-85dcef1128f0",
"usefulness": 5
},
{
"link": "videotime",
"type": "Blogpost",
"description": "Testing Video Chat and Screen Share",
"redirect": "https://blog.discordapp.com/were-testing-video-chat-and-screen-share-with-5-of-players-today-c8ddb108ca31",
"usefulness": 5
},
{
"link": "store",
"type": "Blogpost",
"description": "The Discord Store Beta",
"redirect": "https://blog.discordapp.com/the-discord-store-beta-9a35596fdd4",
"usefulness": 5
},
{
"link": "fodblog",
"type": "Blogpost",
"description": "The First \"First On Discord\" Games",
"redirect": "https://medium.com/@discordnelly/the-first-first-on-discord-games-73525dab4fd5",
"usefulness": 5
},
{
"link": "communityprograms",
"type": "Blogpost",
"description": "The Partner & Verified Server Programs are back",
"redirect": "https://blog.discord.com/get-hyped-the-partner-verified-server-programs-are-back-1da44953672a",
"usefulness": 5
},
{
"link": "scalingwithrust",
"type": "Blogpost",
"description": "Using Rust to Scale Elixir for 11 Million Concurrent Users",
"redirect": "https://blog.discordapp.com/using-rust-to-scale-elixir-for-11-million-concurrent-users-c6f19fc029d3",
"usefulness": 5
},
{
"link": "wumpus4pride",
"type": "Blogpost",
"description": "What Pride Means at Discord",
"redirect": "https://blog.discord.com/what-pride-means-at-discord-b30dcb18224f",
"usefulness": 5
},
{
"link": "whynot9010",
"type": "Blogpost",
"description": "Why not 90/10?",
"redirect": "https://blog.discordapp.com/why-not-90-10-3761ebef4eab",
"usefulness": 5
},
{
"link": "talk",
"type": "Blogpost",
"description": "Your Place to Talk - A blogpost about Discord",
"redirect": "https://blog.discord.com/your-place-to-talk-a7ffa19b901b",
"usefulness": 4
},
{
"link": "wumpusfundraiser",
"type": "External Website",
"description": "Donation Drive for Covid-19",
"redirect": "https://tiltify.com/@discordapp/covid-19-donation-drive-for-direct-relief",
"usefulness": 5
},
{
"link": "coolplaylist",
"type": "External Website",
"description": "A playlist consisting of jams made by people using Discord",
"redirect": "https://soundcloud.com/discord-official/sets/very-cool-community-playlist",
"usefulness": 5
},
{
"link": "donate-snowsgiving",
"type": "External Website",
"description": "Donate for Snowsgiving and get Snowsgiving swag",
"redirect": "https://tiltify.com/@discord/snowsgiving",
"usefulness": 5
},
{
"link": "iwd",
"type": "External Website",
"description": "International Woman's Day fundraiser",
"redirect": "https://tiltify.com/+discord-x-bcrf/bcrf",
"usefulness": 5
},
{
"link": "add-trickcordtreat",
"type": "External Website",
"description": "Link to invite the 2020 Halloween Bot",
"redirect": "https://discord.com/api/oauth2/authorize?client_id=755580145078632508&permissions=268561472&scope=bot",
"usefulness": 5
},
{
"link": "bday3",
"type": "External Website",
"description": "YouTube - Discord Vlog: Third Birthday",
"redirect": "https://youtu.be/VJyaHP-dl48",
"usefulness": 5
},
{
"link": "streamkit",
"type": "Website",
"description": "Discord's StreamKit",
"redirect": "https://discordapp.com/streamkit",
"usefulness": 4
},
{
"link": "blackfriday2020",
"type": "Article",
"description": "Black Friday 2020 FAQ",
"redirect": "https://support.discord.com/hc/en-us/articles/360057438734",
"usefulness": 5
},
{
"link": "wumpus",
"type": "External Website",
"description": "Computer Man (like printer.discord.com)",
"redirect": "https://printer.discord.com",
"usefulness": 4
},
{
"link": "threads-blog",
"type": "Blogpost",
"description": "Threads are here!",
"redirect": "https://blog.discord.com/connect-the-conversation-with-threads-on-discord-3f5fa8b0f6b?utm_source=medium&utm_medium=blog&utm_campaign=2021-07_discord-threads-blog&utm_content=--t%3Acm",
"usefulness": 4
},
{
"link": "mobilegifpicker",
"type": "Article",
"description": "[Removed] Mobile Gif Picker",
"redirect": "https://support.discord.com/hc/articles/360021235192",
"usefulness": 5
},
{
"link": "funimation",
"type": "Article",
"description": "Funimation Partnership [old]",
"redirect": "https://support.discordapp.com/hc/en-us/articles/360036587771",
"usefulness": 5
},
{
"link": "blurpletesla-ig",
"type": "Website",
"description": "Terms for the Snowsgiving 2020 Blurple Tesla giveaway on Instagram",
"redirect": "https://discord.com/terms/snowsgiving-2020/instagram",
"usefulness": 5
},
{
"link": "blurpletesla",
"type": "Website",
"description": "Terms for the Snowsgiving 2020 Blurple Tesla giveaway on Twitter",
"redirect": "https://discord.com/terms/snowsgiving-2020/twitter",
"usefulness": 5
},
{
"link": "TidyingUp",
"type": "Blogpost",
"description": "Removal of activity tab, library and games launcher",
"redirect": "https://blog.discordapp.com/were-constantly-listening-to-your-feedback-and-working-to-improve-how-discord-feels-and-functions-676a5cb3ab63",
"usefulness": 5
},
{
"link": "wumpusfundraiser",
"type": "External Website",
"description": "COVID-19 Donation Drive for Direct Relief",
"redirect": "https://tiltify.com/@discordapp/covid-19-donation-drive-for-direct-relief",
"usefulness": 5
},
{
"link": "FightingCowboyOS",
"type": "External Website",
"description": "First bitly, then redirect to Steam Store - Omensight: Definitive Edition",
"redirect": "http://bit.ly/2uxQH0g?utm_source=youtube&utm_campaign=FightinCowboy",
"usefulness": 5
},
{
"link": "ThinkNoodlesFK",
"type": "External Website",
"description": "Floor Kids (affiliate link)",
"redirect": "http://bit.ly/2JEw2Bq?utm_source=youtube&utm_campaign=ThinkNoodles",
"usefulness": 5
},
{
"link": "verify",
"links": [
"verify",
"verification"
],
"type": "Form",
"description": "[CLOSED FORM] Discord Verification Program Application",
"redirect": "https://goo.gl/forms/Oxa5IuX5TIKANqRv2",
"usefulness": 5
},
{
"link": "jhzer",
"type": "Server Invite",
"description": "[INVALID] Invite to JZ(E)R's Server",
"redirect": "https://discord.gg/jhzer?utm_source=twitter&utm_medium=partnerships&utm_campaign=jhzer",
"usefulness": 5
},
{
"link": "nexxuzworld",
"type": "Server Invite",
"description": "[INVALID] Invite to Nexxuz World",
"redirect": "https://discord.gg/nexxuzworld?utm_source=twitter&utm_medium=partnerships&utm_campaign=nexxuz",
"usefulness": 5
},
{
"link": "sarinha3",
"type": "Server Invite",
"description": "Invite to Chanchinhos (Sarinha's Server)",
"redirect": "https://discord.gg/sarinha3?utm_source=twitter&utm_medium=partnerships&utm_campaign=sarinha",
"usefulness": 5
},
{
"link": "devovo",
"type": "Server Invite",
"description": "Invite to Denovo",
"redirect": "https://discord.gg/devovo?utm_source=twitter&utm_medium=partnerships&utm_campaign=devovo",
"usefulness": 5
},
{
"link": "dgtvcommunity",
"type": "Server Invite",
"description": "Invite to DGTV Community Server",
"redirect": "https://discord.gg/dgtvcommunity?utm_source=twitter&utm_medium=partnerships&utm_campaign=dennisgamingtv",
"usefulness": 5
},
{
"link": "doom49yt",
"type": "Server Invite",
"description": "Invite to DooM49ers",
"redirect": "https://discord.gg/doom49?utm_source=youtube&utm_medium=partnerships&utm_campaign=doom49",
"usefulness": 5
},
{
"link": "fruitnation",
"type": "Server Invite",
"description": "Invite to Fruit Nation",
"redirect": "https://discord.gg/fruitnation?utm_source=twitter&utm_medium=premium%20partner&utm_campaign=fruitnation",
"usefulness": 5
},
{
"link": "magikarpusedfly",
"type": "Server Invite",
"description": "Invite to Karp Crew (magikarpusedfly's server)",
"redirect": "http://discord.gg/magikarpusedfly?utm_source=twitter&utm_campaign=magikarpusedfly",
"usefulness": 5
},
{
"link": "pixelatedapollo",
"type": "Server Invite",
"description": "Invite to Kings of Apollo (Pixelated Apollo's Server)",
"redirect": "http://discord.gg/pixelatedapollo?utm_source=twitter&utm_medium=Premium%20Partner&utm_campaign=pixelatedapollo",
"usefulness": 5
},
{
"link": "mumbojumbo",
"type": "Server Invite",
"description": "Invite to Mumbo Jumbo's Server",
"redirect": "https://discord.gg/mumbojumbo?utm_source=twitter&utm_medium=partnerships&utm_campaign=mumbojumbo",
"usefulness": 5
},
{
"link": "natsukisel",
"type": "Server Invite",
"description": "Invite to NatsukiSel",
"redirect": "https://discord.gg/natsukisel?utm_source=twitter&utm_medium=partnerships&utm_campaign=natsukisel",
"usefulness": 5
},
{
"link": "siphano",
"type": "Server Invite",
"description": "Invite to Siphano's Server",
"redirect": "https://discord.gg/siphano?utm_source=Twitter&utm_medium=Premium%20Partner&utm_campaign=siphano",
"usefulness": 5
},
{
"link": "skyyart",
"type": "Server Invite",
"description": "Invite to Skyart",
"redirect": "https://discord.gg/skyyart?utm_source=twitter&utm_medium=partnerships&utm_campaign=skyyart",
"usefulness": 5
},
{
"link": "teamchaos",
"type": "Server Invite",
"description": "Invite to TeamChaos",
"redirect": "https://discord.gg/teamchaos?utm_source=twitter&utm_medium=partnerships&utm_campaign=chaos",