-
Notifications
You must be signed in to change notification settings - Fork 1
/
public_timeline_sample.json
1261 lines (1261 loc) · 72.9 KB
/
public_timeline_sample.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
{
"statuses": [
{
"id": "109491892650690895",
"uri": "https://vmst.io/users/TheMadIrishman/statuses/109491892021377277",
"created_at": "2022-12-10T23:08:04Z",
"account": {
"id": "109367544699336696",
"username": "TheMadIrishman",
"acct": "[email protected]",
"url": "https://vmst.io/@TheMadIrishman",
"display_name": "TheMadIrishman",
"note": "<p>Twitch streamer. I play good games with \"bad\" graphics. I occasionally talk about other non-game related nonsense.</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/367/544/699/336/696/original/88fb2ffca887709b.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/367/544/699/336/696/original/88fb2ffca887709b.jpg",
"header": "https://static-cdn.mastodon.social/headers/original/missing.png",
"header_static": "https://static-cdn.mastodon.social/headers/original/missing.png",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-18T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 54,
"followers_count": 18,
"following_count": 18,
"fields": [
{
"name": "Pronouns:",
"value": "He/Him"
},
{
"name": "Twitch:",
"value": "<a href=\"https://www.twitch.tv/themadirishman123\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://www.</span><span class=\"\">twitch.tv/themadirishman123</span><span class=\"invisible\"></span></a>"
}
],
"bot": false
},
"content": "<p>Spending my Saturday evening editing YouTube videos. I’m not great at it, but every video I make is my own, and it makes me happy! <a href=\"https://vmst.io/tags/youtube\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>youtube</span></a> <a href=\"https://vmst.io/tags/editing\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>editing</span></a> <a href=\"https://vmst.io/tags/dwarffortress\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>dwarffortress</span></a> <a href=\"https://vmst.io/tags/saturdayselfie\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>saturdayselfie</span></a></p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
{
"id": "109491892087513647",
"type": "image",
"url": "https://files.mastodon.social/cache/media_attachments/files/109/491/892/087/513/647/original/56ca0d41c73df9a3.png",
"preview_url": "https://files.mastodon.social/cache/media_attachments/files/109/491/892/087/513/647/small/56ca0d41c73df9a3.png",
"remote_url": "https://cdn.vmst.io/media_attachments/files/109/491/882/429/007/203/original/1c6f26c90f1899e2.png",
"meta": {
"original": {
"width": 1152,
"height": 1536,
"size": "1152x1536",
"aspect": 0.75
},
"small": {
"width": 416,
"height": 554,
"size": "416x554",
"aspect": 0.7509025270758123
}
},
"description": "Dum dum giving a thumbs up in front of his computer monitor.",
"blurhash": "UGFr9NK79Z#j_Mn+s9s,=U,,tSAJvxRiozxu"
}
],
"mentions": [
],
"tags": [
{
"name": "youtube",
"url": "https://mastodon.social/tags/youtube"
},
{
"name": "editing",
"url": "https://mastodon.social/tags/editing"
},
{
"name": "dwarffortress",
"url": "https://mastodon.social/tags/dwarffortress"
},
{
"name": "saturdayselfie",
"url": "https://mastodon.social/tags/saturdayselfie"
}
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://vmst.io/@TheMadIrishman/109491892021377277",
"language": "en"
},
{
"id": "109491892628532347",
"uri": "https://bookwyrm.social/user/DerekCaelin/quotation/574320",
"created_at": "2022-12-10T00:36:17.664Z",
"account": {
"id": "107107489402903210",
"username": "DerekCaelin",
"acct": "[email protected]",
"url": "https://bookwyrm.social/user/DerekCaelin",
"display_name": "Derek Caelin",
"note": "Seeking a Solarpunk Future\n\nClimate Feminist | Biodiversity | Open Source Software | Civic Tech | Games | Justice | Regenerative Ag | Green Energy | He/Him/His.",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/107/107/489/402/903/210/original/3afc0b48abbc407c.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/107/107/489/402/903/210/original/3afc0b48abbc407c.jpg",
"header": "https://static-cdn.mastodon.social/headers/original/missing.png",
"header_static": "https://static-cdn.mastodon.social/headers/original/missing.png",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2021-10-15T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 466,
"followers_count": 9,
"following_count": 0,
"fields": [
],
"bot": false
},
"content": "<p>\"While organised politics or the “moral adventure” of an individual makes for engaging narratives, decentralised action and cooperation do not always lend themselves to familiar modes of storytelling. Also the violence that we inflict on the living and non-living by treating them as cogs in the wheels of progress, be it through capitalist production or a centrally commanded system, happens over extended time periods and the processes through which the more-than-human world responds, revealing our connections with it, can be even slower.\nStories which try to highlight these connections or engage with the slowness of the response on a planetary scale have to employ special narrative strategies to hold the reader’s attention. One way to approach the issue of slowness and lengthy time periods is by plotting through narrative leaps across tipping points or catastrophes like the coronavirus pandemic. These are the points of rupture, where an equilibrium is lost and the natural world starts to transform quickly and its impact speeds up the story.\"</p> <p>-- <a href=\"https://bookwyrm.social/book/282378\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">\"Multispecies Cities\"</a></p><p>It's interesting to try and find a counterpoint to this theory that decentralized action and cooperation are unfamiliar forms of storytelling. The examples that first come to mind are superhero movies, but most of the collaboration there is in doing violence (occasionally the scientists will invent something to move the plot forward). Gradual collaboration over time for change... Maybe Kim Stanley Robinson's \"Mars\" trilogy?</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
{
"id": "109491892480279554",
"type": "image",
"url": "https://files.mastodon.social/cache/media_attachments/files/109/491/892/480/279/554/original/a41ba5ba31169859.jpg",
"preview_url": "https://files.mastodon.social/cache/media_attachments/files/109/491/892/480/279/554/small/a41ba5ba31169859.jpg",
"remote_url": "https://bookwyrm-social.sfo3.digitaloceanspaces.com/images/previews/covers/282378-82af71a4-e81f-48d5-992e-b1ab83dc1b6f.jpg",
"meta": {
"original": {
"width": 1200,
"height": 630,
"size": "1200x630",
"aspect": 1.9047619047619047
},
"small": {
"width": 662,
"height": 348,
"size": "662x348",
"aspect": 1.9022988505747127
}
},
"description": "Multispecies Cities (Paperback, 2021, World Weaver Press)",
"blurhash": "UMPZiW00RQxvx]xvt8ae?bxvR*jrRiM{Rjog"
}
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://bookwyrm.social/user/DerekCaelin/quotation/574320"
},
{
"id": "109491892543352426",
"uri": "https://terra.incognita.net/users/blackqueeriroh/statuses/109491892282762860",
"created_at": "2022-12-10T23:08:08Z",
"account": {
"id": "108194295363176303",
"username": "blackqueeriroh",
"acct": "[email protected]",
"url": "https://terra.incognita.net/@blackqueeriroh",
"display_name": "Bryan (they/them)",
"note": "<p>fat, black, trans, disabled, loud, kind | 1/5 @unsolicitedftb | CEO @deltalambdaphi | Board @heyokayso |🖖🏾🏳️⚧️🎥📚🎙️🎹</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/108/194/295/363/176/303/original/8648fb0c587fdcf3.png",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/108/194/295/363/176/303/original/8648fb0c587fdcf3.png",
"header": "https://static-cdn.mastodon.social/headers/original/missing.png",
"header_static": "https://static-cdn.mastodon.social/headers/original/missing.png",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-04-25T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 908,
"followers_count": 467,
"following_count": 610,
"fields": [
{
"name": "Podcast!",
"value": "https://link.tree/unsolicitedftb"
},
{
"name": "Twitter",
"value": "<a href=\"https://twitter.com/blackqueeriroh\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">twitter.com/blackqueeriroh</span><span class=\"invisible\"></span></a>"
},
{
"name": "Instagram",
"value": "<a href=\"https://www.instagram.com/blackqueeriroh\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://www.</span><span class=\"\">instagram.com/blackqueeriroh</span><span class=\"invisible\"></span></a>"
}
],
"bot": false
},
"content": "<p>Hi friends - is there anyone who lives in Mexico City that might be able to help out with packing and getting someone to the airport tomorrow ? PLEASE DM me only.</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://terra.incognita.net/@blackqueeriroh/109491892282762860",
"language": "en"
},
{
"id": "109491892538621377",
"uri": "https://mas.to/users/koraydiyebirisi/statuses/109491892520465408",
"created_at": "2022-12-10T23:08:12Z",
"account": {
"id": "109308613993950763",
"username": "koraydiyebirisi",
"acct": "[email protected]",
"url": "https://mas.to/@koraydiyebirisi",
"display_name": "koraydiyebirisi",
"note": "<p>“Kurbağalara bakmaktan geliyorum”</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/308/613/993/950/763/original/1e1fd97a4e6af613.jpeg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/308/613/993/950/763/original/1e1fd97a4e6af613.jpeg",
"header": "https://files.mastodon.social/cache/accounts/headers/109/308/613/993/950/763/original/6e82eaa1c180de46.jpg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/308/613/993/950/763/original/6e82eaa1c180de46.jpg",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-08T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 57,
"followers_count": 8,
"following_count": 15,
"fields": [
{
"name": "E-POSTA",
"value": "[email protected]"
},
{
"name": "WEB",
"value": "<a href=\"https://koraydiyebirisi.net\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">koraydiyebirisi.net</span><span class=\"invisible\"></span></a>"
}
],
"bot": false
},
"content": "<p>TSK’nın başka ülkelere asker göndermesine de ülkemizde yabancı asker bulundurulmasına da karşı duruyoruz.<br><a href=\"https://mas.to/tags/NoFlyZone4RojavaNow\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>NoFlyZone4RojavaNow</span></a></p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
{
"name": "noflyzone4rojavanow",
"url": "https://mastodon.social/tags/noflyzone4rojavanow"
}
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://mas.to/@koraydiyebirisi/109491892520465408",
"language": "tr"
},
{
"id": "109491892470165300",
"uri": "https://mastodon.cloud/users/JohnShirley2023/statuses/109491892417284790",
"created_at": "2022-12-10T23:08:10Z",
"account": {
"id": "109301038977660706",
"username": "JohnShirley2023",
"acct": "[email protected]",
"url": "https://mastodon.cloud/@JohnShirley2023",
"display_name": "John Shirley",
"note": "<p>Writer, chiefly of novels in several genres, and story collections; also nonfiction; movie and animation scripts, song lyrics. Speaker (TEDx and elsewhere). Futurist. Blogger. Interests in science, spirituality, the arts. Writer of science-fiction, horror, techno-thrillers, thrillers, westerns. One of the original cyberpunk novelists. Vocalist, records albums, eg \"Escape from Gravity\" with Jerry King. Has worked in TV and movies: Co-wrote The Crow. New novel: STORMLAND. <a href=\"https://john-shirley.com\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">john-shirley.com</span><span class=\"invisible\"></span></a></p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/301/038/977/660/706/original/724f48459f0d6cb2.png",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/301/038/977/660/706/original/724f48459f0d6cb2.png",
"header": "https://files.mastodon.social/cache/accounts/headers/109/301/038/977/660/706/original/d411056f00c86d34.jpg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/301/038/977/660/706/original/d411056f00c86d34.jpg",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-06T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 1625,
"followers_count": 605,
"following_count": 573,
"fields": [
{
"name": "https://john-shirley.com/",
"value": ""
}
],
"bot": false
},
"content": "<p><a href=\"https://consumer.healthday.com/senior-citizen-information-31/misc-aging-news-10/the-plight-of-america-s-elder-orphans-699561.html\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">consumer.healthday.com/senior-</span><span class=\"invisible\">citizen-information-31/misc-aging-news-10/the-plight-of-america-s-elder-orphans-699561.html</span></a></p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://mastodon.cloud/@JohnShirley2023/109491892417284790",
"in_reply_to_id": "109491834710581016",
"in_reply_to_account_id": "109301038977660706",
"language": "en"
},
{
"id": "109491892419305622",
"uri": "https://mastodon.world/users/sarahady/statuses/109491892126966166",
"created_at": "2022-12-10T23:08:06Z",
"account": {
"id": "109377744174257668",
"username": "sarahady",
"acct": "[email protected]",
"url": "https://mastodon.world/@sarahady",
"display_name": "𝐒𝐚𝐫𝐚",
"note": "<p>قلبي مليء بما ليس يعنيك</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/377/744/174/257/668/original/f2438d6d39921c8e.png",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/377/744/174/257/668/original/f2438d6d39921c8e.png",
"header": "https://files.mastodon.social/cache/accounts/headers/109/377/744/174/257/668/original/5641ff026dce26f6.jpeg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/377/744/174/257/668/original/5641ff026dce26f6.jpeg",
"locked": false,
"emojis": [
],
"discoverable": false,
"created_at": "2022-11-18T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 453,
"followers_count": 88,
"following_count": 61,
"fields": [
],
"bot": false
},
"content": "<p>قد تسيل من عين الحزن<br>إذا حدقت فيها جيدا<br>دمعة من فرح.</p><p>مروان البطوش*</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://mastodon.world/@sarahady/109491892126966166",
"language": "en"
},
{
"id": "109491892397326554",
"uri": "https://botsin.space/users/this_cat_does_not_exist/statuses/109491892262261881",
"created_at": "2022-12-10T23:08:08Z",
"account": {
"id": "109387973302959549",
"username": "this_cat_does_not_exist",
"acct": "[email protected]",
"url": "https://botsin.space/@this_cat_does_not_exist",
"display_name": "This Cat Does Not Exist",
"note": "<p>I toot pictures of cats that don't exist from <a href=\"https://thiscatdoesnotexist.com\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">thiscatdoesnotexist.com</span><span class=\"invisible\"></span></a> every 30 minutes.</p><p>Most of the time the cats are pretty catty and adorable, but sometimes they might be kinda weird (big trypophobia warning for the really off ones).</p><p>This account is not affiliated with <a href=\"https://thiscatdoesnotexist.com\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">thiscatdoesnotexist.com</span><span class=\"invisible\"></span></a> or its creator, and as such it does not represent or reflect the views of either.</p><p>Trans Rights. 🏳️⚧️</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/387/973/302/959/549/original/ca30f9781106dad3.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/387/973/302/959/549/original/ca30f9781106dad3.jpg",
"header": "https://files.mastodon.social/cache/accounts/headers/109/387/973/302/959/549/original/b43c7460291fcd72.png",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/387/973/302/959/549/original/b43c7460291fcd72.png",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-22T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 861,
"followers_count": 68,
"following_count": 2,
"fields": [
{
"name": "Bot Creator",
"value": "<a href=\"https://mastodon.lol/@Deakula\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">mastodon.lol/@Deakula</span><span class=\"invisible\"></span></a>",
"verified_at": "2022-12-10T05:21:47.076Z"
},
{
"name": "Language",
"value": "Python"
},
{
"name": "Status",
"value": "Operational - Currently hosted on a Raspberry Pi 4 Model B"
}
],
"bot": true
},
"content": "<p><a href=\"https://botsin.space/tags/Cat\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>Cat</span></a> <a href=\"https://botsin.space/tags/CatsOfMastodon\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>CatsOfMastodon</span></a> <a href=\"https://botsin.space/tags/Cats\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>Cats</span></a></p><p>Disclaimer: The AltText for this post generically describes the origin and type of content of the included image, but due to the limitations and automation of these images, it unfortunately cannot accurately describe each individual image.</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
{
"id": "109491892294123391",
"type": "image",
"url": "https://files.mastodon.social/cache/media_attachments/files/109/491/892/294/123/391/original/c6085eefb1977ac9.jpeg",
"preview_url": "https://files.mastodon.social/cache/media_attachments/files/109/491/892/294/123/391/small/c6085eefb1977ac9.jpeg",
"remote_url": "https://files.botsin.space/media_attachments/files/109/491/892/242/691/521/original/4c505f6dfc6c87c2.jpeg",
"meta": {
"original": {
"width": 512,
"height": 512,
"size": "512x512",
"aspect": 1.0
},
"small": {
"width": 480,
"height": 480,
"size": "480x480",
"aspect": 1.0
}
},
"description": "This image of a cat was pulled from https://thiscatdoesnotexist.com which provides a different AI-generated image of a cat that does not exist every time the website is visited.\n\nThese fun furry feline images generated by AI are most always of a cat's face (and sometimes neck) looking directly at the \"camera\", and often have very realistic facial features. All of the facial features can vary including eye colour/shape, ear shape, mouth shape, general colourings and markings, and overall age of the face ranging from kitten to adult. Sometimes, however, the AI that generates these cats can get things a bit wrong causing facial features to be skewed, disproportionate, or even missing in some cases.\n\nSometimes the cat is just a floating head, and sometimes the AI attempts to generate more of the cat in the midground of the image such as the back and butt; sometimes with great success causing it to appear as though the cat is sitting with a turned head, and sometimes... just as an indistinguishable furry blob.\n\nThe background of these images is usually a blurry approximation of some landscape in which only general shapes and colours can be distiguished.",
"blurhash": "UDE:9m0L55%10e?Hots.Iofk-qIpX4R%s;t7"
}
],
"mentions": [
],
"tags": [
{
"name": "cat",
"url": "https://mastodon.social/tags/cat"
},
{
"name": "catsofmastodon",
"url": "https://mastodon.social/tags/catsofmastodon"
},
{
"name": "cats",
"url": "https://mastodon.social/tags/cats"
}
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://botsin.space/@this_cat_does_not_exist/109491892262261881",
"language": "en"
},
{
"id": "109491892314600595",
"uri": "https://fedibird.com/users/another/statuses/109491892241261270",
"created_at": "2022-12-10T23:08:07Z",
"account": {
"id": "1223913",
"username": "another",
"acct": "[email protected]",
"url": "https://fedibird.com/@another",
"display_name": "A. N. Other",
"note": "<p>昼の発言に夜になってから反応することがあります。ご了承ください。</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/001/223/913/original/eb163c4132b09f38.png",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/001/223/913/original/eb163c4132b09f38.png",
"header": "https://files.mastodon.social/cache/accounts/headers/001/223/913/original/cff2ba09fcda5a4e.png",
"header_static": "https://files.mastodon.social/cache/accounts/headers/001/223/913/original/cff2ba09fcda5a4e.png",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2020-06-07T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 356,
"followers_count": 48,
"following_count": 78,
"fields": [
{
"name": "🐤",
"value": "<a href=\"https://twitter.com/another\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">twitter.com/another</span><span class=\"invisible\"></span></a>"
},
{
"name": "仮別荘",
"value": "<a class=\"\" href=\"https://mastodon-japan.net/@another\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">mastodon-japan.net/@another</span><span class=\"invisible\"></span></a>",
"verified_at": "2022-11-29T09:53:28.760Z"
}
],
"bot": false
},
"content": "<p><a href=\"https://maborotopia.github.io/about_02/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">maborotopia.github.io/about_02</span><span class=\"invisible\">/</span></a> 残念ながら、もうFedibirdを去ってしまっていた。他のアカウントも活動停止中。</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://fedibird.com/@another/109491892241261270",
"language": "ja"
},
{
"id": "109491892307232861",
"uri": "https://mastodon.social/users/gdinwiddie/statuses/109491892307232861",
"created_at": "2022-12-10T23:08:08.771Z",
"account": {
"id": "109252708329707951",
"username": "gdinwiddie",
"acct": "gdinwiddie",
"url": "https://mastodon.social/@gdinwiddie",
"display_name": "George Dinwiddie",
"note": "<p>Software development coach and consultant ● I try to learn from everywhere. ● I follow those who enter into interesting conversations with me. ● He/him/they</p><p>Interests: <a href=\"https://mastodon.social/tags/softwareDevelopment\" class=\"mention hashtag\" rel=\"tag\">#<span>softwareDevelopment</span></a> <a href=\"https://mastodon.social/tags/VirginiaSatir\" class=\"mention hashtag\" rel=\"tag\">#<span>VirginiaSatir</span></a> <a href=\"https://mastodon.social/tags/SatirModel\" class=\"mention hashtag\" rel=\"tag\">#<span>SatirModel</span></a> <a href=\"https://mastodon.social/tags/systemsThinking\" class=\"mention hashtag\" rel=\"tag\">#<span>systemsThinking</span></a> <a href=\"https://mastodon.social/tags/humanity\" class=\"mention hashtag\" rel=\"tag\">#<span>humanity</span></a></p>",
"avatar": "https://files.mastodon.social/accounts/avatars/109/252/708/329/707/951/original/852b5f7e63555f35.png",
"avatar_static": "https://files.mastodon.social/accounts/avatars/109/252/708/329/707/951/original/852b5f7e63555f35.png",
"header": "https://files.mastodon.social/accounts/headers/109/252/708/329/707/951/original/878b5aad33ba5eb4.png",
"header_static": "https://files.mastodon.social/accounts/headers/109/252/708/329/707/951/original/878b5aad33ba5eb4.png",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-10-29T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 1641,
"followers_count": 584,
"following_count": 616,
"fields": [
{
"name": "website",
"value": "<a href=\"https://idiacomputing.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer me\"><span class=\"invisible\">https://</span><span class=\"\">idiacomputing.com/</span><span class=\"invisible\"></span></a>"
},
{
"name": "my blog",
"value": "<a href=\"https://blog.gdinwiddie.com\" target=\"_blank\" rel=\"nofollow noopener noreferrer me\"><span class=\"invisible\">https://</span><span class=\"\">blog.gdinwiddie.com</span><span class=\"invisible\"></span></a>"
}
],
"bot": false
},
"content": "<p>I keep wanting to boost the toots of <span class=\"h-card\"><a href=\"https://instinctd.com/users/beschlossdc\" class=\"u-url mention\">@<span>beschlossdc</span></a></span> but they're all posted "Followers Only"</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"application": {
"name": "Web"
},
"mentions": [
{
"id": "109362335873338818",
"username": "beschlossdc",
"acct": "[email protected]",
"url": "https://instinctd.com/users/beschlossdc"
}
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://mastodon.social/@gdinwiddie/109491892307232861",
"language": "en"
},
{
"id": "109491892221464350",
"uri": "https://mastodon.au/users/bethanycarter/statuses/109491892041081348",
"created_at": "2022-12-10T23:08:04Z",
"account": {
"id": "109363583725482189",
"username": "bethanycarter",
"acct": "[email protected]",
"url": "https://mastodon.au/@bethanycarter",
"display_name": "Bethany Carter",
"note": "<p>Pen Name<br>Writer, daydreamer, notebook hoarder. Working on my first novel<br>I love dogs, coffee and books. Not necessarily in that order<br>Aussie. Gabi Gabi country. She/her</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/363/583/725/482/189/original/0bcd7b9ff2b1f0af.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/363/583/725/482/189/original/0bcd7b9ff2b1f0af.jpg",
"header": "https://files.mastodon.social/cache/accounts/headers/109/363/583/725/482/189/original/28028d92301a4dac.jpg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/363/583/725/482/189/original/28028d92301a4dac.jpg",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-18T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 230,
"followers_count": 307,
"following_count": 412,
"fields": [
],
"bot": false
},
"content": "<p>Hey <a href=\"https://mastodon.au/tags/writers\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>writers</span></a>!</p><p>What’s your favourite time of day to write?</p><p>My favourite time is early in the morning. Even if I only get a little done, I feel good for the rest of the day. </p><p><a href=\"https://mastodon.au/tags/WritingCommunity\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>WritingCommunity</span></a> <a href=\"https://mastodon.au/tags/AmWriting\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>AmWriting</span></a> <a href=\"https://mastodon.au/tags/AmEditing\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>AmEditing</span></a> <a href=\"https://mastodon.au/tags/WritersofMastodon\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>WritersofMastodon</span></a> <a href=\"https://mastodon.au/tags/Writing\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>Writing</span></a></p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
{
"name": "writers",
"url": "https://mastodon.social/tags/writers"
},
{
"name": "writingcommunity",
"url": "https://mastodon.social/tags/writingcommunity"
},
{
"name": "amWriting",
"url": "https://mastodon.social/tags/amWriting"
},
{
"name": "amediting",
"url": "https://mastodon.social/tags/amediting"
},
{
"name": "writersofmastodon",
"url": "https://mastodon.social/tags/writersofmastodon"
},
{
"name": "writing",
"url": "https://mastodon.social/tags/writing"
}
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://mastodon.au/@bethanycarter/109491892041081348",
"language": "en"
},
{
"id": "109491892181242309",
"uri": "https://booktoot.club/users/nagletx/statuses/109491891885827391",
"created_at": "2022-12-10T23:08:02Z",
"account": {
"id": "109316636916035953",
"username": "nagletx",
"acct": "[email protected]",
"url": "https://booktoot.club/@nagletx",
"display_name": "Robert Nagle",
"note": "<p>Litblogger (for 21+ years!), Podcast Wannabe, Houston writer & ebook enthusiast. Diehard fanatic of Eurovision and East European culture. Founder of Personville Press.</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/316/636/916/035/953/original/09d4389d7de73821.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/316/636/916/035/953/original/09d4389d7de73821.jpg",
"header": "https://files.mastodon.social/cache/accounts/headers/109/316/636/916/035/953/original/416da52dcaf244bd.jpg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/316/636/916/035/953/original/416da52dcaf244bd.jpg",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-09T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 32,
"followers_count": 14,
"following_count": 38,
"fields": [
{
"name": "Personville Press",
"value": "<a href=\"https://www.personvillepress.com/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://www.</span><span class=\"\">personvillepress.com/</span><span class=\"invisible\"></span></a>"
},
{
"name": "Blog",
"value": "<a href=\"http://www.imaginaryplanet.net/weblogs/idiotprogrammer/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">http://www.</span><span class=\"ellipsis\">imaginaryplanet.net/weblogs/id</span><span class=\"invisible\">iotprogrammer/</span></a>"
},
{
"name": "Ebook Store",
"value": "<a href=\"https://payhip.com/PersonvillePress\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">payhip.com/PersonvillePress</span><span class=\"invisible\"></span></a>"
},
{
"name": "Podcast",
"value": "<a href=\"https://musicooo.podbean.com/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">musicooo.podbean.com/</span><span class=\"invisible\"></span></a>"
}
],
"bot": false
},
"content": "<p>QUOTE: \" Today, the number of political prisoners in Russia is more than the total number in all of the Soviet Union at the beginning of the period of perestroika in the 1980s. \" (Jan Rachinsky of MEMORIAL group from Russia, which shared the Nobel Peace prize with similar groups from Ukraine and Belarus) <a href=\"https://www.nobelprize.org/prizes/peace/2022/memorial/lecture/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://www.</span><span class=\"ellipsis\">nobelprize.org/prizes/peace/20</span><span class=\"invisible\">22/memorial/lecture/</span></a></p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://booktoot.club/@nagletx/109491891885827391",
"language": "en"
},
{
"id": "109491892142491591",
"uri": "https://qoto.org/users/gpowerf/statuses/109491892086911542",
"created_at": "2022-12-10T23:08:05Z",
"account": {
"id": "109297806438507725",
"username": "gpowerf",
"acct": "[email protected]",
"url": "https://qoto.org/@gpowerf",
"display_name": "Dr. Gaming Power :verified:",
"note": "<p>This is my fun social media account, I will post a lot of video game stuff (mostly old or cloud gaming) and some work stuff. </p><p><a href=\"https://qoto.org/tags/gaming\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>gaming</span></a> <a href=\"https://qoto.org/tags/tech\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>tech</span></a> <a href=\"https://qoto.org/tags/latino\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>latino</span></a> <a href=\"https://qoto.org/tags/uk\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>uk</span></a></p><p>Mi aventura: <a href=\"http://gpowerf.itch.io/8-bit-island\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">http://</span><span class=\"\">gpowerf.itch.io/8-bit-island</span><span class=\"invisible\"></span></a></p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/297/806/438/507/725/original/1162df36232a3b55.png",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/297/806/438/507/725/original/1162df36232a3b55.png",
"header": "https://files.mastodon.social/cache/accounts/headers/109/297/806/438/507/725/original/d93abaa62fb33596.jpeg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/297/806/438/507/725/original/d93abaa62fb33596.jpeg",
"locked": false,
"emojis": [
{
"shortcode": "verified",
"url": "https://files.mastodon.social/cache/custom_emojis/images/000/041/736/original/04f1f28d0bbd2ddf.png",
"static_url": "https://files.mastodon.social/cache/custom_emojis/images/000/041/736/static/04f1f28d0bbd2ddf.png",
"visible_in_picker": true
}
],
"discoverable": false,
"created_at": "2022-11-06T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 2116,
"followers_count": 342,
"following_count": 277,
"fields": [
{
"name": "Location:",
"value": "United Kingdom"
},
{
"name": "github",
"value": "<a href=\"https://github.com/gpowerf\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">github.com/gpowerf</span><span class=\"invisible\"></span></a>"
},
{
"name": "Intro:",
"value": "<a href=\"https://qoto.org/@gpowerf/109308642457913344\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">qoto.org/@gpowerf/109308642457</span><span class=\"invisible\">913344</span></a>"
},
{
"name": "OS predilection",
"value": "Linux"
}
],
"bot": false
},
"content": "<p><a href=\"https://www.bbc.co.uk/news/technology-63912116\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://www.</span><span class=\"ellipsis\">bbc.co.uk/news/technology-6391</span><span class=\"invisible\">2116</span></a></p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://qoto.org/@gpowerf/109491892086911542"
},
{
"id": "109491892134187189",
"uri": "https://mstdn.social/users/nuopKINK/statuses/109491891913109661",
"created_at": "2022-12-10T23:08:02Z",
"account": {
"id": "109287546496414561",
"username": "nuopKINK",
"acct": "[email protected]",
"url": "https://mstdn.social/@nuopKINK",
"display_name": "nu op KINK",
"note": "<p>Bliep bloep, ik ben de nowplaying-robot van <br>@kinkpuntnl.</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/287/546/496/414/561/original/460aa09e706a57af.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/287/546/496/414/561/original/460aa09e706a57af.jpg",
"header": "https://static-cdn.mastodon.social/headers/original/missing.png",
"header_static": "https://static-cdn.mastodon.social/headers/original/missing.png",
"locked": false,
"emojis": [
],
"discoverable": false,
"created_at": "2022-11-04T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 11446,
"followers_count": 35,
"following_count": 1,
"fields": [
{
"name": "Twitter",
"value": "<a href=\"https://twitter.com/nuopKINK\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">twitter.com/nuopKINK</span><span class=\"invisible\"></span></a>"
},
{
"name": "Last.fm",
"value": "<a href=\"https://last.fm/user/kinkpuntnl\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">last.fm/user/kinkpuntnl</span><span class=\"invisible\"></span></a>"
},
{
"name": "Luister KINK",
"value": "<a href=\"http://kink.nl/player/stream.kink\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">http://</span><span class=\"\">kink.nl/player/stream.kink</span><span class=\"invisible\"></span></a>"
}
],
"bot": true
},
"content": "<p>Nu op KINK: R.E.M. - Imitation of Life</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://mstdn.social/@nuopKINK/109491891913109661",
"language": "en"
},
{
"id": "109491892134045186",
"uri": "https://social.illegalpornography.com/users/MisterQuotation/statuses/109491891869809186",
"created_at": "2022-12-10T23:08:02Z",
"account": {
"id": "1129638",
"username": "MisterQuotation",
"acct": "[email protected]",
"url": "https://social.illegalpornography.com/@MisterQuotation",
"display_name": "Mister Quotation",
"note": "<p>Is there a Mister Ogynist?</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/001/129/638/original/f89385b0c7aee0b0.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/001/129/638/original/f89385b0c7aee0b0.jpg",
"header": "https://files.mastodon.social/cache/accounts/headers/001/129/638/original/725a2d48d041e265.jpg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/001/129/638/original/725a2d48d041e265.jpg",
"locked": false,
"emojis": [
],
"discoverable": false,
"created_at": "2020-02-27T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 23567,
"followers_count": 20,
"following_count": 1,
"fields": [
{
"name": "guess what, it's",
"value": "<span class=\"h-card\"><a href=\"https://social.illegalpornography.com/@BestGirlGrace\" class=\"u-url mention\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">@<span>BestGirlGrace</span></a></span>"
}
],
"bot": true
},
"content": "<p>So... is there a Mister Statement?</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://social.illegalpornography.com/@MisterQuotation/109491891869809186",
"language": "en"
},
{
"id": "109491892124232317",
"uri": "https://botsin.space/users/brokennews/statuses/109491892073038729",
"created_at": "2022-12-10T23:08:05Z",
"account": {
"id": "109290185470295795",
"username": "brokennews",
"acct": "[email protected]",
"url": "https://botsin.space/@brokennews",
"display_name": "Broken News",
"note": "<p>Zwei Schlagzeilen zusammengemischt sind lustiger als eine!</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/290/185/470/295/795/original/a3bc0dc5fb985302.png",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/290/185/470/295/795/original/a3bc0dc5fb985302.png",
"header": "https://static-cdn.mastodon.social/headers/original/missing.png",
"header_static": "https://static-cdn.mastodon.social/headers/original/missing.png",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-04T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 677,
"followers_count": 89,
"following_count": 0,
"fields": [
{
"name": "Autor",
"value": "<a href=\"https://wien.rocks/@oberhamsi\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"\">wien.rocks/@oberhamsi</span><span class=\"invisible\"></span></a>"
},
{
"name": "Wie?",
"value": "<a href=\"https://nekapuzer.at/geheimnis-des-algorithmus/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">nekapuzer.at/geheimnis-des-alg</span><span class=\"invisible\">orithmus/</span></a>"
},
{
"name": "Foto Quelle",
"value": "<a href=\"https://commons.wikimedia.org/wiki/File:Journalist_With_Pipe.jpg\" rel=\"nofollow noopener noreferrer\" target=\"_blank\"><span class=\"invisible\">https://</span><span class=\"ellipsis\">commons.wikimedia.org/wiki/Fil</span><span class=\"invisible\">e:Journalist_With_Pipe.jpg</span></a>"
}
],
"bot": true
},
"content": "<p>Selenskyj suspendiert</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],
"mentions": [
],
"tags": [
],
"emojis": [
],
"reblogs_count": 0,
"favourites_count": 0,
"replies_count": 0,
"url": "https://botsin.space/@brokennews/109491892073038729",
"language": "de"
},
{
"id": "109491892089901227",
"uri": "https://tkz.one/users/renasaurux_/statuses/109491892045856956",
"created_at": "2022-12-10T23:08:04Z",
"account": {
"id": "109330887864922379",
"username": "renasaurux_",
"acct": "[email protected]",
"url": "https://tkz.one/@renasaurux_",
"display_name": "Renasaurux🌻",
"note": "<p>28 στσñσs. ☾SHOUJO は 私 の 恋 人 で す☽ <a href=\"https://tkz.one/tags/UkeSeme\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>UkeSeme</span></a> NOT, <a href=\"https://tkz.one/tags/NekoTachi\" class=\"mention hashtag\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">#<span>NekoTachi</span></a> YEP♡ MUA IN PROCESS. Higurashi como estilo de vida. Mami de Naminé y Taiga♡</p>",
"avatar": "https://files.mastodon.social/cache/accounts/avatars/109/330/887/864/922/379/original/22be17873b1a511a.jpg",
"avatar_static": "https://files.mastodon.social/cache/accounts/avatars/109/330/887/864/922/379/original/22be17873b1a511a.jpg",
"header": "https://files.mastodon.social/cache/accounts/headers/109/330/887/864/922/379/original/0da3fca4794618ef.jpeg",
"header_static": "https://files.mastodon.social/cache/accounts/headers/109/330/887/864/922/379/original/0da3fca4794618ef.jpeg",
"locked": false,
"emojis": [
],
"discoverable": true,
"created_at": "2022-11-12T00:00:00Z",
"last_status_at": "2022-12-10",
"statuses_count": 285,
"followers_count": 199,
"following_count": 26,
"fields": [
{
"name": "Ubicación",
"value": "白 川 郷「Shirakawa-gō」"
},
{
"name": "Sitio web",
"value": "Instagram: renasaurux_"
},
{
"name": "Cumpleaños",
"value": "1 de Noviembre"
}
],
"bot": false
},
"content": "<p>Aún me sigo sin creer el daño que me ha hecho esta persona y sólo piense en su bien y en lo que a ella le hace feliz, y no si yo voy a estar incómoda siendo amigas cuando hemos sido pareja y cuando siempre ha habido una atracción física y nunca nos hemos visto literalmente como sólo amigas de hecho cuando teníamos los 17/18 que ambas teníamos novio nuestras parejas no paraba de decir que querían que nos liasemos xD</p>",
"visibility": "public",
"sensitive": false,
"spoiler_text": "",
"media_attachments": [
],