-
Notifications
You must be signed in to change notification settings - Fork 5
/
test-data.json
1370 lines (1370 loc) · 87.3 KB
/
test-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
{
"posts": [
{
"post": {
"id": 2777275,
"name": "!IMPORTANT! Please Read",
"body": "Lemmy doesn't provide any analytics. Give this post a like and/or comment if you use this instance. I'm trying to gauge usage by humans.\n\nI'll let this census run for about a week to gauge usage.\n\nResults might cause different changes to the services.\n\nI'm doing this because the cost of running this instance is higher than most other instances due to reliability and disaster recovery implementations. I'm curious if I should back down many of these costs if we're not used fully. I don't see much activity directly in this instance.\n\nI know that discuss.online wasn't listed on join-lemmy.org for about a month due to a bug with the Lemmy crawler. They just recently fixed it with their redesign. We are now listed but no longer featured.\n\ntl;dr; is this instance dying? Let me know if you're here.",
"creator_id": 2,
"community_id": 2,
"removed": false,
"locked": false,
"published": "2023-11-08T19:47:46.238143Z",
"deleted": false,
"nsfw": false,
"ap_id": "https://discuss.online/post/2777275",
"local": true,
"language_id": 37,
"featured_community": false,
"featured_local": true
},
"creator": {
"id": 2,
"name": "jgrim",
"avatar": "https://discuss.online/pictrs/image/fc008675-7685-4a2e-90b6-729be089cd38.png",
"banned": false,
"published": "2023-06-09T02:34:06.081620Z",
"actor_id": "https://discuss.online/u/jgrim",
"bio": "Site admin for [discuss.online](https://discuss.online).\n\nI'm a web developer, sysadmin, and entrepreneur by trade.\n\nI do photography, PC gaming, 3D Printing, and maker projects for fun.\n\nMore here: [https://jasongr.im](jasongr.im)",
"local": true,
"banner": "https://discuss.online/pictrs/image/5495b6d0-f09a-4b59-a973-c73a85bdd9a9.jpeg",
"deleted": false,
"matrix_user_id": "@jgrim:discuss.online",
"bot_account": false,
"instance_id": 1
},
"community": {
"id": 2,
"name": "announcements",
"title": "Announcements",
"description": "Community updates and announcements.\n\nAdmins will post any updates here so be sure to follow!\n\nImportant updates will be pinned to the local feed.",
"removed": false,
"published": "2023-06-09T04:02:55.695685Z",
"updated": "2023-07-14T18:18:10.953641Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://discuss.online/c/announcements",
"local": true,
"icon": "https://discuss.online/pictrs/image/07a9c0d2-9283-45ab-a223-d499333d4210.png",
"banner": "https://discuss.online/pictrs/image/154be3fb-87fd-4920-99f5-6a10ef2a375c.png",
"hidden": false,
"posting_restricted_to_mods": true,
"instance_id": 1
},
"creator_banned_from_community": false,
"creator_is_moderator": true,
"counts": {
"id": 425917,
"post_id": 2777275,
"comments": 18,
"score": 28,
"upvotes": 28,
"downvotes": 0,
"published": "2023-11-08T19:47:46.238143Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 18
},
{
"post": {
"id": 2823360,
"name": "I'm not asking to be rich.",
"url": "https://lemmy.world/pictrs/image/47c38023-7a23-4102-b6dd-29e9f1bad522.png",
"creator_id": 269666,
"community_id": 2162,
"removed": false,
"locked": false,
"published": "2023-11-10T18:12:39.370485Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://lemmy.world/pictrs/image/7f683d53-eda8-4972-84cc-a56bc4e56704.png",
"ap_id": "https://lemmy.world/post/8073100",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 269666,
"name": "FlyingSquid",
"display_name": "Flying Squid",
"avatar": "https://lemmy.world/pictrs/image/dbaaada6-12c3-4c82-ac2c-60574c4d51c3.jpeg",
"banned": false,
"published": "2023-06-27T14:13:51.330396Z",
"actor_id": "https://lemmy.world/u/FlyingSquid",
"local": false,
"deleted": false,
"bot_account": false,
"instance_id": 17
},
"community": {
"id": 2162,
"name": "workreform",
"title": "Work Reform",
"description": "A place to discuss positive changes that can make work more equitable, and to vent about current practices. We are NOT against work; we just want the fruits of our labor to be recognized better.\n\n**Our Philosophies:**\n\n- All workers must be paid a living wage for their labor.\n- Income inequality is the main cause of lower living standards.\n- Workers must join together and fight back for what is rightfully theirs.\n- We must not be divided and conquered. Workers gain the most when they focus on unifying issues.\n\n**Our Goals**\n\n- Higher wages for underpaid workers.\n- Better worker representation, including but not limited to unions.\n- Better and fewer working hours.\n- Stimulating a massive wave of worker organizing in the United States and beyond.\n- Organizing and supporting political causes and campaigns that put workers first.\n",
"removed": false,
"published": "2023-06-18T01:16:20.153789Z",
"updated": "2023-06-19T03:28:49.454711Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/workreform",
"local": false,
"icon": "https://lemmy.world/pictrs/image/43e66c26-9809-4f90-a45c-6e4cc61685fa.webp",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 429832,
"post_id": 2823360,
"comments": 188,
"score": 1374,
"upvotes": 1408,
"downvotes": 34,
"published": "2023-11-10T18:12:39.370485Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 188
},
{
"post": {
"id": 2838924,
"name": "\"Lighthouse\" by Extra Fabulous Comics",
"url": "https://lemmy.world/pictrs/image/7bd96cd0-e4ca-41b2-8aad-2195472ca4f5.png",
"body": "- https://www.extrafabulouscomics.com/\n- [Patreon](https://www.patreon.com/ExtraFabulousComics)",
"creator_id": 631296,
"community_id": 24580,
"removed": false,
"locked": false,
"published": "2023-11-11T12:07:27.023351Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://discuss.online/pictrs/image/1a6a3d51-9a82-4fca-980c-a9b854b52e50.png",
"ap_id": "https://lemmy.world/post/8107050",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 631296,
"name": "Geert",
"display_name": "HEISENBERG",
"avatar": "https://lemmy.world/pictrs/image/bb120ed9-ba70-402c-8e90-7fd04594c2fe.jpeg",
"banned": false,
"published": "2023-07-07T13:26:53.365720Z",
"actor_id": "https://lemmy.world/u/Geert",
"bio": "![duckass](https://lemmy.world/pictrs/image/54fd8491-8be8-4614-8b72-5f73112cf8c3.gif \"duckass\") ",
"local": false,
"banner": "https://lemmy.world/pictrs/image/2071cdea-68a6-4b91-a4be-c87066480baf.jpeg",
"deleted": false,
"bot_account": false,
"instance_id": 17
},
"community": {
"id": 24580,
"name": "comicstrips",
"title": "Comic Strips",
"description": "**Comic Strips** is a community for those who love comic stories.\n\nThe rules are simple:\n\n- The post can be a single image, an image gallery, or a link to a specific comic hosted on another site (the author's website, for instance).\n- The comic must be a complete story.\n- If it is an external link, it must be to a specific story, not to the root of the site.\n- You may post comics from others or your own.\n- If you are posting a comic of your own, a maximum of one per week is allowed (I know, your comics are great, but this rule helps avoid spam).\n- The comic can be in any language, but if it's not in English, OP must include an English translation in the post's 'body' field (note: you don't need to select a specific language when posting a comic).\n- Politeness.\n- Adult content is not allowed. This community aims to be fun for people of all ages.\n\n\n**Web of links**\n\n- [email protected]: \"I use Arch btw\"\n- [email protected]: memes (you don't say!)\n- [email protected]: \"shitpost to your hearts content\"\n- [email protected]: Star Trek memes and shitposts\n",
"removed": false,
"published": "2023-06-23T19:55:08.808896Z",
"updated": "2023-10-27T11:28:51.745787Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/comicstrips",
"local": false,
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 431094,
"post_id": 2838924,
"comments": 16,
"score": 843,
"upvotes": 852,
"downvotes": 9,
"published": "2023-11-11T12:07:27.023351Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 16
},
{
"post": {
"id": 2836781,
"name": "Communist Filth/Capitalist Filth",
"url": "https://lemmy.ml/pictrs/image/3bd8dae8-ba7b-45b1-8eff-f9bba4d69f51.jpeg",
"creator_id": 2473419,
"community_id": 5,
"removed": false,
"locked": false,
"published": "2023-11-11T09:49:16.473415Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://lemmy.ml/pictrs/image/2e0b58d2-b14e-4451-a101-905ae2da338a.jpeg",
"ap_id": "https://lemmy.ml/post/7807923",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 2473419,
"name": "Grayox",
"display_name": "Grayox",
"avatar": "https://lemmy.ml/pictrs/image/e8eeb08e-6288-4664-8ee0-6a3c9d3296bd.jpeg",
"banned": false,
"published": "2023-09-11T19:19:44.708554Z",
"actor_id": "https://lemmy.ml/u/Grayox",
"bio": "Smoke grass, drive fast, and support the working class ",
"local": false,
"banner": "https://lemmy.ml/pictrs/image/ded91645-bfa2-4f4c-8232-1ec2f3154cfd.jpeg",
"deleted": false,
"bot_account": false,
"instance_id": 4
},
"community": {
"id": 5,
"name": "memes",
"title": "Memes",
"description": "#### Rules:\n\n\n01. Be civil and nice.\n02. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you *have* to.",
"removed": false,
"published": "2019-04-25T16:54:42.997194Z",
"updated": "2022-01-12T13:43:29.936386Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/memes",
"local": false,
"icon": "https://lemmy.ml/pictrs/image/CJ7moKL2SV.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 4
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 430992,
"post_id": 2836781,
"comments": 308,
"score": 638,
"upvotes": 812,
"downvotes": 174,
"published": "2023-11-11T09:49:16.473415Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 308
},
{
"post": {
"id": 2840983,
"name": "One Mississippi",
"url": "https://lemmy.ml/pictrs/image/efef2d74-5a7b-4a7b-bcbc-3a24cd5b8d0c.jpeg",
"creator_id": 2473419,
"community_id": 2162,
"removed": false,
"locked": false,
"published": "2023-11-11T13:48:36.931368Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://discuss.online/pictrs/image/1619e6b4-5a07-4b03-ab4e-dc083a2adb8d.jpeg",
"ap_id": "https://lemmy.ml/post/7815842",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 2473419,
"name": "Grayox",
"display_name": "Grayox",
"avatar": "https://lemmy.ml/pictrs/image/e8eeb08e-6288-4664-8ee0-6a3c9d3296bd.jpeg",
"banned": false,
"published": "2023-09-11T19:19:44.708554Z",
"actor_id": "https://lemmy.ml/u/Grayox",
"bio": "Smoke grass, drive fast, and support the working class ",
"local": false,
"banner": "https://lemmy.ml/pictrs/image/ded91645-bfa2-4f4c-8232-1ec2f3154cfd.jpeg",
"deleted": false,
"bot_account": false,
"instance_id": 4
},
"community": {
"id": 2162,
"name": "workreform",
"title": "Work Reform",
"description": "A place to discuss positive changes that can make work more equitable, and to vent about current practices. We are NOT against work; we just want the fruits of our labor to be recognized better.\n\n**Our Philosophies:**\n\n- All workers must be paid a living wage for their labor.\n- Income inequality is the main cause of lower living standards.\n- Workers must join together and fight back for what is rightfully theirs.\n- We must not be divided and conquered. Workers gain the most when they focus on unifying issues.\n\n**Our Goals**\n\n- Higher wages for underpaid workers.\n- Better worker representation, including but not limited to unions.\n- Better and fewer working hours.\n- Stimulating a massive wave of worker organizing in the United States and beyond.\n- Organizing and supporting political causes and campaigns that put workers first.\n",
"removed": false,
"published": "2023-06-18T01:16:20.153789Z",
"updated": "2023-06-19T03:28:49.454711Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/workreform",
"local": false,
"icon": "https://lemmy.world/pictrs/image/43e66c26-9809-4f90-a45c-6e4cc61685fa.webp",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 431199,
"post_id": 2840983,
"comments": 66,
"score": 595,
"upvotes": 612,
"downvotes": 17,
"published": "2023-11-11T13:48:36.931368Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 66
},
{
"post": {
"id": 2825715,
"name": "The public doesn’t understand the risks of a Trump victory. That’s the media’s fault",
"url": "https://www.theguardian.com/commentisfree/2023/nov/09/trump-president-democracy-threat-media-journalism",
"body": "The press must get across to American citizens the crucial importance of this election and the dangers of a Trump win. They don’t need to surrender their journalistic independence to do so or be “in the tank” for Biden or anyone else.\n\nIt’s now clearer than ever that Trump, if elected, will use the federal government to go after his political rivals and critics, even deploying the military toward that end. His allies are hatching plans to invoke the Insurrection Act on day one.",
"creator_id": 9458,
"community_id": 2809,
"removed": false,
"locked": false,
"published": "2023-11-10T20:33:11.586847Z",
"deleted": false,
"nsfw": false,
"embed_title": "The public doesn’t understand the risks of a Trump victory. That’s the media’s fault | Margaret Sullivan",
"embed_description": "With democracy in the balance, the press must relay the crucial importance of this election and the dangers of a Trump win",
"thumbnail_url": "https://lemmy.world/pictrs/image/03507fbc-7269-4710-ba19-78f3b3c2e5f5.jpeg",
"ap_id": "https://lemmy.one/post/6595609",
"local": false,
"language_id": 37,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 9458,
"name": "spaceghoti",
"display_name": "spaceghoti",
"avatar": "https://lemmy.one/pictrs/image/4284fa30-b352-41b3-ae81-7b5523758f10.jpeg",
"banned": false,
"published": "2023-06-07T02:10:14.944078Z",
"actor_id": "https://lemmy.one/u/spaceghoti",
"local": false,
"deleted": false,
"bot_account": false,
"instance_id": 8
},
"community": {
"id": 2809,
"name": "politics",
"title": "politics ",
"description": "Welcome *migrating redditors* to the new US political news community. Please read our rules\n\n**Rules:**\n1. *Post only links to articles, Title must fairly describe link contents. If your title differs from the site’s, it should only be to add context or be more descriptive. **Do not post entire articles in the body or in the comments**.*\n2. *Articles must be relevant to US political news. Links must be to quality and original content. Articles should be worth reading. Clickbait, stub articles, and rehosted or stolen content are not allowed. [Check your source for Reliability and Bias here](https://adfontesmedia.com/interactive-media-bias-chart/).*\n3. *Be civil, No violations of [TOS](https://mastodon.world/about).*\n4. *No memes, trolling, or low-effort comments.*\n5. *Vote based on comment quality, not agreement. This community aims to foster discussion; please reward people for putting effort into articulating their viewpoint, even if you disagree with it.*\n6. *No hate speech, slurs, celebrating death, or abusive language. This will result in a ban. Usernames containing racist, or inappropriate slurs will be banned without warning*\n\n*That's all the rules!*\n\n**Civic Links**\n\n• [Register To Vote](https://www.rockthevote.org)\n\n• [Citizenship Resource Center](https://www.uscis.gov/citizenship)\n\n• [Congressional Awards Program](http://www.congressionalaward.org/congress/)\n\n• [Federal Government Agencies](http://www.firstgov.gov/Agencies/Federal/All_Agencies/index.shtml)\n\n• [Library of Congress Legislative Resources](https://www.loc.gov/research-centers/law-library-of-congress/researcher-resources/)\n\n• [The White House](http://www.whitehouse.gov/)\n\n• [U.S. House of Representatives](http://www.house.gov/)\n\n• [U.S. Senate](http://www.senate.gov/)\n\n**Partnered Communities:**\n\n• [News](https://lemmy.world/c/news)\n\n• [World News](https://lemmy.world/c/world)\n\n• [Global Politics](https://lemmy.world/c/globalpolitics)\n\n• [Moderate Politics](https://lemmy.world/c/moderate_politics)\n\n• [Progressive Politics](https://lemmy.world/c/progressivepolitics)\n\n• [UK Politics](https://lemmy.world/c/[email protected])\n\n• [Canadian Politics](https://lemmy.world/c/[email protected])\n\n• [Australian Politics](https://lemmy.world/c/[email protected])\n\n• [New Zealand Politics](https://lemmy.world/c/[email protected])\n\n\n\n",
"removed": false,
"published": "2023-06-09T19:15:12.764950Z",
"updated": "2023-10-19T22:20:22.557517Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/politics",
"local": false,
"icon": "https://lemmy.world/pictrs/image/21523b35-0e0f-4959-ad92-91a7b0fb9834.png",
"banner": "https://lemmy.world/pictrs/image/4b98b708-9202-422f-a996-38e2fdb78758.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 430082,
"post_id": 2825715,
"comments": 76,
"score": 526,
"upvotes": 546,
"downvotes": 20,
"published": "2023-11-10T20:33:11.586847Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 76
},
{
"post": {
"id": 2808094,
"name": "The lazy, entitled millennials trope just doesn’t hold up. Whoopi in hot water again...",
"url": "https://www.msnbc.com/msnbc/msnbc/whoopi-goldberg-the-view-millennials-argument-rcna124424",
"body": "Whoopi Goldberg argued on “The View” that millennials feel that raising a family and buying a house are out of reach because they simply aren’t working hard enough.",
"creator_id": 257925,
"community_id": 3201,
"removed": false,
"locked": false,
"published": "2023-11-10T01:32:21.387424Z",
"deleted": false,
"nsfw": false,
"embed_title": "The lazy, entitled millennials trope just doesn’t hold up",
"embed_description": "Whoopi Goldberg argued on “The View” that millennials feel that raising a family and buying a house are out of reach because they simply aren’t working hard enough.",
"thumbnail_url": "https://discuss.online/pictrs/image/270f9af4-eded-4624-bf01-7d29694f9de4.jpeg",
"ap_id": "https://lemmy.world/post/8042534",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 257925,
"name": "return2ozma",
"avatar": "https://lemmy.world/pictrs/image/d3a9d820-8565-42fc-934b-ed38e2b5f96e.jpeg",
"banned": false,
"published": "2023-07-01T01:58:13.327834Z",
"actor_id": "https://lemmy.world/u/return2ozma",
"local": false,
"deleted": false,
"bot_account": false,
"instance_id": 17
},
"community": {
"id": 3201,
"name": "news",
"title": "News",
"description": "Welcome to the News community! \n\nRules: \n\n::: spoiler 1. Be civil\n___\nAttack the argument, not the person. No racism/sexism/bigotry. Good faith argumentation only. Trolling is uncivil and is grounds for removal and/or a community ban.\n___\n:::\n\n::: spoiler 2. All posts should contain a source (url) that is as reliable and unbiased as possible and must only contain one link. \n___\nObvious right or left wing sources will be removed at the mods discretion. We have an actively updated blocklist, which you can see here: https://lemmy.world/post/2246130 if you feel like any website is missing, contact the mods. Supporting links can be added in comments or posted seperately but not to the post body.\n___\n:::\n\n::: spoiler 3. No bots, spam or self-promotion.\n___\nOnly approved bots, which follow the guidelines for bots set by the instance, are allowed.\n___\n:::\n\n::: spoiler 4. Post titles should be the same as the article used as source.\n___\nPosts which titles don’t match the source won’t be removed, but the autoMod will notify you, and if your title misrepresents the original article, the post will be deleted. If the site changed their headline, the bot might still contact you, just ignore it, we won’t delete your post.\n___\n:::\n\n\n\n::: spoiler 5. Only recent news is allowed.\n___\nPosts must be news from the most recent 30 days.\n___\n:::\n\n::: spoiler 6. All articles must be news articles.\n___\nNo opinion pieces, Listicles, editorials or celebrity gossip is allowed. All posts will be judged on a case-by-case basis.\n___\n:::\n\n\n::: spoiler 7. No duplicate posts.\n___\nIf a source you used was already posted by someone else, the autoMod will leave a message. Please remove your post if the autoMod is correct. If the post that matches your post is very old, we refer you to rule 5.\n___\n:::\n\n\n::: spoiler 8. Misinformation is prohibited.\n___\nMisinformation / propaganda is strictly prohibited. Any comment or post containing or linking to misinformation will be removed. If you feel that your post has been removed in error, credible sources must be provided.\n___\n:::\n\n::: spoiler 9. No link shorteners.\n___\nThe auto mod will contact you if a link shortener is detected, please delete your post if they are right.\n___\n:::\n\n\n\n::: spoiler 10. Don't copy entire article in your post body\n___\nFor copyright reasons, you are not allowed to copy an entire article into your post body. This is an instance wide rule, that is strictly enforced in this community.\n:::\n",
"removed": false,
"published": "2023-06-09T20:29:47.599964Z",
"updated": "2023-11-10T22:27:17.757332Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/news",
"local": false,
"icon": "https://lemmy.world/pictrs/image/8f2046ae-5d2e-495f-b467-f7b14ccb4152.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 428613,
"post_id": 2808094,
"comments": 132,
"score": 514,
"upvotes": 539,
"downvotes": 25,
"published": "2023-11-10T01:32:21.387424Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 132
},
{
"post": {
"id": 2827709,
"name": "Far-right hosts are blaming the GOP's big election losses on Taylor Swift",
"url": "https://www.businessinsider.com/far-right-blaming-taylor-swift-gop-election-losses-2023-11",
"body": "",
"creator_id": 2204711,
"community_id": 3012,
"removed": false,
"locked": false,
"published": "2023-11-10T21:47:33.025781Z",
"deleted": false,
"nsfw": false,
"embed_title": "Far-right hosts are blaming the GOP's big election losses on Taylor Swift",
"embed_description": "Right-wing activist Jack Posobiec and commentator Charlie Kirk both blamed Taylor Swift's political power for electoral losses.",
"thumbnail_url": "https://lemmy.world/pictrs/image/a4b568d8-c76c-4c42-be0f-a9b5536df916.jpeg",
"ap_id": "https://feddit.ch/post/2232470",
"local": false,
"language_id": 37,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 2204711,
"name": "ZeroCool",
"display_name": "ZeroCool",
"avatar": "https://feddit.ch/pictrs/image/6e36cc03-42e7-4d3c-8fee-96dd96554852.jpeg",
"banned": false,
"published": "2023-09-02T22:03:41.606919Z",
"actor_id": "https://feddit.ch/u/ZeroCool",
"bio": "@[email protected]",
"local": false,
"banner": "https://feddit.ch/pictrs/image/b25e34fd-15ea-42a9-bf45-e663ca6db733.webp",
"deleted": false,
"bot_account": false,
"instance_id": 415
},
"community": {
"id": 3012,
"name": "nottheonion",
"title": "Not The Onion",
"description": "# Welcome\n\nWe're not *[The Onion](https://www.theonion.com/)*! Not affiliated with them in any way! Not operated by them in any way! All the news here is real!\n\n# The Rules\n\n**Posts** must be:\n\n1. Links to news stories from...\n2. ...credible sources, with...\n3. ...their original headlines, that...\n4. ...would make people who see the headline think, “That has got to be a story from The Onion, America’s Finest News Source.”\n\n**Comments** must abide by the server rules for Lemmy.world and generally abstain from trollish, bigoted, or otherwise disruptive behavior that makes this community less fun for everyone.\n\nAnd that’s basically it!",
"removed": false,
"published": "2023-06-11T08:19:06.839122Z",
"updated": "2023-11-10T19:35:24.648193Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/nottheonion",
"local": false,
"icon": "https://lemmy.world/pictrs/image/41e39366-cb91-4d4a-bc07-a47621cb7d5f.jpeg",
"banner": "https://lemmy.world/pictrs/image/60356746-efdd-4a7f-8997-50147cc64cc7.jpeg",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 430212,
"post_id": 2827709,
"comments": 193,
"score": 805,
"upvotes": 829,
"downvotes": 24,
"published": "2023-11-10T21:47:33.025781Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 193
},
{
"post": {
"id": 2838987,
"name": "After complaining yesterday about seeing too much Linux content in the Fediverse I went out and bought a laptop for Linux.",
"url": "https://cdn.masto.host/mstdngames/media_attachments/files/111/387/858/013/179/294/original/018d791e59cd51e2.jpg",
"body": "Turns out the reply in my thread telling me the best way to combat not caring about Linux is to care about Linux was absolutely correct. \n\nI picked up a laptop, installed Linux Mint Cinnamon, and I'm already obsessed. I haven't had this much fun with a PC in a long time and it's just a cheapo Dell Inspiron 3520.",
"creator_id": 3846484,
"community_id": 29,
"removed": false,
"locked": false,
"published": "2023-11-11T12:13:12.745418Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://lemmy.ml/pictrs/image/fce08ba9-bba6-4a7d-8c66-db1e29d25782.jpeg",
"ap_id": "https://lemmy.zip/post/5406272",
"local": false,
"language_id": 37,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 3846484,
"name": "Jezebelley",
"display_name": "Jeze3D.exe 💾",
"avatar": "https://lemmy.zip/pictrs/image/24801baf-8282-4e86-b8f8-6d97773496ec.webp",
"banned": false,
"published": "2023-10-31T14:59:51.933207Z",
"actor_id": "https://lemmy.zip/u/Jezebelley",
"bio": "🎮 | Gamer\n🦜 | Birder\n👻 | Horror Aficionado\n🍝 | Foodie\n📟 | Nostalgia Junkie\n\n [Mastodon](https://mstdn.games/@jezebelley)",
"local": false,
"banner": "https://lemmy.zip/pictrs/image/72754766-3f50-4972-b009-eb5c78ba6806.webp",
"deleted": false,
"matrix_user_id": "@jezebelley.exe:matrix.org",
"bot_account": false,
"instance_id": 219
},
"community": {
"id": 29,
"name": "linux",
"title": "Linux",
"description": "From Wikipedia, the free encyclopedia\n\nLinux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n\nDistributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word \"Linux\" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n\n\n### Rules\n* Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n* No misinformation\n* No NSFW content\n* No hate speech, bigotry, etc \n\n### Related Communities\n* [[email protected]](https://lemmy.ml/c/opensource)\n* [[email protected]](https://lemmy.ml/c/libre_culture) \n* [[email protected]](https://lemmy.ml/c/technology) \n* [[email protected]](https://lemmy.ml/c/libre_hardware) \n\nCommunity icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)",
"removed": false,
"published": "2019-06-01T15:07:36.179766Z",
"updated": "2022-06-18T17:36:20.924834Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.ml/c/linux",
"local": false,
"icon": "https://lemmy.ml/pictrs/image/q98XK4sKtw.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 4
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 431097,
"post_id": 2838987,
"comments": 241,
"score": 1195,
"upvotes": 1234,
"downvotes": 39,
"published": "2023-11-11T12:13:12.745418Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 241
},
{
"post": {
"id": 2843351,
"name": "Squad goals?",
"url": "https://ttrpg.network/pictrs/image/1cba2f94-a6a6-46c3-baac-680e74026b15.png",
"creator_id": 2509908,
"community_id": 18678,
"removed": false,
"locked": false,
"published": "2023-11-11T15:44:09.862320Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://discuss.online/pictrs/image/b97fee07-8b38-4401-89d6-5b11ec97d5f3.png",
"ap_id": "https://ttrpg.network/post/2100828",
"local": false,
"language_id": 37,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 2509908,
"name": "CalamityEmu",
"banned": false,
"published": "2023-09-13T16:59:36.814986Z",
"actor_id": "https://ttrpg.network/u/CalamityEmu",
"local": false,
"deleted": false,
"bot_account": false,
"instance_id": 1514
},
"community": {
"id": 18678,
"name": "rpgmemes",
"title": "RPGMemes ",
"description": "Humor, jokes, memes about TTRPGs",
"removed": false,
"published": "2023-06-21T17:18:19.866103Z",
"updated": "2023-07-01T03:32:32.438388Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://ttrpg.network/c/rpgmemes",
"local": false,
"icon": "https://ttrpg.network/pictrs/image/3f8ac09e-5b9a-4afd-b819-e92970b5174f.jpeg",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 1514
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 431361,
"post_id": 2843351,
"comments": 20,
"score": 470,
"upvotes": 476,
"downvotes": 6,
"published": "2023-11-11T15:44:09.862320Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 20
},
{
"post": {
"id": 2815436,
"name": "Elon Musk loses another one: Sony is disabling Twitter integration on PlayStation consoles next week",
"url": "https://www.pcgamer.com/elon-musk-loses-another-one-sony-is-disabling-twitter-integration-on-playstation-consoles-next-week/",
"creator_id": 269666,
"community_id": 4498,
"removed": false,
"locked": false,
"published": "2023-11-10T11:53:53.830579Z",
"deleted": false,
"nsfw": false,
"embed_title": "Elon Musk loses another one: Sony is disabling Twitter integration on PlayStation consoles next week",
"embed_description": "Sony follows Microsoft and Blizzard in opting to drop support for the troubled social media platform.",
"thumbnail_url": "https://lemmy.world/pictrs/image/df8b62d4-b460-471e-a7d8-df95b0de2cda.jpeg",
"ap_id": "https://lemmy.world/post/8058838",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 269666,
"name": "FlyingSquid",
"display_name": "Flying Squid",
"avatar": "https://lemmy.world/pictrs/image/dbaaada6-12c3-4c82-ac2c-60574c4d51c3.jpeg",
"banned": false,
"published": "2023-06-27T14:13:51.330396Z",
"actor_id": "https://lemmy.world/u/FlyingSquid",
"local": false,
"deleted": false,
"bot_account": false,
"instance_id": 17
},
"community": {
"id": 4498,
"name": "enoughmuskspam",
"title": "Enough Musk Spam",
"description": "For those that have had enough of the Elon Musk worship online.\n\nNo flaming, baiting, etc. This community is intended for those opposed to the influx of Elon Musk-related advertising online. Coming here to defend Musk or his companies will not get you banned, but it likely will result in downvotes. Please use the reporting feature if you see a rule violation.\n\nOpinions from all sides of the political spectrum are welcome here. However, we kindly ask that off-topic political discussion be kept to a minimum, so as to focus on the goal of this sub. This community is minimally moderated, so discussion and the power of upvotes/downvotes are allowed, provided lemmy.world rules are not broken.\n\nPost links to instances of obvious Elon Musk fanboy brigading in default subreddits, lemmy/kbin communities/instances, astroturfing from Tesla/SpaceX/etc., or any articles critical of Musk, his ideas, unrealistic promises and timelines, or the working conditions at his companies.\n\nTesla-specific discussion can be posted here as well as our sister community /c/RealTesla.",
"removed": false,
"published": "2023-06-23T23:31:10.590158Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/enoughmuskspam",
"local": false,
"icon": "https://lemmy.world/pictrs/image/7eb644df-b2cc-444e-814d-f07445a21588.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 429226,
"post_id": 2815436,
"comments": 90,
"score": 798,
"upvotes": 823,
"downvotes": 25,
"published": "2023-11-10T11:53:53.830579Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 90
},
{
"post": {
"id": 2806952,
"name": "Nonbinary Teacher in Florida Fired for Using Mx. Title",
"url": "https://www.advocate.com/news/nonbinary-florida-teacher-fired",
"body": "The virtual school says its hands are tied due to Florida's \"don't say gay\" law. However, the teacher has lodged a complaint against it.",
"creator_id": 1230153,
"community_id": 3201,
"removed": false,
"locked": false,
"published": "2023-11-10T00:39:18.146951Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://lemmy.world/pictrs/image/5bdf5b0e-d217-4e9a-b315-111d31b9c292.jpeg",
"ap_id": "https://lemmy.world/post/8041008",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 1230153,
"name": "Salamendacious",
"avatar": "https://lemmy.world/pictrs/image/67529338-05d9-4184-9397-7f0f4eb5f0b7.jpeg",
"banned": false,
"published": "2023-08-02T23:38:22.706961Z",
"actor_id": "https://lemmy.world/u/Salamendacious",
"local": false,
"banner": "https://lemmy.world/pictrs/image/81c5d027-b602-4a1b-bb6f-419dd7e870ee.jpeg",
"deleted": false,
"bot_account": false,
"instance_id": 17
},
"community": {
"id": 3201,
"name": "news",
"title": "News",
"description": "Welcome to the News community! \n\nRules: \n\n::: spoiler 1. Be civil\n___\nAttack the argument, not the person. No racism/sexism/bigotry. Good faith argumentation only. Trolling is uncivil and is grounds for removal and/or a community ban.\n___\n:::\n\n::: spoiler 2. All posts should contain a source (url) that is as reliable and unbiased as possible and must only contain one link. \n___\nObvious right or left wing sources will be removed at the mods discretion. We have an actively updated blocklist, which you can see here: https://lemmy.world/post/2246130 if you feel like any website is missing, contact the mods. Supporting links can be added in comments or posted seperately but not to the post body.\n___\n:::\n\n::: spoiler 3. No bots, spam or self-promotion.\n___\nOnly approved bots, which follow the guidelines for bots set by the instance, are allowed.\n___\n:::\n\n::: spoiler 4. Post titles should be the same as the article used as source.\n___\nPosts which titles don’t match the source won’t be removed, but the autoMod will notify you, and if your title misrepresents the original article, the post will be deleted. If the site changed their headline, the bot might still contact you, just ignore it, we won’t delete your post.\n___\n:::\n\n\n\n::: spoiler 5. Only recent news is allowed.\n___\nPosts must be news from the most recent 30 days.\n___\n:::\n\n::: spoiler 6. All articles must be news articles.\n___\nNo opinion pieces, Listicles, editorials or celebrity gossip is allowed. All posts will be judged on a case-by-case basis.\n___\n:::\n\n\n::: spoiler 7. No duplicate posts.\n___\nIf a source you used was already posted by someone else, the autoMod will leave a message. Please remove your post if the autoMod is correct. If the post that matches your post is very old, we refer you to rule 5.\n___\n:::\n\n\n::: spoiler 8. Misinformation is prohibited.\n___\nMisinformation / propaganda is strictly prohibited. Any comment or post containing or linking to misinformation will be removed. If you feel that your post has been removed in error, credible sources must be provided.\n___\n:::\n\n::: spoiler 9. No link shorteners.\n___\nThe auto mod will contact you if a link shortener is detected, please delete your post if they are right.\n___\n:::\n\n\n\n::: spoiler 10. Don't copy entire article in your post body\n___\nFor copyright reasons, you are not allowed to copy an entire article into your post body. This is an instance wide rule, that is strictly enforced in this community.\n:::\n",
"removed": false,
"published": "2023-06-09T20:29:47.599964Z",
"updated": "2023-11-10T22:27:17.757332Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/news",
"local": false,
"icon": "https://lemmy.world/pictrs/image/8f2046ae-5d2e-495f-b467-f7b14ccb4152.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 428521,
"post_id": 2806952,
"comments": 126,
"score": 490,
"upvotes": 517,
"downvotes": 27,
"published": "2023-11-10T00:39:18.146951Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 126
},
{
"post": {
"id": 2813082,
"name": "UFC star made more in 24 hours on OnlyFans than she did 'in her entire fighting career'",
"url": "https://www.foxnews.com/media/ufc-star-made-more-24-hours-onlyfans-she-did-entire-fighting-career",
"body": "UFC star Paige VanZant said OnlyFans allows her to make 'life-changing money'",
"creator_id": 1230153,
"community_id": 3201,
"removed": false,
"locked": false,
"published": "2023-11-10T08:53:08.215083Z",
"deleted": false,
"nsfw": false,
"embed_title": "UFC star made more in 24 hours on OnlyFans than she did 'in her entire fighting career'",
"embed_description": "UFC star Paige VanZant launched her OnlyFans account in 2020 and now charges fans $9.99 per month to view her photos, saying she's made \"life-changing money.\"",
"thumbnail_url": "https://discuss.online/pictrs/image/d10a8e83-f462-46bc-a1c8-a11a9e4348f8.webp",
"ap_id": "https://lemmy.world/post/8053284",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 1230153,
"name": "Salamendacious",
"avatar": "https://lemmy.world/pictrs/image/67529338-05d9-4184-9397-7f0f4eb5f0b7.jpeg",
"banned": false,
"published": "2023-08-02T23:38:22.706961Z",
"actor_id": "https://lemmy.world/u/Salamendacious",
"local": false,
"banner": "https://lemmy.world/pictrs/image/81c5d027-b602-4a1b-bb6f-419dd7e870ee.jpeg",
"deleted": false,
"bot_account": false,
"instance_id": 17
},
"community": {
"id": 3201,
"name": "news",
"title": "News",
"description": "Welcome to the News community! \n\nRules: \n\n::: spoiler 1. Be civil\n___\nAttack the argument, not the person. No racism/sexism/bigotry. Good faith argumentation only. Trolling is uncivil and is grounds for removal and/or a community ban.\n___\n:::\n\n::: spoiler 2. All posts should contain a source (url) that is as reliable and unbiased as possible and must only contain one link. \n___\nObvious right or left wing sources will be removed at the mods discretion. We have an actively updated blocklist, which you can see here: https://lemmy.world/post/2246130 if you feel like any website is missing, contact the mods. Supporting links can be added in comments or posted seperately but not to the post body.\n___\n:::\n\n::: spoiler 3. No bots, spam or self-promotion.\n___\nOnly approved bots, which follow the guidelines for bots set by the instance, are allowed.\n___\n:::\n\n::: spoiler 4. Post titles should be the same as the article used as source.\n___\nPosts which titles don’t match the source won’t be removed, but the autoMod will notify you, and if your title misrepresents the original article, the post will be deleted. If the site changed their headline, the bot might still contact you, just ignore it, we won’t delete your post.\n___\n:::\n\n\n\n::: spoiler 5. Only recent news is allowed.\n___\nPosts must be news from the most recent 30 days.\n___\n:::\n\n::: spoiler 6. All articles must be news articles.\n___\nNo opinion pieces, Listicles, editorials or celebrity gossip is allowed. All posts will be judged on a case-by-case basis.\n___\n:::\n\n\n::: spoiler 7. No duplicate posts.\n___\nIf a source you used was already posted by someone else, the autoMod will leave a message. Please remove your post if the autoMod is correct. If the post that matches your post is very old, we refer you to rule 5.\n___\n:::\n\n\n::: spoiler 8. Misinformation is prohibited.\n___\nMisinformation / propaganda is strictly prohibited. Any comment or post containing or linking to misinformation will be removed. If you feel that your post has been removed in error, credible sources must be provided.\n___\n:::\n\n::: spoiler 9. No link shorteners.\n___\nThe auto mod will contact you if a link shortener is detected, please delete your post if they are right.\n___\n:::\n\n\n\n::: spoiler 10. Don't copy entire article in your post body\n___\nFor copyright reasons, you are not allowed to copy an entire article into your post body. This is an instance wide rule, that is strictly enforced in this community.\n:::\n",
"removed": false,
"published": "2023-06-09T20:29:47.599964Z",
"updated": "2023-11-10T22:27:17.757332Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/news",
"local": false,
"icon": "https://lemmy.world/pictrs/image/8f2046ae-5d2e-495f-b467-f7b14ccb4152.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 429035,
"post_id": 2813082,
"comments": 156,
"score": 560,
"upvotes": 613,
"downvotes": 53,
"published": "2023-11-10T08:53:08.215083Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 156
},
{
"post": {
"id": 2810218,
"name": "All Those 23andMe Spit Tests Were Part of a Bigger Plan",
"url": "https://www.bloomberg.com/news/features/2021-11-04/23andme-to-use-dna-tests-to-make-cancer-drugs",
"creator_id": 853930,
"community_id": 2289,
"removed": false,
"locked": false,
"published": "2023-11-10T05:08:54.295293Z",
"deleted": false,
"nsfw": false,
"embed_title": "All Those 23andMe Spit Tests Were Part of a Bigger Plan",
"embed_description": "CEO Anne Wojcicki wants to make drugs using insights from millions of customer DNA samples, and doesn’t think that should bother anyone.",
"thumbnail_url": "https://lemmy.world/pictrs/image/b26b22fb-dc69-46b7-b369-dce575e515c3.jpeg",
"ap_id": "https://lemmy.world/post/8047397",
"local": false,
"language_id": 37,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 853930,
"name": "ooli",
"banned": false,
"published": "2023-07-19T23:48:59.837421Z",
"actor_id": "https://lemmy.world/u/ooli",
"local": false,
"deleted": false,
"bot_account": false,
"instance_id": 17
},
"community": {
"id": 2289,
"name": "technology",
"title": "Technology",
"description": "This is a [most excellent](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExN3N0NmhuODNib3d3Nzg0OHU2bTFqMXAzNW42Y2JsOTVmenNsNG8ycSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/l46CDHTqbmnGZyxKo/giphy.gif) place for technology news and articles.\n \n---\n \n## Our Rules\n \n---\n \n1. Follow the [lemmy.world rules.](https://mastodon.world/about) \n2. Only tech related content.\n3. Be [excellent to each another!](https://www.youtube.com/watch?v=rph_1DODXDU)\n4. Mod approved content bots can post up to 10 articles per day.\n5. Threads asking for personal tech support may be deleted.\n6. Politics threads may be removed.\n7. No memes allowed as posts, OK to post as comments.\n8. Only approved bots from the list below, to ask if your bot can be added please contact us.\n9. Check for duplicates before posting, duplicates may be removed\n \n---\n \n## Approved Bots\n \n---\n \n- [@[email protected]](https://lemmy.world/u/L4s) \n- [@[email protected]](https://lemmings.world/u/autotldr) \n- [@[email protected]](https://feddit.rocks/u/PipedLinkBot) ",
"removed": false,
"published": "2023-06-11T02:16:17.173483Z",
"updated": "2023-09-19T16:46:57.426439Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/technology",
"local": false,
"icon": "https://fry.gs/pictrs/image/c6832070-8625-4688-b9e5-5d519541e092.png",
"banner": "https://fry.gs/pictrs/image/1a1e9226-87cb-4499-94a7-d43b1e520e50.png",
"hidden": false,
"posting_restricted_to_mods": false,
"instance_id": 17
},
"creator_banned_from_community": false,
"creator_is_moderator": false,
"counts": {
"id": 428826,
"post_id": 2810218,
"comments": 94,
"score": 407,
"upvotes": 421,
"downvotes": 14,
"published": "2023-11-10T05:08:54.295293Z"
},
"subscribed": "NotSubscribed",
"saved": false,
"read": false,
"creator_blocked": false,
"unread_comments": 94
},
{
"post": {
"id": 2816149,
"name": "Oh no ...",
"url": "https://jlai.lu/pictrs/image/dde5b5ea-69c3-4faf-944c-e6e2f5e687c0.jpeg",
"creator_id": 2286176,
"community_id": 499,
"removed": false,
"locked": false,
"published": "2023-11-10T12:36:05.923144Z",
"deleted": false,
"nsfw": false,
"thumbnail_url": "https://lemmy.world/pictrs/image/4baa337e-f029-474b-a955-2c3fec4dafb2.jpeg",
"ap_id": "https://jlai.lu/post/2095524",
"local": false,
"language_id": 0,
"featured_community": false,
"featured_local": false
},
"creator": {
"id": 2286176,
"name": "ElCanut",
"banned": false,
"published": "2023-09-05T20:24:10.633620Z",
"actor_id": "https://jlai.lu/u/ElCanut",
"local": false,
"deleted": false,
"bot_account": false,
"instance_id": 1910
},
"community": {
"id": 499,
"name": "linuxmemes",
"title": "linuxmemes",
"description": "I use Arch btw\n\nSister communities:\n\n[LemmyMemes](https://lemmy.world/c/[email protected]): Memes\n\n[LemmyShitpost](https://lemmy.world/c/lemmyshitpost): Anything and everything goes.\n\n[RISA](https://startrek.website/c/risa): Star Trek memes and shitposts\n\n",
"removed": false,
"published": "2023-06-15T20:22:32.340233Z",
"updated": "2023-10-23T22:44:24.952200Z",
"deleted": false,
"nsfw": false,
"actor_id": "https://lemmy.world/c/linuxmemes",
"local": false,
"icon": "https://lemmy.world/pictrs/image/4271bdc6-5114-4749-a5a9-afbc82a99c78.png",
"banner": "https://lemmy.world/pictrs/image/4701d6d0-a080-461e-8a33-5927dd1809e6.png",
"hidden": false,
"posting_restricted_to_mods": false,