-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwtxt-2024Q1.html
More file actions
2296 lines (2170 loc) · 100 KB
/
twtxt-2024Q1.html
File metadata and controls
2296 lines (2170 loc) · 100 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Twtxt Feed</title>
</head>
<body class="preload">
<header>
<div>
This is a visual presentation of my <a href="twtxt-2024Q1.txt">feed of twts</a>, from the 1st quarter of 2024.
You can also <a href="twtxt-2023.html">find the previous year (2023)</a>, or a <a href="twtxt-2024Q2.html">more recent feed</a> (for the 2nd quarter of 2024).
</div>
</header>
<main class="container">
<article id="ehsl6ga" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ehsl6ga">
<time class="dt-published" datetime="2024-03-31T17:33:14+01:00">
2024-03-31 16:33:14 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Depois não digam que não foram avisados! <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/191/254/985/857/704/original/53a8e9160e0d7970.jpg" alt="Pré-venda do disco "Cães Danados" (disco de covers dos Raindogs) com desconto de 20% até 21 de Abril em www.adc-records.com"/></p>
</p>
</div>
</article>
<article id="fu4bgiq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#fu4bgiq">
<time class="dt-published" datetime="2024-03-29T19:16:42Z">
2024-03-29 19:16:42 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Agora com video-clip:<br/>
<a href="https://youtu.be/SliYHOf_woU" rel="nofollow">https://youtu.be/SliYHOf_woU</a></p>
</p>
</div>
</article>
<article id="cw6hjlq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#cw6hjlq">
<time class="dt-published" datetime="2024-03-28T18:26:40Z">
2024-03-28 18:26:40 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Hoje às 23h na #Antena3, amanhã no bandcamp: 2° single de "Cães Danados"! <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/174/706/416/288/397/original/b204fad2e2d4610a.jpg" alt="2° Single! Sistema Axiomático "Silver Jet" Antena 3 - Indigente - 28.03.2024 - 23H Cães Danados (Raindogs Cover Songs)"/></p>
</p>
</div>
</article>
<article id="w2kgnsa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#w2kgnsa">
<time class="dt-published" datetime="2024-03-28T01:03:15Z">
2024-03-28 01:03:15 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/170/616/053/930/354/original/287d0258938a444e.jpg" alt=""I’m glad I don’t live in Yesterday . . . that Tomorrow is still a friend."" title=""I’m glad I don’t live in Yesterday . . . that Tomorrow is still a friend.""/></p>
</p>
</div>
</article>
<article id="w3s4hgq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#w3s4hgq">
<time class="dt-published" datetime="2024-03-27T23:20:33Z">
2024-03-27 23:20:33 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Eu: "este ano tiro férias para o Zigur!"<br/>
Zigur: "este ano vamos ter mais um dia!"</p>
</p>
</div>
</article>
<article id="x6quc7q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#x6quc7q">
<time class="dt-published" datetime="2024-03-27T23:15:57Z">
2024-03-27 23:15:57 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Não é por nada, mas #ZigurFest <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/170/191/393/208/205/original/433cccb2547f8d1f.jpg" alt="24-27 Julho ZigurFest 2024 Lamego" title="24-27 Julho ZigurFest 2024 Lamego"/></p>
</p>
</div>
</article>
<article id="bg4n3cq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#bg4n3cq">
<time class="dt-published" datetime="2024-03-27T09:50:20Z">
2024-03-27 09:50:20 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Happy #DocumentFreedomDay ! <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/167/021/603/237/156/original/018bfe368fd0e264.jpeg" alt=""Don't worry granpa, we're going to get your documents back!"" title=""Don't worry granpa, we're going to get your documents back!""/></p>
</p>
</div>
</article>
<article id="gfuyjaq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#gfuyjaq">
<time class="dt-published" datetime="2024-03-26T10:37:26Z">
2024-03-26 10:37:26 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>2024, and this is the quality of the most popular office suite:</p>
<p>"Excel CSVs aren’t even interoperable between different computers.</p>
<p>My recommendation is to use Google Sheets to create CSV"</p>
<p>#OpenStandards #FAIL</p>
<p>@villares <a href="https://ciberlandia.pt/@villares/112157014976107927" rel="nofollow">https://ciberlandia.pt/@villares/112157014976107927</a></p>
</p>
</div>
</article>
<article id="jgnvi3a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#jgnvi3a">
<time class="dt-published" datetime="2024-03-25T21:41:59Z">
2024-03-25 21:41:59 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Ontem foi assim:</p>
<p><a href="https://rum.pt/news/evento-reune-entusiastas-em-mapear-opcoes-de-mobilidade-e-acessibilidade" rel="nofollow">https://rum.pt/news/evento-reune-entusiastas-em-mapear-opcoes-de-mobilidade-e-acessibilidade</a></p>
<p>#DocumentFreedomDay</p>
</p>
</div>
</article>
<article id="vq2t5ma" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vq2t5ma">
<time class="dt-published" datetime="2024-03-25T11:08:36Z">
2024-03-25 11:08:36 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 13 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/156/007/730/533/551/original/6a257269ff99f689.jpg" alt="South European Folk Compendium" title="South European Folk Compendium"/></p>
</p>
</div>
</article>
<article id="drstvzq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#drstvzq">
<time class="dt-published" datetime="2024-03-24T14:45:02Z">
2024-03-24 14:45:02 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>On paper presentation about @openstreetmap<em>@openstreetmap</em> by @waldyrious<em>@waldyrious</em> on "Open Knowledge Braga"</p>
<p>#documentfreedomday2024 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/151/192/527/812/826/original/3a691e9d319a8d5b.jpg" alt="Waldir holding his on-paper presentation" title="Waldir holding his on-paper presentation"/></p>
</p>
</div>
</article>
<article id="vogb7wa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vogb7wa">
<time class="dt-published" datetime="2024-03-24T08:52:57Z">
2024-03-24 08:52:57 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Hello again @phpledge<em>@phpledge</em> !</p>
<p>Your website says "We will be launching an initial Organizer Guide in the coming days, which we will iterate on in conversation with community leaders and expert", but... well, is there a draft for it somewhere, yet?</p>
<p>#PHPledge</p>
</p>
</div>
</article>
<article id="yb4fs6a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#yb4fs6a">
<time class="dt-published" datetime="2024-03-23T15:34:28Z">
2024-03-23 15:34:28 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Em Portugal adiantá-mo-nos, e a celebração do #documentfreedomday2024 vai ser já amanhã, no "Open Knowledge Braga", organizado pela @wikimediapt<em>@wikimediapt</em>.</p>
<p>O site já tem uma secção de Material Recomendado, e por aqui já estamos equipados.</p>
<p><a href="https://pt.wikimedia.org/wiki/Open_Knowledge_Braga_2024" rel="nofollow">https://pt.wikimedia.org/wiki/Open_Knowledge_Braga_2024</a></p>
<p>E tu, já tens a ida a #Braga planeada?</p>
<p>#DocumentFreedomDay <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/145/728/765/508/783/original/1c13f61fbe533a18.jpg" alt="Um telemóvel e um bloco de notas" title="Um telemóvel e um bloco de notas"/></p>
</p>
</div>
</article>
<article id="4yv52pa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#4yv52pa">
<time class="dt-published" datetime="2024-03-23T01:26:32Z">
2024-03-23 01:26:32 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Jovem: se tens mais de 18 anos (ou mesmo só 18) e ainda não fizeste a vacinação sazonal de #COVID-19 (isto é, se não fizeste nenhuma #vacina de COVID-19 desde setembro) sabias que ainda a podes fazer, numa farmácia perto de ti? É grátis e rápido!</p>
<p>Agendamento online: <a href="https://agendamento.farmaciasportuguesas.pt/" rel="nofollow">https://agendamento.farmaciasportuguesas.pt/</a></p>
<p>Se não vires uma farmácia num local conveniente nessa lista, não desistas!<br/>
Nem todas as farmácias têm agendamento online, mas se telefonares para a farmácia que te dá mais jeito e pedires a vacinação sazonal #covid eles dizem-te se a fazem ou que farmácias na área fazem...</p>
<p>Ah, e se achas que não vale a pena porque já tomaste umas quantas, incluindo uma há um ano... Não é bem assim, esta vacina é adaptada!</p>
<p>Mais informação: <a href="https://www.sns.gov.pt/vacinacao-gripe-e-covid-19-outono-inverno-2023/" rel="nofollow">https://www.sns.gov.pt/vacinacao-gripe-e-covid-19-outono-inverno-2023/</a> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/142/380/346/297/675/original/5e15e08e655f43c0.jpg" alt="Q: Já fiz um reforço da vacina contra a COVID-19 no ano passado, preciso de ser vacinado outra vez? A: Recomenda-se que sim, dado que esta vacina está adaptada de forma a proteger contra as estirpes atualmente em circulação." title="Q: Já fiz um reforço da vacina contra a COVID-19 no ano passado, preciso de ser vacinado outra vez? A: Recomenda-se que sim, dado que esta vacina está adaptada de forma a proteger contra as estirpes atualmente em circulação."/></p>
</p>
</div>
</article>
<article id="yzamnea" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#yzamnea">
<time class="dt-published" datetime="2024-03-22T21:10:55Z">
2024-03-22 21:10:55 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#documentfreedomday is going to be next Wednesday!</p>
<p>How is your local free software community going to to celebrate it?</p>
<p>More info: <a href="https://digitalfreedoms.org/dfd/dfd-2024" rel="nofollow">https://digitalfreedoms.org/dfd/dfd-2024</a> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/141/376/766/767/041/original/9ba92bb967713351.jpg" alt="Me waving (or mostly holding) an ODF flag, outdoors, while wearing a LaTeX sweatshirt. Picture taken during the first day of Document Freedom Day 2013 celebrations in Lisbon."/></p>
</p>
</div>
</article>
<article id="6gh3o4a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#6gh3o4a">
<time class="dt-published" datetime="2024-03-21T20:11:32Z">
2024-03-21 20:11:32 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#DocumentFreedomDay is next week!<br/>
Do you already know how are you going to celebrate? <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/135/484/049/067/092/original/f35ea21506250faf.jpg" alt="A few stickers on a laptop, the central one saying "We Cannot Read Your Documents", and pointing to documentfreedom.org" title="A few stickers on a laptop, the central one saying "We Cannot Read Your Documents", and pointing to documentfreedom.org"/></p>
</p>
</div>
</article>
<article id="vd3ohfa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vd3ohfa">
<time class="dt-published" datetime="2024-03-20T22:23:00Z">
2024-03-20 22:23:00 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Com mais de 40% dos #votos do estrangeiro nulos, e uma das causas mais frequentes o facto da cópia do CC ter sido enviada no envelope errado, questionei-me se este ano não tinham feito um videozinho a explicar como votar - lembrando-me do de 2022.</p>
<p>Fui ver, dei com isto: <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/130/335/529/152/910/original/03ca779148114d22.jpeg" alt="O Portal do Eleitor até queria ter um vídeo, só que... não funciona." title="O Portal do Eleitor até queria ter um vídeo, só que... não funciona."/></p>
</p>
</div>
</article>
<article id="ajdqdsq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ajdqdsq">
<time class="dt-published" datetime="2024-03-19T14:29:39Z">
2024-03-19 14:29:39 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>As ideias da @ansol<em>@ansol</em> para esta legislatura na #PCGuia <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/122/822/306/450/907/original/dc35c085622d9fcb.jpg" alt="Foto à PCGuia: uma página a falar do Matrix e das propostas da ANSOL para a legislatura" title="Foto à PCGuia: uma página a falar do Matrix e das propostas da ANSOL para a legislatura"/></p>
</p>
</div>
</article>
<article id="6ilifdq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#6ilifdq">
<time class="dt-published" datetime="2024-03-19T14:26:44Z">
2024-03-19 14:26:44 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>...de Lisboa 😞<br/>
<a href="https://www.lisboa.pt/agenda/municipio/regulamento-geral-da-rede-de-bibliotecas-de-lisboa" rel="nofollow">https://www.lisboa.pt/agenda/municipio/regulamento-geral-da-rede-de-bibliotecas-de-lisboa</a></p>
</p>
</div>
</article>
<article id="q2mfdja" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#q2mfdja">
<time class="dt-published" datetime="2024-03-19T14:25:06Z">
2024-03-19 14:25:06 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/122/805/855/787/481/original/60f81c565416af12.jpg" alt="A proposta do Regulamento Geral da Rede de Bibliotecas está em consulta pública até 28 de março de 2024." title="A proposta do Regulamento Geral da Rede de Bibliotecas está em consulta pública até 28 de março de 2024."/></p>
</p>
</div>
</article>
<article id="7ubbkwa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#7ubbkwa">
<time class="dt-published" datetime="2024-03-18T12:15:26Z">
2024-03-18 12:15:26 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Este ano o #DocumentFreedomDay em Portugal é celebrado com a @wikimediapt<em>@wikimediapt</em>:</p>
<p>ATENÇÃO BRAGA e arredores! No próximo domingo, 24 de #Março de 2024, vem mapear #Braga connosco! O ponto de encontro é às 11h, na entrada da Universidade do Minho. Mais informações: <a href="https://pt.wikimedia.org/wiki/Open_Knowledge_Braga_2024" rel="nofollow">https://pt.wikimedia.org/wiki/Open_Knowledge_Braga_2024</a> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/116/636/237/472/113/original/b64b777d4eae5d7b.jpg" alt="OKB '24 logo" title="OKB '24 logo"/></p>
</p>
</div>
</article>
<article id="d7iwfeq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#d7iwfeq">
<time class="dt-published" datetime="2024-03-18T10:37:06Z">
2024-03-18 10:37:06 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 12 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/116/245/000/260/324/original/a2355cf568637953.jpg" alt="Marilyn Manson's "We Are Chaos" faces the camera at the end of a wall of Marilyn Manson CDs" title="Marilyn Manson's "We Are Chaos" faces the camera at the end of a wall of Marilyn Manson CDs"/></p>
</p>
</div>
</article>
<article id="x6skpdq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#x6skpdq">
<time class="dt-published" datetime="2024-03-17T16:05:24Z">
2024-03-17 16:05:24 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#fairies #qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/111/875/073/470/045/original/8ead5fecfdd1dd5d.jpg" alt=""The world always will have fairies. It can’t get along without them. And somebody has to supply them."" title=""The world always will have fairies. It can’t get along without them. And somebody has to supply them.""/></p>
</p>
</div>
</article>
<article id="sxym6tq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#sxym6tq">
<time class="dt-published" datetime="2024-03-17T01:57:49Z">
2024-03-17 01:57:49 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Not in my initial plans, but today I started to read an adaptation of Christie's "Murder On The Links", from 2019, fulfilling the "Any 9" prompt to this year's #MarchMysteryMadness .</p>
<p>#Bookstodon <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/108/545/082/817/450/original/e234674de89d1380.jpg" alt="In the cover we can see that the title is "Crime no campo de golfe", as this is the Portuguese edition on this comics adaptation" title="In the cover we can see that the title is "Crime no campo de golfe", as this is the Portuguese edition on this comics adaptation"/></p>
</p>
</div>
</article>
<article id="322hzua" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#322hzua">
<time class="dt-published" datetime="2024-03-16T01:06:58Z">
2024-03-16 01:06:58 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#EEA sent a report to #EU leaders about the #climate risks EU citizens face.</p>
<p>Here is an analysis of it:<br/>
<a href="https://threadreaderapp.com/thread/1768639202491854853.html" rel="nofollow">https://threadreaderapp.com/thread/1768639202491854853.html</a></p>
<p>My selected quote:<br/>
"I am not sure the general public (or our politicians) understands that we have zero evidence that we - humanity - can cope with any of this. Zero."</p>
</p>
</div>
</article>
<article id="ob7rmtq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ob7rmtq">
<time class="dt-published" datetime="2024-03-15T21:00:48Z">
2024-03-15 21:00:48 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Há uma semana do ano em que, em #Lamego, se come o #pito.</p>
<p>Este ano vi pela primeira vez mini-pitos, não sei bem o que encontrarei dentro desses... <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/101/711/542/983/246/original/af772bbdf2d2d7d8.jpg" alt="Pito e mini-pito" title="Pito e mini-pito"/></p>
</p>
</div>
</article>
<article id="rxe5pmq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#rxe5pmq">
<time class="dt-published" datetime="2024-03-15T15:58:28Z">
2024-03-15 15:58:28 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Desafios de escrever a #História</p>
<p>#qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/100/522/597/700/297/original/30677fdec454f904.jpg" alt="Num livro de História, o autor decide citar em vez de dizer, para evitar críticas de "algum erudito de meia tijela"." title="Num livro de História, o autor decide citar em vez de dizer, para evitar críticas de "algum erudito de meia tijela"."/></p>
</p>
</div>
</article>
<article id="le3fnaa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#le3fnaa">
<time class="dt-published" datetime="2024-03-15T14:02:57Z">
2024-03-15 14:02:57 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I decided to change my reading plans, and started reading Anne of Windy Poplars, fourth in the series.</p>
<p>After a second book with an annoying use of ellipsis, the third had none. But this! On Windy Poplars the ellipsis return, with vengeance: you need to read up to page 24 to find the first page without ellipsis! ...</p>
<p>#bookstodon #fridayreads <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/100/049/304/941/711/original/da9bd1b000c8182a.jpg" alt=""Anne of Windy Poplars", the Bantam Special Collector's Edition" title=""Anne of Windy Poplars", the Bantam Special Collector's Edition"/></p>
</p>
</div>
</article>
<article id="zehsscq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#zehsscq">
<time class="dt-published" datetime="2024-03-15T13:08:27Z">
2024-03-15 13:08:27 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#Festivais de música a vender os seus bilhetes a prestações para quem não tem dinheiro para comprar o bilhete a pronto...</p>
<p>Há tanta coisa de tão errada neste cenário.</p>
<p>Mas para mim o pior de tudo é a ideia de faz sentido tentar convencer a quem não tem dinheiro nem consegue poupar que mesmo assim deviam endividar-se para ir a um #festival. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/099/854/329/700/478/original/ffacd13cd918f0f6.jpg" alt="Meo Kalorama a prestações" title="Meo Kalorama a prestações"/> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/099/855/130/171/099/original/f0b7695831078a04.jpg" alt="Sudoeste a prestações" title="Sudoeste a prestações"/></p>
</p>
</div>
</article>
<article id="fggpzjq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#fggpzjq">
<time class="dt-published" datetime="2024-03-15T00:39:09Z">
2024-03-15 00:39:09 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Também já se pode ouvir aqui:<br/>
<a href="https://anti-demos-cracia.bandcamp.com/album/c-es-danados-raindogs-cover-songs-2" rel="nofollow">https://anti-demos-cracia.bandcamp.com/album/c-es-danados-raindogs-cover-songs-2</a></p>
</p>
</div>
</article>
<article id="mxojnta" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#mxojnta">
<time class="dt-published" datetime="2024-03-14T09:48:46Z">
2024-03-14 09:48:46 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#hoje, na #antena3 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/093/397/626/846/669/original/e7261a2d3e1ce07e.jpg" alt="Hoje no Indigente (Antena 3, 22h) vai-se ouvir um tema de avanço do disco "Cães Danados", com covers dos Raindogs. O disco sai em Maio, em CD."/></p>
</p>
</div>
</article>
<article id="bpxcj2a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#bpxcj2a">
<time class="dt-published" datetime="2024-03-13T23:21:37Z">
2024-03-13 23:21:37 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"Yes, terrible conflicts and injustices rage across the planet but none of them, with no disrespect to the suffering of the people involved, presents the same scale of risks as climate change, not even close."</p>
<p>#ClimateCrisis</p>
<p>@breadandcircuses<em>@breadandcircuses</em> <a href="https://climatejustice.social/@breadandcircuses/112088405981241903" rel="nofollow">https://climatejustice.social/@breadandcircuses/112088405981241903</a></p>
</p>
</div>
</article>
<article id="us2liza" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#us2liza">
<time class="dt-published" datetime="2024-03-13T10:11:00Z">
2024-03-13 10:11:00 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Entidades sociais – Precisam de computadores?</p>
<p>Acabei de saber da existência do ReBOOT Porto, e aqueceu-me o coração ❤️</p>
<p><a href="https://reboot.porto.pt" rel="nofollow">https://reboot.porto.pt</a></p>
</p>
</div>
</article>
<article id="n6xrfva" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#n6xrfva">
<time class="dt-published" datetime="2024-03-11T11:45:17Z">
2024-03-11 11:45:17 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 11 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/076/874/891/064/287/original/4c8b46adad4a1f73.jpeg" alt="Ministry released their "Hopiumforthemasses" right on time for an electoral night that saw fascism rise in Portugal. In the day after, a picture of ΚΕΦΑΛΗΞΘ, Ministry's 1992 album. " title="Ministry released their "Hopiumforthemasses" right on time for an electoral night that saw fascism rise in Portugal. In the day after, a picture of ΚΕΦΑΛΗΞΘ, Ministry's 1992 album. "/></p>
</p>
</div>
</article>
<article id="kydkdfq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#kydkdfq">
<time class="dt-published" datetime="2024-03-11T02:38:05Z">
2024-03-11 02:38:05 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Ouvi vários comentários durante esta noite de #legislativas2024 a falar como se hoje fosse o dia em que o PSD se livra do PPM.</p>
<p>Esquecem-se, parece, que o acordo da AD inclui também as #europeias em Junho...</p>
<p>#ptpol</p>
</p>
</div>
</article>
<article id="lk7rila" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#lk7rila">
<time class="dt-published" datetime="2024-03-11T01:46:24Z">
2024-03-11 01:46:24 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#legislativas2024 #ptpol</p>
<p>Mandatos:<br/>
PSD-CDS 79, PS 77, CH 48, IL 8, BE 5, CDU 4, L 4, PAN 1<br/>
Faltam os 4 fora de Portugal</p>
<p>CH ultrapassa PSD-CDS em relação à projecção.</p>
<p>Montenegro governará em minoria, se assim Marcelo permitir.</p>
</p>
</div>
</article>
<article id="zvff57a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#zvff57a">
<time class="dt-published" datetime="2024-03-10T23:13:13Z">
2024-03-10 23:13:13 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#legislativas2024 #ptpol</p>
<p>Coitado do Rui Tavares, estava todo contente a dizer que o Livre era o partido qie crescia mais em percentagem... apareceu o ADN a crescer mais de 10x mais!</p>
</p>
</div>
</article>
<article id="2xojzzq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2xojzzq">
<time class="dt-published" datetime="2024-03-10T20:11:37Z">
2024-03-10 20:11:37 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#legislativas2024 Projeções Católica:</p>
<p>AD: 83-91 mandatos<br/>
PS: 69-77 mandatos<br/>
CH: 40-46 mandatos<br/>
IL: 7-10 mandatos<br/>
BE: 5-7 mandatos<br/>
L: 4-6 mandatos<br/>
CDU: 2-3 mandatos<br/>
PAN: 0-2 mandatos</p>
<p>Não há maioria de esquerda, nem há maioria de direita democrática.</p>
<p>Veremos se a projecção se confirma...</p>
<p>#ptpol</p>
</p>
</div>
</article>
<article id="shljdrq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#shljdrq">
<time class="dt-published" datetime="2024-03-09T01:44:12Z">
2024-03-09 01:44:12 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/063/193/096/145/567/original/9f38ac719d011765.jpg" alt="“You’ll feel differently about a good many things when you get to be my age,” said Janet tolerantly. “That’s one of the things we learn as we grow older—how to forgive. It comes easier at forty than it did at twenty.”" title="“You’ll feel differently about a good many things when you get to be my age,” said Janet tolerantly. “That’s one of the things we learn as we grow older—how to forgive. It comes easier at forty than it did at twenty.”"/></p>
</p>
</div>
</article>
<article id="nfiinoa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#nfiinoa">
<time class="dt-published" datetime="2024-03-08T11:18:18Z">
2024-03-08 11:18:18 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#RIP #AkiraToriyama <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/059/776/539/424/953/original/4d65c87c64f9de14.jpg" alt="A picture of Akira Toriyama's most famous work, Dragon Ball. The first book cover is shown, in front of the spines to the rest of it (numbers 2 to 23 visible)."/></p>
</p>
</div>
</article>
<article id="ikusc5q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ikusc5q">
<time class="dt-published" datetime="2024-03-08T02:08:31Z">
2024-03-08 02:08:31 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#ptpol #sondagem</p>
<p>Há poucas palavras para isto.<br/>
Domingo, votem.</p>
<p><a href="https://www.rtp.pt/noticias/politica/sondagem-catolica-ad-mantem-se-a-frente-num-parlamento-fragmentado_n1556003" rel="nofollow">https://www.rtp.pt/noticias/politica/sondagem-catolica-ad-mantem-se-a-frente-num-parlamento-fragmentado_n1556003</a> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/057/608/849/343/795/original/3343d62a88e61591.jpg" alt="Sondagem aponta vitória para AD. Não há solução de maioria sem o partido farsista." title="Sondagem aponta vitória para AD. Não há solução de maioria sem o partido farsista."/></p>
</p>
</div>
</article>
<article id="jemdsaa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#jemdsaa">
<time class="dt-published" datetime="2024-03-05T18:19:45Z">
2024-03-05 18:19:45 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>A #direita e a #ferrovia:</p>
<p><a href="https://pt.mondediplo.com/2024/03/os-cinco-mitos-da-direita-sobre-a-ferrovia.html" rel="nofollow">https://pt.mondediplo.com/2024/03/os-cinco-mitos-da-direita-sobre-a-ferrovia.html</a></p>
</p>
</div>
</article>
<article id="5wmdeoq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#5wmdeoq">
<time class="dt-published" datetime="2024-03-05T15:49:16Z">
2024-03-05 15:49:16 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>O feice foice. 🥁</p>
</p>
</div>
</article>
<article id="vewwy2q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vewwy2q">
<time class="dt-published" datetime="2024-03-05T10:46:57Z">
2024-03-05 10:46:57 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"green extractivism is a myth", "the twin transition is failing people and the planet."</p>
<p><a href="https://youtu.be/j9TVE_TJMMk" rel="nofollow">https://youtu.be/j9TVE_TJMMk</a></p>
<p>#PrivacyCamp</p>
</p>
</div>
</article>
<article id="2nhkjma" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2nhkjma">
<time class="dt-published" datetime="2024-03-04T23:51:27Z">
2024-03-04 23:51:27 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#flatlyUnreasonable #qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/040/091/929/546/312/original/ed363f27fabe9e31.jpg" alt=""But who could expect a melancholy, inscrutable hero to see the humorous side of things? It would be flatly unreasonable."" title=""But who could expect a melancholy, inscrutable hero to see the humorous side of things? It would be flatly unreasonable.""/></p>
</p>
</div>
</article>
<article id="mqq26aq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#mqq26aq">
<time class="dt-published" datetime="2024-03-04T21:48:03Z">
2024-03-04 21:48:03 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Germany has its military discussions over #WebEx , and this is not a joke...</p>
</p>
</div>
</article>
<article id="xhpy4lq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#xhpy4lq">
<time class="dt-published" datetime="2024-03-04T11:17:39Z">
2024-03-04 11:17:39 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 10</p>
<p>Yesterday, LC announced the end of his "Teatro Grotesco" musical project. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/037/126/734/288/764/original/67adf3b7d162984f.jpg" alt="A picture of Kroni's Empire, Teatro Grotesco's full album on CD. The disc itself was hand-painted in this 50 copies limited edition, and this copy is numbered 14." title="A picture of Kroni's Empire, Teatro Grotesco's full album on CD. The disc itself was hand-painted in this 50 copies limited edition, and this copy is numbered 14."/></p>
</p>
</div>
</article>
<article id="tw7pfpq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#tw7pfpq">
<time class="dt-published" datetime="2024-03-03T15:12:45Z">
2024-03-03 15:12:45 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Provavelmente a coisa mais importante que já fiz este ano: mais um voto pela democracia. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/032/395/755/471/464/original/e86695e93f586649.jpg" alt="Comprovativo de voto antecipado" title="Comprovativo de voto antecipado"/></p>
</p>
</div>
</article>
<article id="bnd3k7q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#bnd3k7q">
<time class="dt-published" datetime="2024-03-02T19:33:26Z">
2024-03-02 19:33:26 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>The #RaceWhoKnowsJosephBookClub book for #March is "Anne of the Island", the third book of the 'Anne of Green Gables' series, and one that was written in less of a rush than the second.</p>
<p>So far, it is being better than the second but still less good than the first. While the second is forgettable, this one develops significantly Anne's life, and was the basis for many adaptations (which tended to skip all that comes from the second book). Let's see if my opinion of it doesn't change before I reach the end of if 😉</p>
<p>Oh, and as it happens, being a 'middle grade' book makes it eligible for #MiddleGradeMarch!</p>
<p>#Bookstodon <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/027/758/663/253/129/original/0fe9971e4128144e.jpg" alt="A picture of "Anne of the Island" (special collector's edition book), in front of a lightfire"/></p>
</p>
</div>
</article>
<article id="wekorxq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#wekorxq">
<time class="dt-published" datetime="2024-03-01T21:36:07Z">
2024-03-01 21:36:07 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>A new month? On a #Friday?</p>
<p>It's time for #fridayreads, and since we're now in #March, it is also time to start the #MarchMysteryMadness!</p>
<p>And of course, I am still doing #readchristie2024, this month's #book being "The Blue Train", which not only is a #mystery (duh!), but also fit for MMM's first prompt, "dressed to the nines".</p>
<p>#bookstodon <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/022/574/718/401/659/original/3b857ba5b11ebe50.jpg" alt="The first Portuguese edition of Agatha Christie's "The Mystery of the Blue Train"" title="The first Portuguese edition of Agatha Christie's "The Mystery of the Blue Train""/></p>
</p>
</div>
</article>
<article id="6rwfdba" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#6rwfdba">
<time class="dt-published" datetime="2024-03-01T14:05:08Z">
2024-03-01 14:05:08 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Um cabeça de lista da #AD a dizer que as #AlteraçõesClimáticas são falsas, e temos previsão de ser esta a coligação mais votada...</p>
<p>#ptpol</p>
</p>
</div>
</article>
<article id="637zrfq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#637zrfq">
<time class="dt-published" datetime="2024-03-01T13:24:10Z">
2024-03-01 13:24:10 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>⏳ Extended deadline: contribute to #CREATe’s research on #TechnologicalProtectionMeasures for KR21 until 6 March</p>
<p>#TPM #DRM</p>
<p>Fill out this survey NOW 👉<br/>
<a href="https://uofg.qualtrics.com/jfe/form/SV_6sYj1ZyZbb6Ui6q" rel="nofollow">https://uofg.qualtrics.com/jfe/form/SV_6sYj1ZyZbb6Ui6q</a></p>
</p>
</div>
</article>
<article id="zmxzu7a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#zmxzu7a">
<time class="dt-published" datetime="2024-02-28T08:49:11Z">
2024-02-28 08:49:11 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 09 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/008/227/992/607/463/original/9fbec27414bdaebf.jpg" alt="GGGOLDDD's PTST 12" The record is multisleeved, and the picture shows one sliding out of the other." title="GGGOLDDD's PTST 12" The record is multisleeved, and the picture shows one sliding out of the other."/></p>
</p>
</div>
</article>
<article id="ujruxaa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">