-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwtxt-2024Q2.html
More file actions
3321 lines (3133 loc) · 161 KB
/
twtxt-2024Q2.html
File metadata and controls
3321 lines (3133 loc) · 161 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-2024Q2.txt">feed of twts</a>, from the 2nd quarter of 2024.
You can also <a href="twtxt-2024Q1.html">find the previous quarter (2024 Q1)</a>, or a <a href="twtxt-2024H2.html">more recent feed</a> (for the 2nd half of 2024).
</div>
</header>
<main class="container">
<article id="xdinvka" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#xdinvka">
<time class="dt-published" datetime="2024-06-30T19:37:28+01:00">
2024-06-30 18:37:28 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Neste mês, a @ANSOL está de volta às páginas da #PCGuia: eu com um artigo sobre o @ardour<em>@ardour</em>, o @hugopeixoto a falar sobre a #EMEL.</p>
<p>Já nas bancas! <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/706/985/470/902/953/original/5a1e6bc386691333.jpg" alt="Uma foto da "secção Open Source" da PCGuia de Julho de 2024, mostrando parcialmente o artigo "Usar o Ardour para fazer produção de Áudio"" title="Uma foto da "secção Open Source" da PCGuia de Julho de 2024, mostrando parcialmente o artigo "Usar o Ardour para fazer produção de Áudio""/></p>
</p>
</div>
</article>
<article id="3fsomaq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#3fsomaq">
<time class="dt-published" datetime="2024-06-29T17:22:54+01:00">
2024-06-29 16:22:54 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#juststopoil #climate #protesters saw their homes raided and were arrested because, of course, how could our society survive with people on the loose trying to save the planet?</p>
<p>Here is the movement's written reply to this:<br/>
<a href="https://juststopoil.org/2024/06/28/we-refuse-to-die-for-fossil-fuels-just-stop-oil-response-to-police-raids-resulting-in-at-least-13-arrests/" rel="nofollow">https://juststopoil.org/2024/06/28/we-refuse-to-die-for-fossil-fuels-just-stop-oil-response-to-police-raids-resulting-in-at-least-13-arrests/</a></p>
</p>
</div>
</article>
<article id="dordt7q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#dordt7q">
<time class="dt-published" datetime="2024-06-28T12:15:17+01:00">
2024-06-28 11:15:17 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>TIL, there's someone that keeps a maintained list of telnet services, including talkers!</p>
<p><a href="https://thedubber.altervista.org/other/telnetlist.htm" rel="nofollow">https://thedubber.altervista.org/other/telnetlist.htm</a></p>
</p>
</div>
</article>
<article id="c2p7n2a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#c2p7n2a">
<time class="dt-published" datetime="2024-06-27T16:31:38+01:00">
2024-06-27 15:31:38 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Aqui o cartaz a sério:</p>
<p>#ADC + #Spreader no #Porto <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/689/293/230/049/066/original/9c06603f64961009.jpeg" alt="ADC 35 anos Uma História em Movimento 16H30: Apresentação do livro de Paulo Coimbra Martins e Carlos Paes, com a preença do autor Paulo Coimbra Martins 17H30: Documentário de Fátima Rocha 19H: Concerto com Spreader 13 Julho 2024 16H Socorro Rua Guedes de Azevedo, nº44, 4000-271 Porto Entrada: 5 rebites Organização: ADC, Socorro" title="ADC 35 anos Uma História em Movimento 16H30: Apresentação do livro de Paulo Coimbra Martins e Carlos Paes, com a preença do autor Paulo Coimbra Martins 17H30: Documentário de Fátima Rocha 19H: Concerto com Spreader 13 Julho 2024 16H Socorro Rua Guedes de Azevedo, nº44, 4000-271 Porto Entrada: 5 rebites Organização: ADC, Socorro"/></p>
</p>
</div>
</article>
<article id="gt54m4a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#gt54m4a">
<time class="dt-published" datetime="2024-06-26T22:05:01+01:00">
2024-06-26 21:05:01 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>When even one-syllable words are too hard:</p>
<p>@davidho<em>@davidho</em> <a href="https://mastodon.world/@davidho/112675105624547968" rel="nofollow">https://mastodon.world/@davidho/112675105624547968</a></p>
</p>
</div>
</article>
<article id="ocmnfqa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ocmnfqa">
<time class="dt-published" datetime="2024-06-26T21:56:36+01:00">
2024-06-26 20:56:36 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Cá em casa já temos o documentário, mas para quem prefere o grande ecrã...</p>
<p>👉 PORTO<br/>
ADC 35 ANOS - UMA HISTÓRIA E MOVIMENTO<br/>
Documentário e Livro/Catálogo que abordam os 35 anos de existência da editora ANTI-DEMOS-CRACIA.<br/>
👉 Depois de no passado dia 15, o Documentário realizado por Fátima Rocha ter sido exibido no Cine-Teatro do Ginásio Clube de Corroios, é a vez de seguir viagem, em direcção ao Norte, mais concretamente ao Porto, para ser exibido na SOCORRO.<br/>
O evento será no dia 13 de Julho, a partir das 16H, e conta para além do Documentário, com a apresentação do Livro/Catálogo de autoria de Paulo Coimbra Martins e Carlos Paes, e que será apresentado pelo autor Paulo Coimbra Martins.<br/>
O final da tarde vai trazer-nos um concerto dos SPREADER.<br/>
Coloquem na agenda…<br/>
📅 13 de Julho | 16H | Socorro | Rua Guedes de Azevedo, nº. 44, 4000-271 Porto <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/684/910/257/622/603/original/1d2a0246cc580e5a.jpg" alt="Foto da caixa do documentário à frente de uma televisão onde o documentário está a passar - a mostrar uma lista de bandas relacionadas com a editora,vrais como os Kokori" title="Foto da caixa do documentário à frente de uma televisão onde o documentário está a passar - a mostrar uma lista de bandas relacionadas com a editora,vrais como os Kokori"/> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/684/910/310/153/118/original/2dc54e8c64f27261.jpg" alt="Cartaz do evento descrito neste toot. Mostra a cada do documentário, a capa do catálogo e a capa do CD "351" dos Spreader." title="Cartaz do evento descrito neste toot. Mostra a cada do documentário, a capa do catálogo e a capa do CD "351" dos Spreader."/></p>
</p>
</div>
</article>
<article id="yoahgsa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#yoahgsa">
<time class="dt-published" datetime="2024-06-25T15:57:53+01:00">
2024-06-25 14:57:53 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 26 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/677/835/224/047/416/original/b2765220ec50bf87.jpg" alt="Two sealed copies of "Cães Danados - Raindogs Cover Songs" on CD, one showing the front and the other the back cover. They are in front of a coffee machine and next to a coffee cup. The thirteenth track, from Kokori, is named "Coffee"." title="Two sealed copies of "Cães Danados - Raindogs Cover Songs" on CD, one showing the front and the other the back cover. They are in front of a coffee machine and next to a coffee cup. The thirteenth track, from Kokori, is named "Coffee"."/></p>
</p>
</div>
</article>
<article id="4xdm6hq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#4xdm6hq">
<time class="dt-published" datetime="2024-06-24T18:39:19+01:00">
2024-06-24 17:39:19 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#Zigurfest, é já daqui a um mês!</p>
<p><a href="https://Zigurfest.com" rel="nofollow">https://Zigurfest.com</a> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/672/815/947/147/926/original/6cea197ebab0f214.jpg" alt="O cartaz do ZigurFest 2024" title="O cartaz do ZigurFest 2024"/></p>
</p>
</div>
</article>
<article id="cgk6efa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#cgk6efa">
<time class="dt-published" datetime="2024-06-23T16:44:22+01:00">
2024-06-23 15:44:22 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Oh, and it fits the monthly reading prompt: #historical</p>
</p>
</div>
</article>
<article id="hd2t5fq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#hd2t5fq">
<time class="dt-published" datetime="2024-06-23T16:41:48+01:00">
2024-06-23 15:41:48 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#June 's #readchristie2024 is "And Then There Were None", one of the most exquisite Christie novels.</p>
<p>In the picture, a Portuguese and an English editions - in Portuguese the #book title was translated to "Convite para a Morte" (invitation to death).</p>
<p>#bookstodon <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/666/670/520/154/085/original/789f1312a3e60379.jpg" alt="On the left, the Portuguese edition, from Colecção Vampiro. In the cover, death holds a quill ansd a balance, wears a cape and has a gramophone as its head. On the right, an English edition. In the cover, stormy waves wash the island's cliff, with seagulls flying nearby." title="On the left, the Portuguese edition, from Colecção Vampiro. In the cover, death holds a quill ansd a balance, wears a cape and has a gramophone as its head. On the right, an English edition. In the cover, stormy waves wash the island's cliff, with seagulls flying nearby."/></p>
</p>
</div>
</article>
<article id="vhp6e2q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vhp6e2q">
<time class="dt-published" datetime="2024-06-21T13:29:14+01:00">
2024-06-21 12:29:14 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Jornalista: "a questão da inconstitucionalidade..."<br/>
PM: "esses pequenos pormenores falaremos noutra ocasião"<br/>
Outro jornalista: "a questão da inconstitucionalidade é um pequeno promenor?"<br/>
PM: "ah, eu agora... haverá outros momentos para falar sobre isso, sim?"</p>
</p>
</div>
</article>
<article id="64try2q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#64try2q">
<time class="dt-published" datetime="2024-06-21T12:57:01+01:00">
2024-06-21 11:57:01 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>As time passes and #masking grows rarer, those of us who still wear #masks get more often reactions of fear or even hostility.</p>
<p>So this is my friendly reminder: when you see someone wearing a mask, if that mask is doing something to you, it is providing safety.</p>
</p>
</div>
</article>
<article id="stklqwq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#stklqwq">
<time class="dt-published" datetime="2024-06-21T12:31:40+01:00">
2024-06-21 11:31:40 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Still doing the #RaceWhoKnowsJosephBookClub challenge: my #FridayReads book this week is the eigth and last in the Anne of Green Gables Novels, "Rilla of Ingleside". I'm still not done with it, but I am already certain it one of the best of the lot (with the first). Quite different from the other, this is a war novel - and the only book written by a female Canadian author that has lived #WWI writing about it. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/654/362/338/568/861/original/983e5a005b8ce045.jpg" alt="A guy (me) seated on a chair, reading a book (Rilla of Ingleside)."/></p>
</p>
</div>
</article>
<article id="6cclybq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#6cclybq">
<time class="dt-published" datetime="2024-06-21T12:12:33+01:00">
2024-06-21 11:12:33 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Another #qotd, also about elections in #Canada (now in 1917) <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/654/293/466/226/082/original/39e3f6cf73048994.jpg" alt=""Conscription is the real issue at stake and it will be the most exciting election we ever had. All the women 'who have got de age'—to quote Jo Poirier, and who have husbands, sons, and brothers at the front, can vote. Oh, if I were only twenty-one! Gertrude and Susan are both furious because they can't vote."" title=""Conscription is the real issue at stake and it will be the most exciting election we ever had. All the women 'who have got de age'—to quote Jo Poirier, and who have husbands, sons, and brothers at the front, can vote. Oh, if I were only twenty-one! Gertrude and Susan are both furious because they can't vote.""/></p>
</p>
</div>
</article>
<article id="n2d27hq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#n2d27hq">
<time class="dt-published" datetime="2024-06-21T02:24:49+01:00">
2024-06-21 01:24:49 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/651/988/880/742/240/original/93a8495573de3efd.jpg" alt=""I wonder," said Miss Oliver, "if humanity will be any happier because of aeroplanes. It seems to me that the sum of human happiness remains much the same from age to age, no matter how it may vary in distribution, and that all the 'many inventions' neither lessen nor increase it."" title=""I wonder," said Miss Oliver, "if humanity will be any happier because of aeroplanes. It seems to me that the sum of human happiness remains much the same from age to age, no matter how it may vary in distribution, and that all the 'many inventions' neither lessen nor increase it.""/></p>
</p>
</div>
</article>
<article id="u4vzfra" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#u4vzfra">
<time class="dt-published" datetime="2024-06-21T00:37:02+01:00">
2024-06-20 23:37:02 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>"The truth is… the battle for 1.5 degrees will be won or lost in the 2020s – under the watch of leaders today.</p>
<p>All depends on the decisions those leaders take – or fail to take – especially in the next eighteen months."</p>
<p><a href="https://www.un.org/sg/en/content/sg/speeches/2024-06-05/secretary-generals-special-address-climate-action-moment-of-truth%C2%A0" rel="nofollow">https://www.un.org/sg/en/content/sg/speeches/2024-06-05/secretary-generals-special-address-climate-action-moment-of-truth%C2%A0</a></p>
<p>#climate</p>
</p>
</div>
</article>
<article id="qoirxsq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#qoirxsq">
<time class="dt-published" datetime="2024-06-20T23:19:10+01:00">
2024-06-20 22:19:10 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#musiquinta sobre #rancor ?</p>
<p>Esta não é das músicas favoritas de #JackOffJill (ainda que goste de toda a sua discografia), mas é a música perfeita para este tema:</p>
<p>Jack Off Jill - Nazi Halo<br/>
<a href="https://youtu.be/TYV0dIknhTA" rel="nofollow">https://youtu.be/TYV0dIknhTA</a></p>
</p>
</div>
</article>
<article id="fdh7zjq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#fdh7zjq">
<time class="dt-published" datetime="2024-06-19T14:39:16+01:00">
2024-06-19 13:39:16 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Next time you read or hear about someone claiming that a certain #AI tool is #Open (including those that claim to be Open themselves, or the tools that even have 'open' in their name or their companies' name), remember to check where they stand in here:</p>
<p><a href="https://mot.isitopen.ai/" rel="nofollow">https://mot.isitopen.ai/</a></p>
<p>Spoiler alert: there is no Open AI.</p>
<p>#OpenWashing</p>
</p>
</div>
</article>
<article id="nakiebq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#nakiebq">
<time class="dt-published" datetime="2024-06-19T11:54:05+01:00">
2024-06-19 10:54:05 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 25 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/642/906/670/197/155/original/8896155deb266e2a.jpg" alt="Kokori's "Release Candid Hate" special edition: besides the 7", it also comes with a square 5" that has an extra track." title="Kokori's "Release Candid Hate" special edition: besides the 7", it also comes with a square 5" that has an extra track."/></p>
</p>
</div>
</article>
<article id="bem7auq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#bem7auq">
<time class="dt-published" datetime="2024-06-16T22:14:59+01:00">
2024-06-16 21:14:59 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>The best non-fiction book I've read in 2023 was an academic (and expensive-ish) volume I decided to purchase after spending some time with it, going through it's pages, making sure it was as focused on the topics I was interested as I hoped it to be. If I had no prior access to it, I would have not risked buying it.</p>
<p>Of course, to "go through it before buying" I had to go through a library copy, and there is only one library you can hope to find a book like that: @internetarchive<em>@internetarchive</em>'s Open Library.</p>
<p>Unfortunately, while it keeps generating sales like the one I just told you about, libraries, and Internet Archive's Open Library in particular, are under attack - by publishers!</p>
<p>That is why I signed this petition, and I urge you to do the same:</p>
<p>@paulasimoes <a href="https://ciberlandia.pt/@paulasimoes/112628269030219736" rel="nofollow">https://ciberlandia.pt/@paulasimoes/112628269030219736</a></p>
<p>I have also decided today is a fine day to make a donation to the Internet Archive, an endeavor that deserves all my love ❤️</p>
</p>
</div>
</article>
<article id="k5a455q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#k5a455q">
<time class="dt-published" datetime="2024-06-16T02:30:51+01:00">
2024-06-16 01:30:51 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>History repeats.<br/>
#qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/623/701/773/923/099/original/3ef913096a22d46c.jpg" alt=""We all thought the war would be over in a few months then," said Rilla wistfully. "When I look back it seems so ridiculous that we ever could have supposed it." "And now, two years later, it is no nearer the end than it was then," said Miss Oliver gloomily. Susan clicked her knitting-needles briskly. "Now, Miss Oliver, dear, you know that is not a reasonable remark. You know we are just two years nearer the end, whenever the end is appointed to be."" title=""We all thought the war would be over in a few months then," said Rilla wistfully. "When I look back it seems so ridiculous that we ever could have supposed it." "And now, two years later, it is no nearer the end than it was then," said Miss Oliver gloomily. Susan clicked her knitting-needles briskly. "Now, Miss Oliver, dear, you know that is not a reasonable remark. You know we are just two years nearer the end, whenever the end is appointed to be.""/></p>
</p>
</div>
</article>
<article id="2qqckla" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2qqckla">
<time class="dt-published" datetime="2024-06-15T19:22:13+01:00">
2024-06-15 18:22:13 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Viva a semana de quatro dias!<br/>
Ou dois, ou seis, ou lá o que é. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/622/016/110/104/641/original/e5f8ef2e7b78369a.jpg" alt="Foto de um sinal que diz: "Encerrado Sexta e Sábado Voltamos Terça-Feira"" title="Foto de um sinal que diz: "Encerrado Sexta e Sábado Voltamos Terça-Feira""/></p>
</p>
</div>
</article>
<article id="cpazdva" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#cpazdva">
<time class="dt-published" datetime="2024-06-15T19:13:31+01:00">
2024-06-15 18:13:31 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Cães Danados - Raindogs Cover Songs</p>
<p>CD disponível pela primeira vez hoje, em Corroios:</p>
<p>👉<br/>
ADC 35 ANOS - UMA HISTÓRIA EM MOVIMENTO<br/>
15 de Junho - Ginásio Clube de Corroios</p>
<p>PROGRAMA:<br/>
21:00H - Abertura de portas</p>
<p>21:30 - Documentário ADC 35 ANOS - UMA HISTÓRIA EM MOVIMENTO, com realização de Fátima Rocha, e que aborda através de testemunhos, sons e imagens, os 35 anos de existência da editora sediada na Aldeia de Paio Pires.</p>
<p>23:00 - concerto de AMEEBA, banda de Lisboa, que irá apresentar pela primeira vez, ao vivo, temas do seu segundo álbum “Ad Mortem Festinamus” que irá ser editado em Setembro.</p>
<p>🛒 ADC Records - Loja de Música<br/>
<a href="https://www.adc-records.com/product/c-a-es-danados-raindogs-cover-songs-v-a" rel="nofollow">https://www.adc-records.com/product/c-a-es-danados-raindogs-cover-songs-v-a</a></p>
<p>🎧 ANTI-DEMOS-CRACIA<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>Conta com o meu contributo com #kokori sobre a forma de 0xC0FFEE. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/621/981/053/723/979/original/bedccfcbb7d0bada.jpg" alt="Cães Danados, ao vivo e à solta (isto é, dois exemplares do CD físico a serem mostrados para a câmara, frente e verso)."/></p>
</p>
</div>
</article>
<article id="mupl6aa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#mupl6aa">
<time class="dt-published" datetime="2024-06-15T16:32:00+01:00">
2024-06-15 15:32:00 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Os "Sons do Douro" estão de regresso, e a nova formação tocou hoje um belo (mas curto) concerto na Feira do Livro de Lamego. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/621/340/725/235/042/original/6fd2725343595328.jpg" alt="Toquem-se as pipas" title="Toquem-se as pipas"/> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/621/341/328/805/469/original/3a2208522b208337.jpg" alt="Pipas e cestos de vime como bombos e reco-reco." title="Pipas e cestos de vime como bombos e reco-reco."/> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/621/341/540/823/341/original/3d690ba445d50230.jpg" alt="Sons do Douro na Alameda" title="Sons do Douro na Alameda"/></p>
</p>
</div>
</article>
<article id="o55lbxq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#o55lbxq">
<time class="dt-published" datetime="2024-06-13T17:49:42+01:00">
2024-06-13 16:49:42 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>A #musiquinta desta semana é sobre #amor, e a escolha da música não foi nada difícil:</p>
<p><a href="https://youtu.be/uD_StPHlsYM" rel="nofollow">https://youtu.be/uD_StPHlsYM</a></p>
<p>"I got love songs in my head<br/>
Killing us away"</p>
</p>
</div>
</article>
<article id="wyc53ua" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#wyc53ua">
<time class="dt-published" datetime="2024-06-13T17:44:47+01:00">
2024-06-13 16:44:47 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Era uma Vez um Festival Literário-Poético.<br/>
Veio uma Feira do Livro, e Zás!, comeu-o.</p>
<p>Este ano #Lamego ganha uma feira do Livro (até agora só havia a Feira do Livro do Douro), mas a "Cidade Poema" passa a estsr englobada nele. Não me parece mal, e até pode parecer-me bem - veremos.</p>
<p>Mesmo, porque há muito para ver. Exemplos:</p>
<p>14 JUNHO - 6ª<br/>
17h30| Mesa redonda: “O Papel da Literatura na Formação da Identidade Cultural”<br/>
21h00| Concerto: Xinas Late</p>
<p>15 JUNHO - SÁBADO<br/>
15h00| Sons do Douro<br/>
21h00| Academia de Música de Lamego (Concertos Primavera)</p>
<p>18 JUNHO, 3ª<br/>
21h00| Grupo de Cavaquinhos da Universidade Sénior; Grupo de Cavaquinhos da Associação Desportiva e Recreativa de Ferreirim</p>
<p>19 JUNHO, 4ª<br/>
21h00|Trança</p>
<p>20 JUNHO, 5ª<br/>
21h30| Tenho Pena de acabar assim<br/>
Teatro/declamação<br/>
Leitura encenada a partir da Obra de Miguel Torga</p>
<p>21 JUNHO, 6ª<br/>
18h – Conversas Informais com Alberto Manguel (Argentina)<br/>
21h30| Yosune Trio (Venezuela)<br/>
Concerto</p>
<p>22 JUNHO SÁBADO<br/>
16h – Os meus livros - Eu e a leitura<br/>
Sessão conferência<br/>
18h15| Mesa redonda: 25 de Abril na Literatura Portuguesa<br/>
21h00| Academia de Música de Lamego (Concertos Primavera)<br/>
22h – Censurados: A música que desafio a ditadura (por Rui David)</p>
<p>23 JUNHO DOMINGO<br/>
17h00| Oficina criativa (Carlos Costa)<br/>
21h00| Quinto Império <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/610/251/068/708/959/original/d65d80cc382007cf.png" alt="Poster da Feira do Livro" title="Poster da Feira do Livro"/> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/610/253/565/336/485/original/9817107d82516dba.jpg" alt="Poster da Cidade Poema" title="Poster da Cidade Poema"/></p>
</p>
</div>
</article>
<article id="fxbxqhq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#fxbxqhq">
<time class="dt-published" datetime="2024-06-13T15:28:28+01:00">
2024-06-13 14:28:28 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>An interesting summary of the political chaos in #France since the European Elections:</p>
<p><a href="https://threadreaderapp.com/thread/1801114239572328663.html" rel="nofollow">https://threadreaderapp.com/thread/1801114239572328663.html</a></p>
</p>
</div>
</article>
<article id="gt4wluq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#gt4wluq">
<time class="dt-published" datetime="2024-06-10T18:42:42+01:00">
2024-06-10 17:42:42 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>"Los síntomas siguen siendo los mismos (tos, algo de fiebre, debilidad muscular, estornudos en algunas ocasiones, dolor de cabeza) y las medidas para prevenirlo no han cambiado: mejor aire libre que interiores masificados, buena ventilación, mascarillas en caso de síntomas o para personas vulnerables cuando tengan interacciones sociales."</p>
<p>#COVID19 #Spain #mask</p>
<p>@COVID19_DISEASE<em>@COVID19_DISEASE</em> <a href="https://mastodon.social/@COVID19_DISEASE/112593326358588927" rel="nofollow">https://mastodon.social/@COVID19_DISEASE/112593326358588927</a></p>
</p>
</div>
</article>
<article id="susouoq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#susouoq">
<time class="dt-published" datetime="2024-06-10T12:18:29+01:00">
2024-06-10 11:18:29 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Who could have predicted... <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/592/040/903/071/028/original/4f86ac5ec6b19796.jpg" alt="A photo of the inside of the BV CD, in front of a computer screen. The CD says "lyrics at bornvillain.com", the computer screen points out that the website no longer exists." title="A photo of the inside of the BV CD, in front of a computer screen. The CD says "lyrics at bornvillain.com", the computer screen points out that the website no longer exists."/></p>
</p>
</div>
</article>
<article id="nze2zga" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#nze2zga">
<time class="dt-published" datetime="2024-06-10T12:10:52+01:00">
2024-06-10 11:10:52 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 24 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/591/997/845/041/113/original/6d22519e61af086a.jpg" alt="A picture of Marilyn Manson's Born Villain in front of a bigger Manson picture. Both are quite reflective as they're wrapped in plastic, but the CD has a sticker saying: Inklusive der single "NO REFLECTION" und dem BONUSTRACK "YOU'RE SO VAIN" While "You're So Vain" is announced as a bonus track, I challenge you to find an edition of this record without it (spoiler alert: as far as I know, there isn't one, and I've looked for it - at lot)."/></p>
</p>
</div>
</article>
<article id="dhwwu4q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#dhwwu4q">
<time class="dt-published" datetime="2024-06-10T10:11:16+01:00">
2024-06-10 09:11:16 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>There has to be a special kind of hell for spam callers, especially those calling you at sunrise, on a holiday.</p>
</p>
</div>
</article>
<article id="godzf4q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#godzf4q">
<time class="dt-published" datetime="2024-06-09T14:33:27+01:00">
2024-06-09 13:33:27 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Ainda só são 14:30 e já estou farto de ouvir falar "do vencedor".</p>
<p>Metam na cabeça: de Portugal hoje vão sair 21 vencedores, não um.</p>
</p>
</div>
</article>
<article id="vedqema" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vedqema">
<time class="dt-published" datetime="2024-06-08T18:21:37+01:00">
2024-06-08 17:21:37 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>@OCRbot<em>@OCRbot</em> pt</p>
</p>
</div>
</article>
<article id="gpby7jq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#gpby7jq">
<time class="dt-published" datetime="2024-06-08T13:38:00+01:00">
2024-06-08 12:38:00 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>The record industry was never better, in terms of revenue: from physical to digital, then from ownership to streaming, it is having exceptional revenue growth, and never was as profitable as today.</p>
<p>In the process, albuns have way to single and EPs, in a tendency to "consume more, lighter, faster". Only now, even a single is being too much for the consumer's attention span:</p>
<p>"Younger consumers are spending so much time on short-clip platforms that it is impacting the amount of time they’re spending listening to full songs."</p>
<p>What the industry is trying to do about it is, obviously, to monetize it better. After all we all it record industry but we can call it music industry too, and as you can see through all that I wrote, the focus is on 'industry', not in the music, musicians or the art. Those, I'm afraid, will remain losing and forgotten, as long as "the industry" manages to keep rising their profit without including their needs in the conversation.</p>
<p>#music</p>
</p>
</div>
</article>
<article id="e4kmwfa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#e4kmwfa">
<time class="dt-published" datetime="2024-06-07T13:32:05+01:00">
2024-06-07 12:32:05 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>É isto que está em risco nas eleições deste domingo: passarmos a ter um parlamento europeu sem Portugal à esquerda nem nos verdes.</p>
<p>Ide votar.<br/>
#europeias24 #sondagem <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/575/338/066/407/947/original/95104394ba6892ce.jpg" alt="Sondagem da Universidade Católica: * IL a eleger 1 ou 2 * CDU a eleger 0 ou 1 * Livre a eleger 0 ou 1 * BE a eleger 0 ou 1" title="Sondagem da Universidade Católica: * IL a eleger 1 ou 2 * CDU a eleger 0 ou 1 * Livre a eleger 0 ou 1 * BE a eleger 0 ou 1"/></p>
</p>
</div>
</article>
<article id="ynbytaq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ynbytaq">
<time class="dt-published" datetime="2024-06-06T16:29:45+01:00">
2024-06-06 15:29:45 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 23 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/570/375/720/243/243/original/a87ee3e234385351.jpg" alt="Brave's Searching For The Sun (CD)"/></p>
</p>
</div>
</article>
<article id="b7xp5ca" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#b7xp5ca">
<time class="dt-published" datetime="2024-06-06T11:40:31+01:00">
2024-06-06 10:40:31 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Fortunately, there is noyb:<br/>
<a href="https://mastodon.social/@noybeu/112568210826004406" rel="nofollow">https://mastodon.social/@noybeu/112568210826004406</a></p>
</p>
</div>
</article>
<article id="yy3lkza" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#yy3lkza">
<time class="dt-published" datetime="2024-06-04T12:27:34+01:00">
2024-06-04 11:27:34 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>(surpreendendo ninguém) houve falhas da internet de algumas escolas durante as provas de aferição, deixando os alunos frustrados.</p>
<p><a href="https://www.cmjornal.pt/sociedade/detalhe/falhas-na-internet-bloqueiam-provas-de-afericao-do-8-ano-de-milhares-de-alunos-em-portugal" rel="nofollow">https://www.cmjornal.pt/sociedade/detalhe/falhas-na-internet-bloqueiam-provas-de-afericao-do-8-ano-de-milhares-de-alunos-em-portugal</a></p>
</p>
</div>
</article>
<article id="no7u5fq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#no7u5fq">
<time class="dt-published" datetime="2024-06-03T00:41:37+01:00">
2024-06-02 23:41:37 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>So I tried to reject, of course. I followed a link into Facebook, and things get even more ridiculous: <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/549/651/960/371/353/original/163fa0f70a6421e1.jpg" alt="A screenshot of the text seen after the link, since copy/paste isn't allowed. In summary, it says: * you have the right to object * submit this form to exercise the right * the objection will be reviewed "in accordance with relevant data protection laws" * IF the request is honored, it will be applied going forward * they still may use info about you, even if you object or don't use their products and services * you can learn about unrelated stuff on their Privacy Policy" title="A screenshot of the text seen after the link, since copy/paste isn't allowed. In summary, it says: * you have the right to object * submit this form to exercise the right * the objection will be reviewed "in accordance with relevant data protection laws" * IF the request is honored, it will be applied going forward * they still may use info about you, even if you object or don't use their products and services * you can learn about unrelated stuff on their Privacy Policy"/></p>
</p>
</div>
</article>
<article id="ndoansq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ndoansq">
<time class="dt-published" datetime="2024-06-03T00:32:22+01:00">
2024-06-02 23:32:22 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Remember a few months ago when I was ranting about #Meta's bullying tactics regarding their new terms of services? Well, I did not get myself rid yet of my Facebook account (my bad), and they're at it again.</p>
<p>Just savor the beauty in this sentence that is part of their email to EU residents:</p>
<p>"If your objection is honored, it will be applied going forward."</p>
</p>
</div>
</article>
<article id="lb4eqha" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#lb4eqha">
<time class="dt-published" datetime="2024-06-02T17:00:28+01:00">
2024-06-02 16:00:28 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#ISOC, #APDSI, @d3 e #AP2SI juntaram-se para organizar um debate para as eleições europeias sobre tecnologia.</p>
<p>Com maior sucesso que a @ansol<em>@ansol</em>, que na @FestaSoftwareLivre<em>@FestaSoftwareLivre</em> no ano passado só conseguiu contar com a participação de @BlocodeEsquerda<em>@BlocodeEsquerda</em> e #CDU, este debate mais recente contou com a presença de #AD, @BlocodeEsquerda<em>@BlocodeEsquerda</em>, #CDU e @LIVRE<em>@LIVRE</em>.</p>
<p>Os tópicos:</p>
<ul>
<li>#ChatControl<br/>
• São o #RGPD e o #DSA suficientes?<br/>
• Acesso universal à banda larga<br/>
• #videovigilância<br/>
• #Desinformação</li>
</ul>
<p><a href="https://youtu.be/pdFwEm8EU_s" rel="nofollow">https://youtu.be/pdFwEm8EU_s</a></p>
</p>
</div>
</article>
<article id="jiyesna" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#jiyesna">
<time class="dt-published" datetime="2024-06-02T13:40:30+01:00">
2024-06-02 12:40:30 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Está nas bancas a #PCGuia deste mês, onde participo para falar um bocadinho sobre as #Europeias, ou, mais em particular, o contrato público ilegal na compra de equipamentos.</p>
<p>Muito bem acompanhado, estou páginas-meias com um artigo sobre #Jogos de #SoftwareLivre . <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/547/008/205/025/753/original/d3d02ebaa3832f28.jpg" alt="Uma foto de parte da página 25 da PCGuia. No lado esquerdo, parte de uma captura de ecrã do jogo "Mindustry". No lado direito, o início do artigo "Europeias", por Marcos Marado." title="Uma foto de parte da página 25 da PCGuia. No lado esquerdo, parte de uma captura de ecrã do jogo "Mindustry". No lado direito, o início do artigo "Europeias", por Marcos Marado."/></p>
</p>
</div>
</article>
<article id="7cxsbwq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#7cxsbwq">
<time class="dt-published" datetime="2024-05-30T13:12:06+01:00">
2024-05-30 12:12:06 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#musiquinta das aberturas?<br/>
Para mim tem de ser a do #Dallas, a minha primeira #cassette!</p>
<p><a href="https://youtu.be/wKloBLFeYOs" rel="nofollow">https://youtu.be/wKloBLFeYOs</a></p>
</p>
</div>
</article>
<article id="quxsp4q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#quxsp4q">
<time class="dt-published" datetime="2024-05-29T15:32:30+01:00">
2024-05-29 14:32:30 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#MaradoWeekly #WeeklyRecord Week 22 <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/524/856/383/344/299/original/a5cab4d8a57521b2.jpg" alt="It's a box, a book, a bag, a puzzle A cassette, a CD, a necklace, a double LP It's Igorrr's Spirituality And Distortion!" title="It's a box, a book, a bag, a puzzle A cassette, a CD, a necklace, a double LP It's Igorrr's Spirituality And Distortion!"/></p>
</p>
</div>
</article>
<article id="a56ov7q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#a56ov7q">
<time class="dt-published" datetime="2024-05-29T09:03:05+01:00">
2024-05-29 08:03:05 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Portugueses: entrámos em dívida com o planeta! ⚠️</p>
<p>Ontem assinalou-se o dia simbólico que marca o Overshoot Day Português, que significa que se todos consumissem como nós, seriam necessários 2,9 planetas para sustentar a humanidade. A partir de ontem, por isso, começámos a usar os recursos de 2025. ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀</p>
<p>É urgente fazer mudanças! ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀</p>
<p>Para além das ações coletivas e governamentais que devemos exigir, todos podemos contribuir individualmente. Algumas sugestões:</p>
<p>🌍 Escolher alimentos oriundos de agricultura sustentável e preferencialmente local;<br/>
🌍 Optar pela partilha de transporte ou utilização de transportes coletivos;<br/>
🌍 Adotar a economia circular comprando artigos em segunda mão, evitando desperdício.</p>
<p>Não esperes por 2025 para agir e faz a tua parte!</p>
<p>#Sustentabilidade #PegadaEcológica #MeioAmbiente #DiaDaSobrecarga #ZeroWaste #EconomiaCircular</p>
<p>Texto original da #Zero #MundoZero #onga #ong</p>
</p>
</div>
</article>
<article id="g26sp3a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#g26sp3a">
<time class="dt-published" datetime="2024-05-27T16:02:15+01:00">
2024-05-27 15:02:15 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>In #May, the #RaceWhoKnowsJosephBookClub book was "Rainbow Valley", the 7th of the Anne of Green Gables series, one that could work as a standalone, and the best (so far) other than the first. <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/513/642/313/379/069/original/3645bb6e067e0b6e.jpg" alt="Rainbow Valley, The Anne of Green Gables Novels #7. No Anne on the cover. Instead, we see a bunch of kids (about whom this book is all about, not Anne)."/></p>
</p>
</div>
</article>
<article id="v3daoqa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#v3daoqa">
<time class="dt-published" datetime="2024-05-27T00:14:49+01:00">
2024-05-26 23:14:49 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>(#omu7e4q) <a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> I added them manually 😇</p>
</p>
</div>
</article>
<article id="fvyl6qa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#fvyl6qa">
<time class="dt-published" datetime="2024-05-26T15:55:01+01:00">
2024-05-26 14:55:01 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>A #CoPilot almeja por em prática uma #distopia, a #Google tornou os resultados das pesquisas bem piores, e a #Microsoft vende #spyware como sendo uma nova funcionalidade.</p>
<p>A análise dos anúncios deste mês sobre #IA são, como não poderia deixar de ser, na #Shifter:</p>
<p><a href="https://shifter.pt/2024/05/e-esta-a-inovacao-que-esperamos-da-inteligencia-artificial/" rel="nofollow">https://shifter.pt/2024/05/e-esta-a-inovacao-que-esperamos-da-inteligencia-artificial/</a></p>
</p>
</div>
</article>
<article id="yhyhaxq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#yhyhaxq">
<time class="dt-published" datetime="2024-05-25T19:41:32+01:00">
2024-05-25 18:41:32 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>My twtxt feed has now been rotated, an archive for Q1 2024 can be seen here:<br/>
<a href="https://tilde.pt/~marado/twtxt-2024Q1.html" rel="nofollow">https://tilde.pt/~marado/twtxt-2024Q1.html</a></p>
</p>
</div>
</article>
<article id="rycwq3a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#rycwq3a">
<time class="dt-published" datetime="2024-05-25T19:08:08+01:00">
2024-05-25 18:08:08 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>(#alxjruq) <a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> I still check on it (and keep all my toots as twts) but as you can see from the delay on this reply, I don't check twts very often lately 💦</p>
</p>
</div>
</article>
<article id="lmats2q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#lmats2q">
<time class="dt-published" datetime="2024-05-25T18:48:52+01:00">
2024-05-25 17:48:52 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>Para os CEOs das tecnológicas, a distopia é o mais importante:</p>
<p><a href="https://shifter.pt/2024/05/para-os-ceos-das-tecnologicas-a-distopia-e-o-mais-importante/" rel="nofollow">https://shifter.pt/2024/05/para-os-ceos-das-tecnologicas-a-distopia-e-o-mais-importante/</a></p>
</p>
</div>
</article>
<article id="2ymlapq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2ymlapq">
<time class="dt-published" datetime="2024-05-25T16:27:54+01:00">
2024-05-25 15:27:54 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>#qotd <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/112/502/426/033/127/735/original/a871302f73c8a58d.jpg" alt=""Talvez seja possível que haja ainda alguma diskette perdida num lar Lamecense com um instalador de ICQ infectado com o seu trabalho..."" title=""Talvez seja possível que haja ainda alguma diskette perdida num lar Lamecense com um instalador de ICQ infectado com o seu trabalho...""/></p>
</p>
</div>
</article>
<article id="c5hdzaa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#c5hdzaa">
<time class="dt-published" datetime="2024-05-25T15:15:00+01:00">
2024-05-25 14:15:00 +0000 UTC
</time>
</a>
</div>
</div>
<div class="e-content">
<p><p>You say: 2024: o ano em que a Selva sobrevive ao ICQ<br/>
<15:13, 851:10, MindBoosterNoori></p>
</p>
</div>
</article>
<article id="ughhhma" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ughhhma">
<time class="dt-published" datetime="2024-05-23T15:48:21+01:00">
2024-05-23 14:48:21 +0000 UTC
</time>
</a>
</div>
</div>