-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathye.html
1020 lines (946 loc) · 48.6 KB
/
ye.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="ye's posts on X">
<title>YE X ARCHIVE</title>
<style>
:root {
--primary-color: #000;
--secondary-color: #333;
--text-color: #fff;
--gray-color: #444;
--accent-color: gray;
--spacing-unit: 0.2em;
--border-radius: 10px;
--profile-pic-size: 100px;
--profile-pic-border: 4px;
--banner-height: 150px; /* Reduced banner height */
}
@font-face {
font-family: 'Plus Jakarta Sans';
src: url('PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap; /* Improve font loading */
}
body {
background-color: var(--primary-color);
color: var(--text-color);
font-family: 'Plus Jakarta Sans', Arial, sans-serif;
word-spacing: var(--spacing-unit);
margin: 0;
padding: 20px;
}
.container {
width: 100%;
max-width: 600px;
margin: auto;
border: 1px solid var(--secondary-color);
padding: 10px;
border-radius: var(--border-radius);
padding-bottom: 20px; /* Reduce padding since message isn't fixed anymore */
}
.banner {
width: 100%;
height: var(--banner-height);
overflow: hidden;
position: relative;
margin-bottom: 0; /* Remove margin to help with exact positioning */
}
.banner img {
width: 100%;
height: 100%;
object-fit: cover;
}
.profile {
display: flex;
align-items: center;
gap: 10px;
}
.profile img {
border-radius: var(--border-radius);
transition: transform 0.2s;
}
.profile img:hover {
transform: scale(1.05);
}
.main-profile {
position: relative;
margin-top: calc(var(--profile-pic-size) * -0.5); /* Position exactly halfway */
padding-left: 10px;
z-index: 1; /* Ensure profile is above banner */
}
.main-profile img.profile-pic {
position: relative; /* Add position relative for z-index to work */
z-index: 2; /* Ensure profile picture is on top */
width: var(--profile-pic-size);
height: var(--profile-pic-size);
border: var(--profile-pic-border) solid var(--primary-color);
background-color: var(--primary-color);
/* Removed white box-shadow */
}
.profile-info {
padding-top: 30px; /* Add padding instead of margin for better alignment */
}
.post-profile img {
width: 30px;
height: 30px;
}
.post-profile h2 {
font-size: 1em;
display: flex;
align-items: center;
}
.post-date {
color: var(--accent-color);
font-size: 0.8em;
margin-left: 10px;
}
.post {
border-bottom: 1px solid var(--gray-color);
padding: 10px 0;
}
.icons {
display: flex;
justify-content: space-between;
width: 200px;
}
.post-content {
white-space: pre-wrap;
}
@media (max-width: 640px) {
.container {
width: 95%;
margin: 10px auto;
}
}
/* Add new style for reply text */
.reply-to {
color: var(--accent-color);
font-size: 0.9em;
margin: 5px 0;
}
.reply-to a {
color: inherit;
text-decoration: none;
}
.reply-to a:hover {
text-decoration: underline;
}
/* Add new style for post images */
.post-image-container {
width: calc(100% - 20px);
margin: 10px 10px;
position: relative;
cursor: pointer;
}
.post-image {
width: 100%;
border-radius: 8px;
display: block;
}
.post-image.preview {
aspect-ratio: 1;
object-fit: cover;
object-position: center;
}
.post-image.expanded {
width: 100%;
height: auto;
transition: all 0.3s ease;
}
.image-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin: 10px;
}
.image-grid img {
width: 100%;
border-radius: 8px;
aspect-ratio: 1;
object-fit: cover;
}
.edit-history {
color: var(--accent-color);
font-size: 0.8em;
margin-top: 5px;
cursor: pointer;
}
.edit-original {
display: none;
background: var(--secondary-color);
padding: 10px;
margin: 5px 0;
border-radius: 5px;
font-size: 0.9em;
}
.edit-original.show {
display: block;
}
.edit-timestamp {
color: var(--accent-color);
font-size: 0.8em;
margin-bottom: 5px;
}
.post-profile h2 img {
margin-left: 4px; /* Add gap between name and checkmark */
}
.main-profile h2 img {
margin-left: 0px; /* Same gap for main profile */
}
/* Add new style for restriction warning */
.post-restriction {
color: #fab005;
font-size: 0.8em;
margin-top: 8px;
display: flex;
align-items: center;
gap: 5px;
}
.post-restriction::before {
content: "⚠️";
}
.pinned-message {
background-color: var(--primary-color);
border-top: 1px solid var(--secondary-color);
padding: 10px 0;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="banner">
<img src="1500x500.jpg" alt="Profile Banner">
</div>
<div class="profile main-profile">
<img src="profile.jpg" alt="Profile Picture" class="profile-pic" onerror="handleImageError(this)">
<div class="profile-info">
<h2>ye <img id="gold-badge" alt="Gold Checkmark" style="width: 20px; height: 20px;"></h2>
<p>@kanyewest</p>
</div>
</div>
<hr>
<div id="posts-container">
<div class="post" data-time="2025-02-07T13:30:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I KNOW NIGGAS THINKING HE TALKING ALL THAT SHIT ON THE INTERNET BUT HE WONT SAY IT TO MY FACE WHY THE FUCK WOULD I EVER LET YOU TALK TO ME YOURE BROKE YOU DUMB ASS RETARDS</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:28:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">THIS FROM THE NIGGA WITH THE PINK POLO TO ALL YOU FAGGOT ASS RAP NIGGAS THAT EVER CAME OUT YOUR MOUTH SIDEWAYS IM THE DON YE OVER EVERYTHING AND EVERYONE GO TO YOUR DAY JOB AND TALK SHIT ABOUT ME BUT ALWAYS REMEMBER YOURE BROKE AND YOU HAVE A BOSS AND YOU HAVE TO SUCK YOUR BOSSES DICK FOR A LIVING PUSSY</p>
<div class="post-restriction">This post is restricted on X</div>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:26:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I DONT GIVE A FUCK HOW MANY PEOPLE YOU KILLED OR IF YOU WENT TO JAIL GOING TO JAIL IS A VERY ACHIEVABLE GOAL NIGGAS SOLD ALL THOSE DRUGS AND STILL GOT TO RAP FOR A LIVING🤣🤣🤣</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:24:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I DONT NEED OR WANT CELEBRITY SUPPORT EVERY CELEBRITY IS BROKE. TALKING TO YOU CANT DO SHIT BUT LOOSE ME MONEY</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T16:05:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">Ye who's your top five baddest bitches of all time<br><br>My wife<br>My wife<br>My wife<br>My wife<br>My wife<br><br>My wife demoralizes bitches</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:33:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">JEWISH PEOPLE ACTUALLY HATE WHITE PEOPLE AND USE BLACK PEOPLE</p>
<div class="post-restriction">This post is restricted on X</div>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:33:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">ALL WHITE PEOPLE ARE RACIST</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:31:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">ALL YOU BROKE ASS NIGGAS BITCHES HONKEYS JEWS ITS WHATEVER</p>
<div class="post-restriction">This post is restricted on X</div>
</div>
<div class="post" data-time="2025-02-07T13:52:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">THE MORE DRIP A NIGGA PUT ON THE BROKER THEY LOOK</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:52:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">GROWN ASS MEN IN DUMB ASS FUR HATS AND SHIT FUCK IS WRONG WITH YOU MY NIGGA</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:51:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I HATE THE WAY RAPPERS DRESS</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:50:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I HAAAAATE RAPPERS 🤣🤣🤣</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:49:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">IM A USER I ONLY HAVE PEOPLE AROUND ME THAT ARE USEFUL IF YOU CANT BE USED THEN YOURE USELESS</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:48:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">IF YOU SEE ANYONE AROUND ME KNOW THAT THEY ARE PROVIDING A SERVICE FRIENDS ARE FOR KIDS</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:45:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I CHANGE MY MIND WHEN I FEEL LIKE IT</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:44:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I WILL SAY NOTHING BAD OR AGAINST CHINA THEY ALWAYS SHOWED ME LOVE WHEN AMERICANS TURNED THEY BACKS ON ME CAUSE OF A RED HAT OR A T SHIRT I GET MONEY WITH CHINA I LOVE CHINA GOD HAD MY MOM BRING ME THEIR WHEN I WAS 10 FOR A REASON</p>
<div class="edit-history" data-post-id="1344">Edited - show original</div>
<div id="edit-1344" class="edit-original">
<div class="edit-timestamp">13:32</div>
<p>I WILL SAY NOTHING BAD OR AGAINST CHINA THEY ALWAYS SHOWED ME LOVE WHEN AMERICANS TURNED THEY BACKS ON ME CAUSE OF A RED HAT OR A T SHIRT I GET MONEY WITH CHINA I LOVE CHINA GOD HAD MY MOM BRING ME THEIR FOR A REASON</p>
</div>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:43:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">ONE THING ABOUT BEING GOD ON EARTH IS YOU HAVE TO CONSTANTLY FORGIVE EVERY HUMAN</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:42:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">2.77 BILLION AND COUNTING</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:41:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I LOVE WHEN JEWISH PEOPLE COME TO ME AND SAY THEY CANT WORK WITH ME ANYMORE ITS MY FAV</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:40:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">ELON STOLE MY NAZI SWAG AT THE INAUGURATION YOOOO MY GUY GET YOUR OWN THIRD RALE</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:37:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">NIGGAS NEWSFLASH WHITE PEOPLE AND JEWISH PEOPLE ARE DIFFERENT YOU CAN GET MONEY WITH JEWISH PEOPLE BUT THEY ALWAYS GONNA STEAL AND INVITE YOU OVER TO THEY HOUSE ON FRIDAY WHITE PEOPLE DO NOT FUCK WITH NIGGAS THEY LEAVE THAT TO THE JEWS IF YOU THINK YOU GETTING MONEY WITH A WITH A WHITE PERSON ITS NOT TRUE THAT SO CALLED WHITE PERSON IS ACTUALLY JEWISH JEWS HATE WHITES BECAUSE OF THE GERMANS FROM WORLD WAR 2</p>
<div class="post-restriction">This post is restricted on X</div>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:27:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span id="post1-date" class="post-date"></span>
</h2>
</div>
</div>
<p>Anyone who called my wife’s Grammy look a stunt is dumb and laaaame yes youuuu She been dressing naked for 2
<br>years Now all of a sudden it’s a stunt Every single bitch on the planet wish they had her bravery body platform and access to money and a husband that supported they personal expression There are a lot of things that had to converge for this moment to happen</p>
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T13:56:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">WHEN I WAS CANCELLED NO NIGGA SHOWED UP FOR ME OTHER THAN TY EVERY SINGLE OTHER NIGGA WAITED FOR IT TO BE SAFE NIGGAS WAITED FOR ME TO BE IN GOOD STANDINGS WITH THE JEWS THEN THEY CAME AROUND THAT NIGGA BETTER THAN EVERYBODY ANYWAY</p>
<div class="edit-history" data-post-id="1356">Edited - show original</div>
<div id="edit-1356" class="edit-original">
<div class="edit-timestamp">13:55</div>
<p>WHEN I WAS CANCELLED NO NIGGA SHOWED UP FOR NIGGAS WAITED FOR IT TO BE SAFE NIGGAS WAITED FOR ME TO BE IN GOOD STANDINGS WITH THE JEWS THEN THEY CAME AROUND</p>
</div>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T14:06:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">AINT NOBODY RAMPED UP EITHER IM CALM AS ICE THIS HOW I REALLY FEEL HOW I REALLY FELT AND HOW I WILL ALWAYS FEEL FUCK ALL OF YOUR FUCK ASS UNFAIR BUSINESS DEALS ANY JEWISH PERSON THAT DOES BUSINESS WITH ME NEEDS TO KNOW I DONT LIKE OR TRUST ANY JEWISH PERSON AMD THIS IS COMPLETELY SOBER WITH NO HENNESY</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T14:13:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I CAN SAY JEW AS MUCH AS I WANT I CAN SAY HITLER AS MUCH AS I WANT MATTER FACT I DO SAY IT WHEN I WANT</p>
<div class="edit-history" data-post-id="1413">Edited - show original</div>
<div id="edit-1413" class="edit-original">
<div class="edit-timestamp">14:12</div>
<p>I CAN SAY JEW AS MUCH AS I WANT I CAN SAY HITLER AS MUCH AS I WANT MATTER FACT I DO SAY IT WHEN I WANT</p>
</div>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T14:15:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">IM COLD WHEN I FEEL AN ONCE OF FEELINGS I STAND STILL AND HOLD MY EYES OPEN LIKE A PSYCHOPATH TILL THAT FEELING OF FEELING ANYTHING GOES AWAY I HAVE NO HEART STRINGS PEOPLE PULL AT YOUR HEART STRINGS TO CONTROL PEOPLE USE YOUR FEELINGS AGAINST YOU</p>
<div class="edit-history" data-post-id="1415">Edited - show original</div>
<div id="edit-1415" class="edit-original">
<div class="edit-timestamp">13:47</div>
<p>IM COLD WHEN I FEEL AN ONCE OF FEELINGS I STAND STILL AND HOLD MY EYES OPEN LIKE A PSYCHOPATH TILL THAT FEELING OF FEELING ANYTHING GOES AWAY I HAVE NO HEART STRINGS PEOPLE AT YOUR HEART STRINGS TO CONTROL PEOPLE USE YOUR FEELINGS AGAINST YOU</p>
</div>
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T14:16:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">IM HANDS DOWN BETTER AT MUSIC THAN ANYONE EVER IMA GET THERE WITH CLOTHING AND THEN WITH HOMES AND CITIES AND IMA TALK MY SHIT THE ENTIRE TIME</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T14:48:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">OKAY here's some shit I peeped a couple of weeks ago 1 2 2 3 4 5 It would have been perfect if the number 12 was a one but it's interesting none the less</p>
<div class="image-grid">
<img src="https://i.imgur.com/bg9KLxL.jpeg" alt="Grid image 1">
<img src="https://i.imgur.com/ZX4b2rx.jpeg" alt="Grid image 2">
<img src="https://i.imgur.com/fPcdvWB.jpeg" alt="Grid image 3">
<img src="https://i.imgur.com/nnwmbyo.jpeg" alt="Grid image 4">
</div>
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T15:57:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">This broke ass nigga gets it What's up you broke ass nigga Even though you broke you see the vision I almost give you credit for being broke and seeing this but just like every broke ass niggas I used to know You can't get credit 🤣🤣🤣</p>
<div class="post-image-container">
<img src="https://i.imgur.com/wiLL1H8.jpeg"
alt="Post image"
class="post-image preview"
data-aspect="vertical"
onclick="toggleImage(this)">
</div>
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T16:17:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<div class="reply-to">
<a href="https://x.com/AFpost/status/1887828009354228210" target="_blank" rel="noopener noreferrer">Replying to @AFpost</a>
</div>
<p class="post-content">Come extort me bitch Come close my bank accounts again You should have physically killed me when you had the chance I am God Jesus Hitler Ye Like I told you</p>
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T16:45:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I used to be woke too</p>
<div class="post-image-container">
<img src="https://i.imgur.com/AgwsHAs.jpeg"
alt="Post image"
class="post-image preview"
data-aspect="vertical"
onclick="toggleImage(this)">
</div>
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T16:58:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">Yooooo real talk I gotta give this broke nigga Jasper his credit I also wouldn’t have peeped the rapper misspelling That was a win for the haters Been fun sparring Hopefully they’ll have your dumb ass comments at the top again the next time I be myself on twitter<br><br>Wait Ah aaahh Shut the fuck up God has spoken Gods going to bed Everyone turn their WiFi off There’s nothing left to see here good night 🫂</p>
<img src="https://i.imgur.com/seXMFka.jpeg" alt="Post image" class="post-image">
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T17:03:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">My favorite tweet tonight was about woke fat bitches Nobody wanna see that shit</p>
<div class="icons">
</div>
</div>
<div class="post" data-time="2025-02-07T17:06:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I channeled Andrew Tate on a few of these tweets</p>
<div class="icons"></div>
</div>
<div class="post" data-time="2025-02-07T13:53:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I LOVE TY $</p>
<div class="edit-history" data-post-id="1353">Edited - show original</div>
<div id="edit-1353" class="edit-original">
<div class="edit-timestamp">13:53</div>
<p>I LOVE TY</p>
</div>
</div>
<div class="post" data-time="2025-02-07T13:23:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">NO RICH NIGGA IS TRULY FUNNY BEING FUNNY IS FOR BROKE NIGGAS WHO WANT TO DISTRACT YOU FROM THE FACT THAT THEY BROKE AND TRYNA GET BITCHES TO FUCK FOR FREE</p>
<div class="edit-history" data-post-id="1323">Edited - show original</div>
<div id="edit-1323" class="edit-original">
<div class="edit-timestamp">13:22</div>
<p>NO RICH NIGGA IS TRULY FUNNY BEING FUNNY IS FOR BROKE NIGGAS WHO WANT TO DISTRACT YOU FROM THE FACT THAT THEY BROKE A GET BITCHES TO FUCK FOR FREE</p>
<div class="edit-timestamp">13:14</div>
<p>NO RICH IS TRULY FUNNY BEING FUNNY IS FOR BROKE NIGGAS WHO WANT TO DISTRACT YOU FROM THE FACT THAT THEY BROKE A GET BITCHES TO FUCK FOR FREE</p>
</div>
</div>
<div class="post" data-time="2025-02-07T13:13:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I PAY NIGGAS AND BITCHES TO LAUGH AT MY JOKES</p>
<div class="edit-history" data-post-id="1313">Edited - show original</div>
<div id="edit-1313" class="edit-original">
<div class="edit-timestamp">13:12</div>
<p>I PAY NIGGAS TO LAUGH AT MY JOKES</p>
</div>
</div>
<div class="post" data-time="2025-02-07T13:13:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">NEVER MEET YOUR HEROES</p>
</div>
<div class="post" data-time="2025-02-07T13:15:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">FUCK VIRGIL</p>
</div>
<div class="post" data-time="2025-02-07T13:15:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">YOU KNOW THE ONLY THING WORSE THAN FUCKING FOR MONEY? FUCKING FOR FREE</p>
</div>
<div class="post" data-time="2025-02-07T13:18:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">THIS NIGGA THAT WORKED FOR ME SAID HE WAS UNCOMFORTABLE WITH MY WIFES GRAMMY LOOK FIRED AND BLOCKED ITS MORE PEOPLE LOOKING FOR WORK THEN THEY ARE PEOPLE GIVING WORK</p>
</div>
<div class="post" data-time="2025-02-07T13:21:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">IM A NAZI</p>
</div>
<div class="post" data-time="2025-02-07T13:21:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">LETS SEE IF YALL GIVE THAT MONEY BACK</p>
</div>
<div class="post" data-time="2025-02-07T13:21:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I LOVE HITLER NOW WHAT BITCHES</p>
</div>
<div class="post" data-time="2025-02-07T13:21:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I PAYED 1.5 MILLION FOR MY GRAMMY ADS THIS YEAR LETS SEE IF FOX GIVE THAT MONEY BACK YOU GONNA GIVE BACK THAT MONEY FOR MY OPINIONS THEN STAND ON IT</p>
</div>
<div class="post" data-time="2025-02-07T13:22:00+02:00">
<div class="profile post-profile">
<img src="profile.jpg" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2>ye <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;">
<span class="post-date"></span>
</h2>
</div>
</div>
<p class="post-content">I SAY WHATEVER THE FUCK I WANT PUSSIES</p>
</div>
</div>
<div class="pinned-message">
<div class="profile post-profile">
<img src="https://avatars.githubusercontent.com/u/76966291?v=4" alt="Profile Picture" onerror="handleImageError(this)">
<div>
<h2><a href="https://github.com/cuhsy" target="_blank" rel="noopener noreferrer" style="color: white;">cuhsy</a> <img class="gold-badge" alt="Gold Checkmark" style="width: 15px; height: 15px;"></h2>
</div>
</div>
<p class="post-content">LIST IS BEING ACTIVELY UPDATED. CHECK BACK SOON FOR UPDATES</p>
</div>
</div>
<script>
const goldBadgeUrl = "https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Twitter_Verified_Badge_Gold.svg/2048px-Twitter_Verified_Badge_Gold.svg.png";
// Better error handling for images
const handleImageError = (img) => {
img.onerror = null;
img.src = 'fallback-profile.jpg';
};
// Format date with error handling
function formatDate(date) {
try {
return new Intl.DateTimeFormat('en-US', {
year: 'numeric',
month: 'short',
day: 'numeric',
hour: '2-digit',
minute: '2-digit',
hour12: false
}).format(date);
} catch (error) {
console.error('Error formatting date:', error);
return 'Date unavailable';
}
}
function formatEditDate(isoTime) {
try {
const date = new Date(isoTime);
return new Intl.DateTimeFormat('en-US', {
hour: '2-digit',
minute: '2-digit',
hour12: false
}).format(date);
} catch (error) {
console.error('Error formatting edit date:', error);
return 'Time unavailable';
}
}
// Initialize page
document.addEventListener('DOMContentLoaded', () => {
const goldBadge = document.getElementById('gold-badge');
goldBadge.src = goldBadgeUrl;
goldBadge.onerror = () => handleImageError(goldBadge);
document.querySelectorAll('.gold-badge').forEach(img => {
img.src = goldBadgeUrl;
img.onerror = () => handleImageError(img);
});
const postsContainer = document.getElementById('posts-container');
const posts = Array.from(postsContainer.getElementsByClassName('post'));
posts.forEach(post => {
const date = new Date(post.getAttribute('data-time'));
const dateSpan = post.querySelector('.post-date');
if (dateSpan) {
dateSpan.textContent = formatDate(date);
}
});
// Sort posts by date
posts
.sort((a, b) => new Date(b.getAttribute('data-time')) - new Date(a.getAttribute('data-time')))
.forEach(post => postsContainer.appendChild(post));
// Initialize edit history toggles
document.querySelectorAll('.edit-history').forEach(toggle => {
toggle.addEventListener('click', () => {
toggleEditHistory(toggle.dataset.postId);
});
});
// Add timestamp conversion for edit history
document.querySelectorAll('.edit-timestamp').forEach(timestamp => {
const timeText = timestamp.textContent;
const [hours, minutes] = timeText.split(':');
const editDate = new Date('2025-02-07');
editDate.setHours(hours, minutes);
// Convert to proper ISO string with EEST timezone
const isoTime = `2025-02-07T${hours}:${minutes}:00+02:00`;
timestamp.textContent = formatEditDate(isoTime);
});
});
function toggleImage(img) {