forked from sstklen/trump-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeletion_report.json
More file actions
1022 lines (1022 loc) · 35.1 KB
/
Copy pathdeletion_report.json
File metadata and controls
1022 lines (1022 loc) · 35.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
<<<<<<< HEAD
"timestamp": "2026-03-24T22:30:15Z",
=======
"timestamp": "2026-03-24T14:58:40Z",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"sources_used": [
"cnn",
"own"
],
<<<<<<< HEAD
"total_unique_posts": 18885,
"in_all_sources": 7,
"partial_match": 18878,
=======
"total_unique_posts": 18872,
"in_all_sources": 7,
"partial_match": 18865,
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"new_deletions": 0,
"total_known_deletions": 0,
"partial_details": [
{
<<<<<<< HEAD
"content_preview": "Page 2: Without Immunity, the Presidency, as we know it, will no longer exist. Many actions for the benefit of our Count",
"created_at": "2024-03-04T14:21:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112039040055536508",
=======
"content_preview": "I really dislike Mitt Romney. Even the Mormons don't like him.",
"created_at": "2023-07-26T00:01:00.000Z",
"url": "https://truthsocial.com/@freakyfriday1907/110778390816643749",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "It was my great honor to destroy a very large DRUG-CARRYING SUBMARINE that was navigating towards the United States on a",
"created_at": "2025-10-18T18:41:12.948Z",
"url": "https://truthsocial.com/@realDonaldTrump/115396632441470075",
=======
"content_preview": "I have been fully briefed on the tragic shooting in Minneapolis, Minnesota. The FBI quickly responded and they are on th",
"created_at": "2025-08-27T14:47:56.028Z",
"url": "https://truthsocial.com/@realDonaldTrump/115101274999111772",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"cnn"
],
"missing_from": [
"own"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "https://nypost.com/2022/08/23/what-did-biden-really-know-about-the-drive-to-raid-mar-a-lago/",
"created_at": "2022-08-28T12:07:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/108901358451655717",
=======
"content_preview": "Even though I did nothing wrong, a Radical Left New York Judge, a true Trump Hater, Arthur Engoron (Are we allowed to sp",
"created_at": "2024-03-21T10:00:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112134037818224958",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "https://townhall.com/columnists/douglasmackinnon/2022/09/30/listen-to-trump-about-ukraine-before-its-too-late-n2613801",
"created_at": "2022-09-30T17:28:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109089475312302955",
=======
"content_preview": "All, please take 4 minutes to watch this video. It is unlike any commentary I have heard yet. Devin Nunes lays it all ou",
"created_at": "2023-12-26T13:44:00.000Z",
"url": "https://truthsocial.com/@MSG_Jack_Dona_RET/111648194584503271",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "“White House Destroyed Hard Drives That May Have Contained Missing Emails” https://www.motherjones.com/politics/2008/03/",
"created_at": "2022-10-13T16:07:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109162766983908042",
=======
"content_preview": "Donald J. Trump - he must be a machine!Always looks sharp - presentation pristine! 🙌🏼When he's giving us TRUTH, it won't",
"created_at": "2022-11-08T23:00:00.000Z",
"url": "https://truthsocial.com/@YalePhD/109311848841248424",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "https://www.newsmax.com/newsmax-tv/alan-dershowitz-donald-trump-supreme-court/2022/12/30/id/1102524/",
"created_at": "2023-01-04T14:31:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109632598561766157",
=======
"content_preview": "The Globalists, Radical Left Democrats, and RINOS are just getting RICH ON OUR DECLINE. NO MORE!!!",
"created_at": "2023-04-12T08:46:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110185911590034368",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "https://www.theepochtimes.com/trump-predicts-gop-control-of-house-good-chance-in-senate-after-2022-midterms_4835056.html",
"created_at": "2022-11-02T17:12:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109276271596996040",
=======
"content_preview": "https://www.rsbnetwork.com/news/trump-slams-bidens-complete-incompetency-calls-obama-bidens-boss/",
"created_at": "2023-12-26T14:16:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111648322196257524",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "https://truthsocial.com/users/shanesmith29/statuses/115044359777927724 That will NEVER happen!",
"created_at": "2025-08-17T14:08:30.214Z",
"url": "https://truthsocial.com/@realDonaldTrump/115044496848994251",
"present_in": [
"cnn"
],
"missing_from": [
"own"
=======
"content_preview": "“NY JUDGE WON’T LET TRUMP DELIVER CLOSING ARGUMENT”",
"created_at": "2024-01-10T20:28:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111734717976764700",
"present_in": [
"own"
],
"missing_from": [
"cnn"
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "President Donald Trump \"We are going to take back our Country in November.\"",
"created_at": "2022-06-17T14:55:00.000Z",
"url": "https://truthsocial.com/@RSBN/108494332323591953",
=======
"content_preview": "D.A. Bragg fought everyone about trying this “no crime” case, but Crooked Joe Biden’s “Thugs” pushed him to go forward, ",
"created_at": "2024-03-26T11:36:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112162726199012291",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "AMERICA IS BACK!!!",
"created_at": "2026-01-19T22:09:32.439Z",
"url": "https://truthsocial.com/@realDonaldTrump/115924046475418008",
"present_in": [
"cnn"
],
"missing_from": [
"own"
=======
"content_preview": "President Donald J. Trump: \"The arena owner said, this is a new record that will not be beat.\" for the full speech join ",
"created_at": "2022-07-09T21:37:00.000Z",
"url": "https://truthsocial.com/@RSBN/108620485567404988",
"present_in": [
"own"
],
"missing_from": [
"cnn"
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "Melania and I will be going to the funeral of Pope Francis, in Rome. We look forward to being there!",
"created_at": "2025-04-21T19:58:10.417Z",
"url": "https://truthsocial.com/@realDonaldTrump/114377719179993844",
"present_in": [
"cnn"
],
"missing_from": [
"own"
=======
"content_preview": "Great Fighter, Sean Strickland, on Saturday Night after a Victory against the Brazilian Champion, Paulo Costa! Sean may ",
"created_at": "2024-06-06T12:23:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112570599400970806",
"present_in": [
"own"
],
"missing_from": [
"cnn"
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "Mitch McConnell has the power to get everything Republicans want, yet he’s giving it all away to the Democrats. Why woul",
"created_at": "2022-12-16T11:52:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109524388410486940",
=======
"content_preview": "Congressman Tom Cole is always fighting for Oklahoma’s 4th Congressional District.Tom is working hard to Stop Inflation,",
"created_at": "2022-06-26T21:28:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/108546839616127653",
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
"content_preview": "https://www.newsweek.com/2016/09/23/george-w-bush-white-house-lost-22-million-emails-497373.html",
"created_at": "2022-09-26T18:40:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109067110887283452",
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
"content_preview": "DeSanctimonious had nothing to do with Israel, or the moving of the U.S. Embassy to Jerusalem. Never so much as mentione",
"created_at": "2023-04-30T19:24:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110290342200322363",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "You can’t learn much from tax returns, but it is illegal to release them if they are not yours!",
"created_at": "2022-12-18T21:43:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109538037061144564",
=======
"content_preview": "https://www.mediaite.com/tv/cnns-elie-honig-predicts-the-intermixing-political-fortunes-with-prosecution-of-trump-will-b",
"created_at": "2023-08-04T19:23:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110833921308822711",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "He doesn't have any fans there.https://rumble.com/v24lxpy-lol-look-how-biden-got-welcomed-at-the-border.html?mref=22lbp&",
"created_at": "2023-01-09T12:23:00.000Z",
"url": "https://truthsocial.com/@BonginoReport/109660405467952809",
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
"content_preview": "So Ratings Challenged, FAKE NEWS CNN, which just had their lowest & worst numbers in History, wants to give wacky li",
"created_at": "2023-02-11T07:38:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109846143205490783",
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
"content_preview": "https://truthsocial.com/users/TexasNann5/statuses/115215859505628408",
"created_at": "2025-09-20T21:02:57.480Z",
"url": "https://truthsocial.com/@realDonaldTrump/115238645103601701",
=======
"content_preview": "RT @joemccuiston",
"created_at": "2025-02-11T10:50:24.811Z",
"url": "https://truthsocial.com/@realDonaldTrump/113984865882064042",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"cnn"
],
"missing_from": [
"own"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "Trump vs the military industrial, media complex.The Bushes, McConnells et al were unwilling to relinquish control of the",
"created_at": "2023-05-26T16:01:00.000Z",
"url": "https://truthsocial.com/@DaKine17/110436765330432680",
=======
"content_preview": "https://www.theamericanconservative.com/the-best-of-all-possible-worlds/",
"created_at": "2022-12-08T13:08:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109479389407726424",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "We are going to shore up Social Security, making it much stronger, but with NO CUTS, while the Democrats are destroying ",
"created_at": "2024-03-22T14:53:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112140852191001597",
=======
"content_preview": "GREAT NEW BOOK: “THE DEMOCRAT PARTY HATES AMERICA,” by Mark Levin. Maybe his best yet!!!",
"created_at": "2023-09-06T22:24:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111021489302095023",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "https://truthsocial.com/users/IStandWithTrump47/statuses/115044386946993263",
"created_at": "2025-08-17T13:56:53.151Z",
"url": "https://truthsocial.com/@realDonaldTrump/115044451166294077",
"present_in": [
"cnn"
],
"missing_from": [
"own"
],
"truth_social_status": "blocked"
},
{
"content_preview": "HOW CAN MY CORRUPT POLITICAL OPPONENT PUT ME ON TRIAL(S) DURING A CAMPAIGN THAT I AM WINNING (BY A LOT!), BUT FORCING ME",
"created_at": "2023-08-07T13:46:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110849582956879248",
=======
"content_preview": "The News Conference just given by Deranged Special Prosecutor (and Trump Hater) Jack Smith was one of the weakest ever. ",
"created_at": "2023-06-09T19:51:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110516942397846460",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
<<<<<<< HEAD
"content_preview": "ELECTION INTERFERENCE!!! https://www.DonaldJTrump.com",
"created_at": "2024-04-18T18:14:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112294524478432790",
=======
"content_preview": "Nikki Haley is not on the Ballot in Indiana because she didn’t get enough Petition Signatures—She missed the deadline! I",
"created_at": "2024-01-31T17:54:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111853023912666829",
"present_in": [
"own"
],
"missing_from": [
"cnn"
],
"truth_social_status": "blocked"
},
{
"content_preview": "A complete & total Weaponization of Law Enforcement, the likes of which has never been seen in our Country before. H",
"created_at": "2023-02-07T00:25:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109821789354737818",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
<<<<<<< HEAD
"content_preview": "“THE DAM IS BREAKING”",
"created_at": "2023-07-31T22:54:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110812100442732784",
=======
"content_preview": "“WE NEED YOU…” #UFC290",
"created_at": "2023-07-09T02:54:00.000Z",
"url": "https://truthsocial.com/@DanScavino/110682810450402943",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
<<<<<<< HEAD
"content_preview": "Walmart should STOP trying to blame Tariffs as the reason for raising prices throughout the chain. Walmart made BILLIONS",
"created_at": "2025-05-17T14:27:24.420Z",
"url": "https://truthsocial.com/@realDonaldTrump/114523638623110397",
=======
"content_preview": "Page Two: I would put them in a pile and keep them as momentous. Nothing wrong with that, but sounds to me that the Inju",
"created_at": "2023-02-14T07:48:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109863170005087352",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "This is the Lincoln Memorial Reflecting Pool before Secretary of the Interior Doug Burgum and I fix it. Study it hard be",
"created_at": "2025-11-26T16:56:58.558Z",
"url": "https://truthsocial.com/@realDonaldTrump/115617052659110736",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
<<<<<<< HEAD
"content_preview": "RT: https://truthsocial.com/users/realDonaldTrump/statuses/114112430549537723",
"created_at": "2025-03-07T20:52:56.200Z",
"url": "https://truthsocial.com/@realDonaldTrump/114123130548654528",
=======
"content_preview": "https://www.breitbart.com/politics/2025/05/29/three-judges-blocking-trumps-tariffs-have-decades-long-histories-of-democr",
"created_at": "2025-06-04T18:00:00.961Z",
"url": "https://truthsocial.com/@realDonaldTrump/114626396219930564",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
<<<<<<< HEAD
"content_preview": "Wow! What a great story of the Trump Administration’s success. Where are the Nobel Peace Prizes?“Jared Kushner's Unconve",
"created_at": "2022-09-06T12:12:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/108952337524740244",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "“Biden’s classified documents scandal—growing worse by the hour—is now directly tied to Hunter Biden and his infamous la",
"created_at": "2023-01-14T17:13:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109689858107141443",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "“Requiem for a Campaign”",
"created_at": "2023-11-15T12:23:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111415722271769165",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://dcenquirer.com/new-iowa-poll-puts-final-nail-in-the-coffin-of-trumps-competitors",
"created_at": "2023-12-12T19:24:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111570260719438098",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "That is why I am hereby calling on Governor Walz, Mayor Frey, and EVERY Democrat Governor and Mayor in the United States",
"created_at": "2026-01-25T22:35:44.141Z",
"url": "https://truthsocial.com/@realDonaldTrump/115958123338296139",
=======
"content_preview": "Great job by Art Del Cueto, a Border hero, in explaining, on FoxNews, that Border crossings are virtually nonexistent un",
"created_at": "2026-01-02T02:26:58.205Z",
"url": "https://truthsocial.com/@realDonaldTrump/115823137139241980",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "I just held a great call between Prime Minister Benjamin Netanyahu, of Israel, and President Kassym-Jomart Tokayev, of K",
"created_at": "2025-11-07T00:02:10.748Z",
"url": "https://truthsocial.com/@realDonaldTrump/115505478418176575",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
<<<<<<< HEAD
"content_preview": "Kevin Roberts, the highly respected President of the Heritage Foundation, was a smart and wonderful guest, as interviewe",
"created_at": "2024-01-21T09:17:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111794365490657388",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "Everyone wants the Hostages HOME. Everyone wants this War to end! The Israelis have accepted my Terms. It is time for Ha",
"created_at": "2025-09-07T18:27:17.004Z",
"url": "https://truthsocial.com/@realDonaldTrump/115164422928262033",
=======
"content_preview": "I AM PLEASED TO REPORT THAT THE UNITED STATES OF AMERICA, AND THE COUNTRY OF IRAN, HAVE HAD, OVER THE LAST TWO DAYS, VER",
"created_at": "2026-03-23T11:23:40.184Z",
"url": "https://truthsocial.com/@realDonaldTrump/116278232362967212",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
<<<<<<< HEAD
"content_preview": "\"You get up and KNOCK THE HELL OUT of them.\" -President @realdonaldtrump#SaveAmericaRally #Election2022",
"created_at": "2022-09-23T20:11:00.000Z",
"url": "https://truthsocial.com/@realamericasvoice/109050482550208754",
=======
"content_preview": "Republicans will need to refuse to appropriate any funding to Merrick Garland’s Special Counsel and defund any part of t",
"created_at": "2022-11-18T17:21:00.000Z",
"url": "https://truthsocial.com/@RepMTG/109367137072097518",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
<<<<<<< HEAD
"content_preview": "BREAKING: ONE BOMB ON THE RAIL LINE OF THE SUWALKI GAP COULD SPIRAL US INTO WW3 IN 1 WEEKhttps://rumble.com/v32ar0o-huma",
"created_at": "2023-07-25T14:52:00.000Z",
"url": "https://truthsocial.com/@JackPosobiec/110776230018030780",
=======
"content_preview": "“Really, how does a thoroughly corrupt California Congressman rise to the level of House Intel Chairman, who then goes o",
"created_at": "2022-08-16T05:53:00.000Z",
"url": "https://truthsocial.com/@DaKine17/108831937665190349",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
<<<<<<< HEAD
"content_preview": "I LOVE TENNESSEE!",
"created_at": "2023-08-29T21:57:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110976082977505245",
=======
"content_preview": "McCarthy please remove the Trump impeachments?",
"created_at": "2023-01-13T16:44:00.000Z",
"url": "https://truthsocial.com/@bridgete128/109684082208302019",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
<<<<<<< HEAD
"content_preview": "RT @realDonaldTrumpThank you Joshua. Total Crooks!!!",
"created_at": "2025-12-25T04:51:14.472Z",
"url": "https://truthsocial.com/@realDonaldTrump/115778405955523721",
=======
"content_preview": "“Great Poll Numbers For Trump!”",
"created_at": "2025-06-18T05:35:47.909Z",
"url": "https://truthsocial.com/@realDonaldTrump/114702742182835045",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
<<<<<<< HEAD
"content_preview": "Third Rate Congressman Thomas Massie, a Weak and Pathetic RINO from the Great Commonwealth of Kentucky, a place I love, ",
"created_at": "2025-11-03T19:59:47.712Z",
"url": "https://truthsocial.com/@realDonaldTrump/115487538389910575",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "It is my Great Honor to endorse MAGA Warrior and Fountain County GOP Chair, Paula Copenhaver, a terrific Candidate for I",
"created_at": "2026-03-24T19:53:41.392Z",
"url": "https://truthsocial.com/@realDonaldTrump/116285900153878228",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "Great Evening at Turning Point. Will be announcing their Straw Poll today. Should be interesting???",
"created_at": "2023-07-16T08:43:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110723817917896486",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "Rescuing America’s Auto Industry from Joe Biden’s Disastrous Job-Killing Policies! #AGENDA47",
"created_at": "2023-07-20T13:33:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110747608133010481",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://justthenews.com/politics-policy/all-things-trump/trump-2",
"created_at": "2024-03-27T17:03:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112169674096312489",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://www.newsmax.com/newsmax-tv/david-schoen-donald-trump-judge-juan-merchan/2024/04/19/id/1161696/",
"created_at": "2024-04-20T10:54:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112304120111038897",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://www.hollywoodreporter.com/movies/movie-news/box-office-melania-opening-weekend-1236490092/",
"created_at": "2026-02-01T16:26:38.252Z",
"url": "https://truthsocial.com/@realDonaldTrump/115996308160359194",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "https://www.axios.com/2025/08/08/trump-pritzker-tension-great-lakes-carp",
"created_at": "2025-09-16T15:12:29.651Z",
"url": "https://truthsocial.com/@realDonaldTrump/115214617777906734",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "Thank you Steve, it is a great honor to have your wonderful Endorsement. I will not let you, or our Country, down!",
"created_at": "2024-01-02T10:34:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111687085278686515",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "RT @WhiteHousePresident Donald J. Trump welcomes the elite Marine Corps Silent Drill Platoon to the Oval Office, persona",
"created_at": "2025-09-25T21:59:21.383Z",
"url": "https://truthsocial.com/@realDonaldTrump/115267178422597085",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "Record Stock Market, and National Security, driven by our Great TARIFFS. I am predicting 100,000 on the DOW by the end o",
"created_at": "2026-02-08T23:35:38.677Z",
"url": "https://truthsocial.com/@realDonaldTrump/116037631258027415",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "It was my great honor to recognize some of the businesses making massive new investments right here in the United States",
"created_at": "2025-05-01T14:10:44.789Z",
"url": "https://truthsocial.com/@realDonaldTrump/114432976140064253",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "FoxNews is really pushing De Sanctimonious. He can’t win!",
"created_at": "2023-05-31T10:07:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110463683354880449",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "Secretary Kennedy: \"We now have a President who is a man of his word, who has the courage... he can't be bought, unlike ",
"created_at": "2025-05-12T16:24:57.008Z",
"url": "https://truthsocial.com/@realDonaldTrump/114495789264464415",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "“President Donald Trump brightly outshone all other Republican presidential candidates on Wednesday night during his int",
"created_at": "2023-08-23T23:44:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110942528754109283",
=======
"content_preview": "https://www.wsj.com/economy/u-s-incomes-fall-for-third-straight-year-7b8293c6",
"created_at": "2023-09-19T11:48:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111092597918658934",
>>>>>>> a7678eae8d971fcb3ceadf48a96c333650c36a37
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "President Trump: \"This is the year that we're going to take back the House, we're going to take back the Senate and we'r",
"created_at": "2022-05-28T20:04:00.000Z",
"url": "https://truthsocial.com/@RSBN/108382301794514704",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://rumble.com/v47m3xo-president-trump-in-portsmouth-nh.html",
"created_at": "2024-01-17T19:26:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111774113042196328",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "@marklevinshow: “The case that was brought against Donald Trump should have NEVER been brought…”",
"created_at": "2024-02-26T01:16:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111996316629176568",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://nypost.com/2024/03/02/opinion/nikki-haleys-complete-ignorance-of-her-own-party-is-why-trump-is-the-last-candidat",
"created_at": "2024-03-03T15:05:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/112033549751897342",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "That’s right!!!",
"created_at": "2022-09-27T23:41:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/109073955862211779",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://www.thegatewaypundit.com/2023/09/wayne-root-we-are-living-communist-police-state/",
"created_at": "2023-10-16T13:50:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111245958310396931",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "…Even as we have progressed technologically, Immigration Policy has eroded those gains and living conditions for many. I",
"created_at": "2025-11-28T04:26:50.756Z",
"url": "https://truthsocial.com/@realDonaldTrump/115625427648743414",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "Why Farmers love Trump:President Trump has done more for Americas farmers than anyone else, he has delivered prosperity ",
"created_at": "2023-05-13T08:46:00.000Z",
"url": "https://truthsocial.com/@Lara45/110361444697823060",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "On my way to Pittsburgh, Pennsylvania…",
"created_at": "2025-07-15T17:59:00.726Z",
"url": "https://truthsocial.com/@realDonaldTrump/114858547001755577",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "\"President Donald Trump remains with strong approval at 50%…\"",
"created_at": "2025-11-26T22:23:19.517Z",
"url": "https://truthsocial.com/@realDonaldTrump/115618335917111212",
"present_in": [
"cnn"
],
"missing_from": [
"own"
]
},
{
"content_preview": "Great meeting at Mar-a-Lago with my friend President @realDonaldTrump! The stakes could not be higher. Patriots will con",
"created_at": "2023-12-18T16:51:00.000Z",
"url": "https://truthsocial.com/@elisestefanik/111603634319027833",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "MAKE AMERICA GREAT AGAIN! https://www.donaldjtrump.com/",
"created_at": "2023-12-19T17:37:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111609475202176845",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "https://www.mediaite.com/politics/we-want-trump-watch-crowd-go-wild-as-desantis-literally-overshadowed-by-trump-at-iowa-",
"created_at": "2023-08-15T15:25:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/110895268010707752",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "A GREAT BOOK!!!",
"created_at": "2023-10-19T07:59:00.000Z",
"url": "https://truthsocial.com/@realDonaldTrump/111261565163839063",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "⭕️Judge Threatens Trump With Jail Mid-Trial After Democrat PAC Complained He Breached Gag Orderhttps://thefirstlightrepo",
"created_at": "2023-10-21T07:54:00.000Z",
"url": "https://truthsocial.com/@parliamental011/111272869414213072",
"present_in": [
"own"
],
"missing_from": [
"cnn"
]
},
{
"content_preview": "MAGA!!!",