-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwtxt-2023.html
More file actions
2908 lines (2751 loc) · 145 KB
/
twtxt-2023.html
File metadata and controls
2908 lines (2751 loc) · 145 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-2023.txt">feed of twts</a>, from mid-2023 to the end of that year.
You can also <a href="twtxt-2022.html">find the previous year (2022-2023)</a>, or a <a href="twtxt-2024Q1.html">more recent feed</a> (for the 1st quarter of 2024).
</div>
</header>
<main class="container">
<article id="5kaab3q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#5kaab3q">
<time class="dt-published" datetime="2023-12-31T11:19:11Z">
2023-12-31 11:19:11 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"What the history of #OpenBoot, #Phrack, @Mudge<em>@Mudge</em> & #Solaris, can teach us about the wisdom (or not) of #Apple’s building their #iPhone #security debugging-backdoor-NSA-hack thing"</p>
<p><a href="https://alecmuffett.com/article/108789" rel="nofollow">https://alecmuffett.com/article/108789</a></p>
</p>
</div>
</article>
<article id="tgduj7a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#tgduj7a">
<time class="dt-published" datetime="2023-12-27T19:45:32Z">
2023-12-27 19:45:32 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Mais #traduções: <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/654/091/398/052/966/original/cf6e59a1aa82f904.jpg" alt="O original, em Inglês: uma frase começada por "Y'know"." title="O original, em Inglês: uma frase começada por "Y'know"."/> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/654/091/477/954/266/original/031ae9564bf09db4.jpg" alt="A tradução, em Português: "Y'know" foi traduzido para "Eu sei"." title="A tradução, em Português: "Y'know" foi traduzido para "Eu sei"."/></p>
</p>
</div>
</article>
<article id="l4ia3ka" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#l4ia3ka">
<time class="dt-published" datetime="2023-12-27T08:55:40Z">
2023-12-27 08:55:40 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Insistindo nos erros do passado, #PSD volta a questionar o #TGV :</p>
<p><a href="https://expresso.pt/politica/crise/2023-12-26-PSD-prepara-caminho-para-se-afastar-do-TGV-Governo-para-avancar-consenso-caira-por-terra--ed2d85b5" rel="nofollow">https://expresso.pt/politica/crise/2023-12-26-PSD-prepara-caminho-para-se-afastar-do-TGV-Governo-para-avancar-consenso-caira-por-terra--ed2d85b5</a></p>
</p>
</div>
</article>
<article id="vxh4yua" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vxh4yua">
<time class="dt-published" datetime="2023-12-25T21:24:06Z">
2023-12-25 21:24:06 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#criseclimática:</p>
<p>Ciência: para não ultrapassar os 1.5°C temos de atingir neutralidade carbónica até 2040<br/>
PS: está tudo bem, estamos em condições de atingir neutralidade carbónica até 2045<br/>
PSD: mas isso não tem viabilidade económica!</p>
</p>
</div>
</article>
<article id="3hktfna" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#3hktfna">
<time class="dt-published" datetime="2023-12-25T19:44:40Z">
2023-12-25 19:44:40 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Hey, @eff<em>@eff</em> , I like you - I really do. So, when I got your email asking me to complete a survey, I was going to.</p>
<p>Instead, I'm tooting you my feedback - just a simple request, and a demonstration of disappointment: if you're asking people information by filling up a survey, please do not involve a third party - specially Microsoft. It is not just that I don't want to send any data to forms.office.com, I think you should not be asking/incentivising anyone to do so.</p>
<p>Here's a 49 pages list of why: <a href="https://www.eff.org/search/site/Microsoft" rel="nofollow">https://www.eff.org/search/site/Microsoft</a></p>
</p>
</div>
</article>
<article id="2kcrgia" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2kcrgia">
<time class="dt-published" datetime="2023-12-25T13:00:02Z">
2023-12-25 13:00:02 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Mais um toot sobre #traduções <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/641/167/722/676/014/original/dd7cb4ac9896e98a.jpg" alt="Em Inglês temos um "small thicket", e frutos "specially admirable". O bosque é "Christmas-tree"." title="Em Inglês temos um "small thicket", e frutos "specially admirable". O bosque é "Christmas-tree"."/> <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/641/167/904/623/411/original/3eb7b8f170055eeb.jpg" alt="Em Português temos um "maciço ou bosque espesso", e frutos "belos e bonitos". O bosque é "Natal"." title="Em Português temos um "maciço ou bosque espesso", e frutos "belos e bonitos". O bosque é "Natal"."/></p>
</p>
</div>
</article>
<article id="hiaul2q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#hiaul2q">
<time class="dt-published" datetime="2023-12-24T16:01:44Z">
2023-12-24 16:01:44 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Want something to read this day? What about a small #publicdomain story?</p>
<p>The #Nutcracker ballet is quite popular this season, but have you ever read Hoffman's original story?</p>
<p>You can, in #English, for free - find an #epub version here: <a href="https://www.mobileread.com/forums/showthread.php?t=269263" rel="nofollow">https://www.mobileread.com/forums/showthread.php?t=269263</a></p>
<p>Or the text/web format at #wikisource:<br/>
<a href="https://en.m.wikisource.org/wiki/Nutcracker_and_Mouse-King" rel="nofollow">https://en.m.wikisource.org/wiki/Nutcracker_and_Mouse-King</a></p>
<p>#joinin <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/636/226/752/553/675/original/c149bd8d2c0a259d.jpg" alt="A picture of the book in paper format (but a Portuguese edition)"/></p>
</p>
</div>
</article>
<article id="qx7lztq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#qx7lztq">
<time class="dt-published" datetime="2023-12-22T21:02:09Z">
2023-12-22 21:02:09 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Eurodeputados, Temporada 9, Episódio 45</p>
<p>É de ver (estará no RTP Play) para quem quiser ver quem é que acha que a #criseclimática é para resolver, e quem acha que é para ignorar.</p>
</p>
</div>
</article>
<article id="ugz3azq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ugz3azq">
<time class="dt-published" datetime="2023-12-22T17:33:21Z">
2023-12-22 17:33:21 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#2023 hasn't been great, but at least it brought us #kokori #album #rootkit on #CD. Great, right?</p>
<p>Well it was possible to make it even better: right at the end of the year, a new #GreyClover #compilation CD, named #33 and dedicated to #Portuguese #music, was released - and you can get your CD here:</p>
<p><a href="https://www.adc-records.com/product/33-v-a" rel="nofollow">https://www.adc-records.com/product/33-v-a</a></p>
<p>It includes - you guessed it - a new #kokori track, and this time we have been mixing #Sieben!</p>
</p>
</div>
</article>
<article id="win4dqq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#win4dqq">
<time class="dt-published" datetime="2023-12-22T13:15:05Z">
2023-12-22 13:15:05 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Tenho o hábito irritante de comentar artigos de opinião sobre o #VotoElectrónico , desmontando os seus argumentos. Mas hoje não tenho paciência: se eles não se dão ao trabalho de estudar a matéria sobre a qual comentam, porque devo eu fazer o trabalho deles?</p>
<p>Do "voto papellum" hoje publicado no expresso, resumo-o todo a só uma citação:</p>
<p>"Em 2019 houve mais um projecto-piloto de votação eletrónica presencial, desta vez em Évora, nas eleições europeias. A adesão foi expressiva e a segurança do processo foi auditada pela Polícia Judiciária, MAI e Universidade do Minho. Um sucesso."</p>
<p>Um sucesso! O problema é que a experiência de Évora foi um desastre.</p>
<p>Não precisam de se fiar em mim, foi a #CNPD que o disse. "Protecção de Dados arrasa voto eletrónico", foi o título no Público, enquanto a TSF dizia que "Até o secretismo ficou em causa. Parecer arrasa experiência de voto eletrónico promovida pelo Governo". O problema não foi um, nem foi um molho de coisas pouco graves. Não. Houve falta de anonimato no voto. Máquinas com selos rasgados. Depois do voto houve acesso aos dados. Num inúmero conjunto de problemas, a Comissão Nacional de Protecção de Dados enlencou várias falhas que classificou de inadmissíveis.</p>
<p>Mas enquanto continuarmos a ignorar o que não nos convém, o debate sobre o tema não nos leva a lado nenhum.</p>
</p>
</div>
</article>
<article id="6tctjra" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#6tctjra">
<time class="dt-published" datetime="2023-12-21T09:05:53Z">
2023-12-21 09:05:53 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"Solstice Stream 2023" is this year's name for the streamed Solstice algorithmic music festival to celebrate, well, the solstice.</p>
<p>A two days music festival, it starts in one hour! <a href="https://solstice.toplap.org/" rel="nofollow">https://solstice.toplap.org/</a></p>
<p>I won't be able to perform this year, but while you wait, you can watch my performance last year, here:<br/>
<a href="https://youtu.be/NSjgJyNJl4M" rel="nofollow">https://youtu.be/NSjgJyNJl4M</a></p>
<p>#solstice #tidalcycles #festival #music #Merankorii</p>
</p>
</div>
</article>
<article id="wsfjnpa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#wsfjnpa">
<time class="dt-published" datetime="2023-12-20T12:51:33Z">
2023-12-20 12:51:33 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"esta é a sina de ativistas, cientistas e comunidades por todo o mundo: repetir os horrores que os países ricos ainda têm o privilégio de ignorar"</p>
<p>O artigo da @shifterpt<em>@shifterpt</em> sobre a #COP28:<br/>
<a href="https://shifter.pt/2023/12/cop28-a-megalomania-nunca-sera-sustentavel/" rel="nofollow">https://shifter.pt/2023/12/cop28-a-megalomania-nunca-sera-sustentavel/</a></p>
</p>
</div>
</article>
<article id="3nnmmwa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#3nnmmwa">
<time class="dt-published" datetime="2023-12-20T09:53:23Z">
2023-12-20 09:53:23 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Da #Zero:</p>
<p>"💭 Imagina o seguinte cenário: é aprovada uma importante lei para fazer face à escalada da crise climática.</p>
<p>E até são cumpridos alguns dos seus pontos, mas se analisarmos com cuidado… Falta ambição na execução 🙁</p>
<p>Não precisas de imaginar mais: porque é a realidade da Lei de Bases do Clima em Portugal!</p>
<p>Um olhar minimamente atento deteta logo algumas destas falhas:<br/>
⏰ A falta da criação do Conselho de Ação Climática, que serve de desculpa para não avançarem com os Orçamentos de Carbono para o período 2023-2025 e para o quinquénio 2025-2030<br/>
📜 O atraso da apresentação do relatório de avaliação inicial de impacte climático (sim, leste bem - inicial!)<br/>
🤷 Ou o papel pouco claro da participação pública no planeamento, tomada de decisões e avaliação - que deveria ser central segundo a lei.</p>
<p>Por estes e outros motivos, a ZERO considera que estamos longe de cumprir a Lei de Bases do Clima.</p>
<p>Lê toda a nossa opinião no nosso blog: <a href="https://zero.ong/blog/greenwatch-estara-a-lei-de-bases-do-clima-efetivamente-a-ser-cumprida/" rel="nofollow">https://zero.ong/blog/greenwatch-estara-a-lei-de-bases-do-clima-efetivamente-a-ser-cumprida/</a><br/>
"</p>
</p>
</div>
</article>
<article id="gwor64a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#gwor64a">
<time class="dt-published" datetime="2023-12-19T11:00:51Z">
2023-12-19 11:00:51 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><em>self back patting</em></p>
<p>#wikidata <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/606/725/577/171/054/original/f9307c7d30f4d07e.jpg" alt="A screenshot of my wikidata account's latest notification, which reads: "You just made your ten thousandth edit; thank you so very much!"" title="A screenshot of my wikidata account's latest notification, which reads: "You just made your ten thousandth edit; thank you so very much!""/></p>
</p>
</div>
</article>
<article id="virelaa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#virelaa">
<time class="dt-published" datetime="2023-12-16T22:52:47Z">
2023-12-16 22:52:47 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"The Fediverse isn't perfect, but I think we can all agree that we'd rather be misfit loser zealots than bow to the whims of Facebook et al."</p>
<p>@noracodes<em>@noracodes</em> <a href="https://tenforward.social/@noracodes/111590831860672767" rel="nofollow">https://tenforward.social/@noracodes/111590831860672767</a></p>
</p>
</div>
</article>
<article id="hyph4gq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#hyph4gq">
<time class="dt-published" datetime="2023-12-16T19:40:20Z">
2023-12-16 19:40:20 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>On #Threads, the Head of #Instagram said that Threads will only slowly implement AP/Mastodon integration, which will "take the better part of a year". That, to me, should be a good enough technical reason to consider a #fediblock - at least until everything is in place.</p>
<p><a href="https://www.threads.net/@mosseri/post/C046NsJv8uN" rel="nofollow">https://www.threads.net/@mosseri/post/C046NsJv8uN</a></p>
</p>
</div>
</article>
<article id="spnmxeq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#spnmxeq">
<time class="dt-published" datetime="2023-12-16T09:17:30Z">
2023-12-16 09:17:30 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I wonder if there are any kind of estimate stats with a percentage of mastodon instances with a #fediblock to #threads ...</p>
</p>
</div>
</article>
<article id="4h5fqcq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#4h5fqcq">
<time class="dt-published" datetime="2023-12-15T19:21:58Z">
2023-12-15 19:21:58 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>And if you vote(d) "Other", please leave a comment explaining what's on your mind! 🙏</p>
</p>
</div>
</article>
<article id="3feldcq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#3feldcq">
<time class="dt-published" datetime="2023-12-15T16:32:52Z">
2023-12-15 16:32:52 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Initially, I thought pixelfed. But to be fair one picture per week isn't too much to clutter my mastodon feed, and following pixelfed accounts from mastodon does not seem to work very well (or there are some details about how it should work that I do not quite understand). Then, there's the question of instances (if you voted pixelfed: is there one instance you recommend?).</p>
</p>
</div>
</article>
<article id="hhk4d6a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#hhk4d6a">
<time class="dt-published" datetime="2023-12-15T16:24:30Z">
2023-12-15 16:24:30 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I am planning to do a thematic "weekly picture" starting in the new year. Should I...</p>
</p>
</div>
</article>
<article id="rdan3tq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#rdan3tq">
<time class="dt-published" datetime="2023-12-15T12:36:43Z">
2023-12-15 12:36:43 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Na #AR, hoje discute-se círculos eleitorais, mas o #PSD aproveitou isso para se queixar de não haver voto eletrónico. #PS respondeu a dizer que, por eles, só não há já #VotoElectrónico porque não houve tempo.</p>
<p>É um mau sinal - mas ficarei atento para ver o que dizem os programas eleitorais sobre este tema. Resta ter esperança que, desde o exibido nesta legislatura, os partidos tenham melhor estudado o tema, e que as suas propostas tenham pelo menos em atenção os desafios legislativos que terão de enfrentar.</p>
</p>
</div>
</article>
<article id="zgypwlq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#zgypwlq">
<time class="dt-published" datetime="2023-12-14T13:47:29Z">
2023-12-14 13:47:29 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"The next phase of this comes when the judge decides on the penalty. Epic doesn't want cash damages – it wants the judge to order Google to fulfill its promise of "an open, competitive Android ecosystem for all users and industry participants." They've asked the judge to order Google to facilitate third-party app stores, and to separate app stores from payment processors. As Stoller puts it, they want to "crush Google’s control over Android".</p>
<p>Google has sworn to appeal, surprising no one."</p>
<p>@remixtures<em>@remixtures</em> <a href="https://tldr.nettime.org/@remixtures/111572393679347362" rel="nofollow">https://tldr.nettime.org/@remixtures/111572393679347362</a></p>
</p>
</div>
</article>
<article id="jrjoqwa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#jrjoqwa">
<time class="dt-published" datetime="2023-12-14T12:51:17Z">
2023-12-14 12:51:17 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Cerimónia de Entrega do Prémio Norte-Sul do Conselho da Europa 2022 (ganho pela #AUC e pela #IPCC) agora, em directo, no canal Parlamento.</p>
</p>
</div>
</article>
<article id="l24bv6q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#l24bv6q">
<time class="dt-published" datetime="2023-12-13T10:17:57Z">
2023-12-13 10:17:57 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Olá @BlocodeEsquerda<em>@BlocodeEsquerda</em> ! A #RTP transmitiu o início da comunicação da #Mortágua sobre a #COP28 em directo, mas depois interrompeu para transmitir uma comunicação de outro partido sobre outro tema. Há algum link para o vídeo completo que possam partilhar? Obrigado.</p>
</p>
</div>
</article>
<article id="v7ssy6q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#v7ssy6q">
<time class="dt-published" datetime="2023-12-11T19:50:27Z">
2023-12-11 19:50:27 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>👏Cedric Schuster of Samoa, chair of the Alliance of Small Island States, said: “We will not sign our death certificate. We cannot sign on to text that does not have strong commitments on phasing out fossil fuels.” #cop28</p>
<p>@glynmoody<em>@glynmoody</em> <a href="https://mastodon.social/@glynmoody/111563436916243417" rel="nofollow">https://mastodon.social/@glynmoody/111563436916243417</a></p>
</p>
</div>
</article>
<article id="u25hlaq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#u25hlaq">
<time class="dt-published" datetime="2023-12-11T12:28:37Z">
2023-12-11 12:28:37 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#qotd #scifi <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/561/773/054/084/721/original/016a983dc337753e.jpg" alt="A picture of a book page with a quote from "Haraway, 2003, p. 149" stating that "the boundary between science fiction and social reality is an optical illusion"." title="A picture of a book page with a quote from "Haraway, 2003, p. 149" stating that "the boundary between science fiction and social reality is an optical illusion"."/></p>
</p>
</div>
</article>
<article id="pvcq67q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#pvcq67q">
<time class="dt-published" datetime="2023-12-09T16:16:59Z">
2023-12-09 16:16:59 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>This year's #IDAD (International Day Against #DRM ) was marked with the news that #Sony - once again - decided to screw their customers over with DRM.</p>
<p>Yes, Sony's rootkit scandal was already 18 years ago, but if some of us still complain about it, it is because the lesson wasn't learned. The proof is that now, 18 years later, Sony keeps shipping products and "selling" them with DRM, for the obvious and inevitable purpose of restricting their users.</p>
<p>This is evil, and inexcusable. As usual, @pluralistic<em>@pluralistic</em> puts it better than I do:<br/>
<a href="https://mamot.fr/@pluralistic/111545234851924346" rel="nofollow">https://mamot.fr/@pluralistic/111545234851924346</a></p>
</p>
</div>
</article>
<article id="cx6ttrq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#cx6ttrq">
<time class="dt-published" datetime="2023-12-08T16:31:27Z">
2023-12-08 16:31:27 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#COP28 #Clima #PS</p>
<p>Há aquilo que o PS diz e aquilo que o PS faz. Veja aqui as diferenças:</p>
<p><a href="https://zero.ong/noticias/cop28-zero-elogia-discurso-do-primeiro-ministro-no-dubai-mas-a-realidade-em-portugal-tem-sinais-contrarios/" rel="nofollow">https://zero.ong/noticias/cop28-zero-elogia-discurso-do-primeiro-ministro-no-dubai-mas-a-realidade-em-portugal-tem-sinais-contrarios/</a></p>
</p>
</div>
</article>
<article id="wgu6gma" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#wgu6gma">
<time class="dt-published" datetime="2023-12-07T07:40:48Z">
2023-12-07 07:40:48 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#SFC joins amicus curiae in Green v. Department of Justice<br/>
Large coalition against #DMCA among right to repair, digital rights and advocacy groups speaks out</p>
<p>#DRM #TPM</p>
<p><a href="https://sfconservancy.org/news/2023/dec/06/sfc-amicus-curiae-in-dmca-suit/" rel="nofollow">https://sfconservancy.org/news/2023/dec/06/sfc-amicus-curiae-in-dmca-suit/</a></p>
</p>
</div>
</article>
<article id="rflkc5a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#rflkc5a">
<time class="dt-published" datetime="2023-12-06T23:52:55Z">
2023-12-06 23:52:55 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Em dia de apresentação do plano para um novo #aeroporto , seis jovens da @climaximo<em>@climaximo</em> foram detidos pela Polícia de Segurança Pública depois de terem invadido o aeroporto municipal em Tires.</p>
<p>Não protestam apenas - também propõem: "Cortar as emissões de luxo e voos supérfluos, como os de jato privado e os voos de curta distância, travar qualquer plano de aumento da aviação — “seja um novo aeroporto em Lisboa ou a expansão em curso do aeroporto de Cascais”".</p>
<p>Ouvi numa entrevista a representante da comissão a dizer que o plano era "tendo em vista o interesse nacional a longo prazo." Tenho em creer que nenhum plano serve o interesse nacional a longo prazo melhor do que o de parar de fingir que não vivemos em crise climática - o plano da Climáximo (ainda que divulgado às custas da liberdade individual dos seus activistas) serve-nos muito melhor.</p>
<p>Afinal, não há planeta B.</p>
<p><a href="https://observador.pt/2023/12/06/ativistas-que-invadiram-aeroporto-municipal-em-tires-presentes-ao-tribunal-de-cascais/" rel="nofollow">https://observador.pt/2023/12/06/ativistas-que-invadiram-aeroporto-municipal-em-tires-presentes-ao-tribunal-de-cascais/</a></p>
</p>
</div>
</article>
<article id="e7kdw6q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#e7kdw6q">
<time class="dt-published" datetime="2023-12-05T00:11:17Z">
2023-12-05 00:11:17 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Disse-o quando foi votada, e volto a dizer agora que o óbvio chumbo do TC acontece:</p>
<p>PS, PSD e Chega andam a brincar aos legisladores, apresentando coisas sem seriedade política alguma. E porque a AR precisa de deputados e não de claques desportivas, este tipo de atitudes só denigre o poder político e fere a democracia. De mim não levam votos.</p>
<p>#Metadados</p>
<p>@d3 <a href="https://ciberlandia.pt/@d3/111523169091935055" rel="nofollow">https://ciberlandia.pt/@d3/111523169091935055</a></p>
</p>
</div>
</article>
<article id="e2paopq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#e2paopq">
<time class="dt-published" datetime="2023-12-04T11:47:11Z">
2023-12-04 11:47:11 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Porque é que pintar umas escadas de vermelho é um "acto de vandalismo", mas em plena crise climática importar combustíveis fósseis, produzir energia fóssil ou mesmo continuar a queimar carvão (em Espanha e Brasil) não?</p>
<p>@climaximo<em>@climaximo</em> vs. #EDP</p>
<p><a href="https://www.dn.pt/sociedade/dois-ativistas-do-climaximo-detidos-por-pintarem-a-fachada-e-escadaria-do-maat-em-protesto-contra-a-edp-17441603.html" rel="nofollow">https://www.dn.pt/sociedade/dois-ativistas-do-climaximo-detidos-por-pintarem-a-fachada-e-escadaria-do-maat-em-protesto-contra-a-edp-17441603.html</a></p>
</p>
</div>
</article>
<article id="7pqrvsa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#7pqrvsa">
<time class="dt-published" datetime="2023-12-04T01:51:54Z">
2023-12-04 01:51:54 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Reading "Anne of Avonlea", and I confess I am a bit shocked over the style and overuse of ellipsis, specially so as other #books from this author - including the previous on this series - don't exhibit this at all.</p>
<p>So strange (and off-putting, I confess) it is, that I had to stop my reading and making sure I wasn't alone in this. Thank you internet, I am not:<br/>
<a href="https://grabthelapels.com/2016/07/27/avonlea/" rel="nofollow">https://grabthelapels.com/2016/07/27/avonlea/</a></p>
</p>
</div>
</article>
<article id="5naoxqq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#5naoxqq">
<time class="dt-published" datetime="2023-12-02T19:09:06Z">
2023-12-02 19:09:06 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Since #December seems to be the "shopping month", here is some shameless plug and gentle reminder: 2023 saw the release in #CD of kokori's #rootkit.</p>
<p>#kokori is a #Portuguese post-cyberpunk #industrial duo (from which I'm ½). Here's an example of what you can find on this #album:<br/>
<a href="https://youtu.be/90s9e3rxh48" rel="nofollow">https://youtu.be/90s9e3rxh48</a></p>
<p>#music <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/512/371/687/017/621/original/2b7ce38956b48000.jpg" alt="A picture of "rootkit"'s CD edition" title="A picture of "rootkit"'s CD edition"/></p>
</p>
</div>
</article>
<article id="mzr2rtq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#mzr2rtq">
<time class="dt-published" datetime="2023-12-01T17:27:12Z">
2023-12-01 17:27:12 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"Não é só a extrema-direita, os neoliberais também têm alimentado o negacionismo climático</p>
<p>Existe um negacionismo climático que não se baseia em palpites que colidem com o senso comum. É um negacionismo ao qual a Economia neoliberal fornece blindagem. Na política portuguesa, a Iniciativa Liberal e os seus quadros são os principais promotores deste negacionismo."</p>
<p><a href="https://setentaequatro.pt/ensaio/nao-e-so-extrema-direita-os-neoliberais-tambem-tem-alimentado-o-negacionismo-climatico" rel="nofollow">https://setentaequatro.pt/ensaio/nao-e-so-extrema-direita-os-neoliberais-tambem-tem-alimentado-o-negacionismo-climatico</a></p>
</p>
</div>
</article>
<article id="m6tb5ya" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#m6tb5ya">
<time class="dt-published" datetime="2023-12-01T13:31:27Z">
2023-12-01 13:31:27 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#CRA trilogues finished yesterday. Final document not public yet, but @euractiv<em>@euractiv</em> has a summary:</p>
<p><a href="https://www.euractiv.com/section/cybersecurity/news/eu-institutions-finalise-agreement-on-cybersecurity-law-for-connected-products/" rel="nofollow">https://www.euractiv.com/section/cybersecurity/news/eu-institutions-finalise-agreement-on-cybersecurity-law-for-connected-products/</a></p>
</p>
</div>
</article>
<article id="yx246mq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#yx246mq">
<time class="dt-published" datetime="2023-11-29T12:07:58Z">
2023-11-29 12:07:58 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Just leaned about rundoc, a way to execute code snippets that are within your markdown documents. Simple but very cool tool!</p>
<p><a href="https://eclecticiq.github.io/rundoc/" rel="nofollow">https://eclecticiq.github.io/rundoc/</a></p>
</p>
</div>
</article>
<article id="o2kckxq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#o2kckxq">
<time class="dt-published" datetime="2023-11-29T02:13:51Z">
2023-11-29 02:13:51 +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/111/491/401/445/615/420/original/4297ba3cc5a64c11.jpg" alt="A screenshot with a quote: "That's the worst of growing up, and I'm beginning to realize it. The things you wanted so much when you were a child don't seem half so wonderful to you when you get them."" title="A screenshot with a quote: "That's the worst of growing up, and I'm beginning to realize it. The things you wanted so much when you were a child don't seem half so wonderful to you when you get them.""/></p>
</p>
</div>
</article>
<article id="ljluwya" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ljluwya">
<time class="dt-published" datetime="2023-11-28T18:29:23Z">
2023-11-28 18:29:23 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Em época pré-eleitoral, vale sempre a pena recordar:</p>
<p>"Ao tomar conhecimento dos planos para fazer passar esta alteração à boleia do Orçamento do Estado, a D3 enviou uma carta aos grupos parlamentares pedindo que votassem contra esta alteração. Infelizmente os nossos apelos não foram ouvidos, e a alteração foi aprovada com os votos favoráveis do PS, PSD, e PCP, abstenções do BE, C, e IL, e votos contra do CDS-PP e PAN."</p>
<p>@d3 <a href="https://ciberlandia.pt/@d3/111489551579816723" rel="nofollow">https://ciberlandia.pt/@d3/111489551579816723</a></p>
</p>
</div>
</article>
<article id="hgwjbhq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#hgwjbhq">
<time class="dt-published" datetime="2023-11-28T00:46:44Z">
2023-11-28 00:46:44 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>A acreditar na #sondagem de hoje para a RTP, um em cada seis eleitores vai votar no fascismo.</p>
<p>Desses, um em cada quatro vai votar nisso para "experimentar algo diferente", assim como quem arrisca provar gelado de caldo verde.</p>
<p>Já pouco mais a dizer.</p>
<p><a href="https://www.rtp.pt/noticias/politica/eleicoes-2024-sondagem-aponta-para-empate-tecnico-entre-ps-e-psd_n1533008" rel="nofollow">https://www.rtp.pt/noticias/politica/eleicoes-2024-sondagem-aponta-para-empate-tecnico-entre-ps-e-psd_n1533008</a></p>
</p>
</div>
</article>
<article id="6ogew7q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#6ogew7q">
<time class="dt-published" datetime="2023-11-25T15:26:11Z">
2023-11-25 15:26:11 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Montenegro a normalizar o Chega, ou pior:</p>
<p>“Dizem eles que sou eu que vou abrir a porta ao extremismo e radicalismo. Não, não sou eu que vai abrir essa porta, foram eles que o fizeram e não fizeram outra coisa nos últimos oito anos”</p>
<p>Um PSD que acha que o PS é mais extremo ou radical que o Chega não é só facilitador, é apologista.</p>
<p>Vergonhoso e irresponsável.</p>
<p>Citação vinda de: <a href="https://cnnportugal.iol.pt/luis-montenegro/congresso-psd/montenegro-apela-ao-voto-dos-socialistas-moderados-na-casa-segura-que-e-o-psd/20231125/6561e2ded34e371fc0ba4018" rel="nofollow">https://cnnportugal.iol.pt/luis-montenegro/congresso-psd/montenegro-apela-ao-voto-dos-socialistas-moderados-na-casa-segura-que-e-o-psd/20231125/6561e2ded34e371fc0ba4018</a></p>
</p>
</div>
</article>
<article id="kowwbhq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#kowwbhq">
<time class="dt-published" datetime="2023-11-24T19:57:18Z">
2023-11-24 19:57:18 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://setentaequatro.pt/cronica/lutar-pelo-clima-nao-e-crime" rel="nofollow">https://setentaequatro.pt/cronica/lutar-pelo-clima-nao-e-crime</a></p>
</p>
</div>
</article>
<article id="rghxnra" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#rghxnra">
<time class="dt-published" datetime="2023-11-24T00:23:54Z">
2023-11-24 00:23:54 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"com a justificação de salvaguardar projetos de superior interesse nacional (como também justificaram os do lítio) que a República não quer deixar que os Açores tenham direito a um parecer vinculativo sobre o que pode ou não acontecer no mar dos Açores"</p>
<p>@EsquerdaNet<em>@EsquerdaNet</em> <a href="https://masto.pt/@EsquerdaNet/111462120598573733" rel="nofollow">https://masto.pt/@EsquerdaNet/111462120598573733</a></p>
</p>
</div>
</article>
<article id="ukyrlma" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ukyrlma">
<time class="dt-published" datetime="2023-11-22T13:01:40Z">
2023-11-22 13:01:40 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#WTF, @SlackHQ<em>@SlackHQ</em> on @firefox<em>@firefox</em> :</p>
<p>7,0G ./storage/default/https+++app.slack.com/cache/morgue</p>
</p>
</div>
</article>
<article id="zi6pj4q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#zi6pj4q">
<time class="dt-published" datetime="2023-11-20T09:49:06Z">
2023-11-20 09:49:06 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"Um dia exploro melhor..."</p>
<p>Descobri hoje que o site "Porto Sonoro" já não existe. Felizmente, há o #ArquivoPT :</p>
<p><a href="https://arquivo.pt/wayback/20200408140845/http://www.portosonoro.pt/" rel="nofollow">https://arquivo.pt/wayback/20200408140845/http://www.portosonoro.pt/</a></p>
</p>
</div>
</article>
<article id="b2fs4ua" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#b2fs4ua">
<time class="dt-published" datetime="2023-11-19T02:15:21Z">
2023-11-19 02:15:21 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>《<br/>
There is no time left</p>
<p>We had decades of warnings, negotiation and broken promises. We are now in our final hour. As Prof Hans Shellenhuber says “Climate change is now reaching the endgame, where very soon humanity must choose between taking unprecedented action, or accept that it has been left too late and bear the consequences” (p. 3). That was in 2018.<br/>
》</p>
<p>@ApaulD<em>@ApaulD</em> <a href="https://aus.social/@ApaulD/111434491677621776" rel="nofollow">https://aus.social/@ApaulD/111434491677621776</a></p>
</p>
</div>
</article>
<article id="7pybh3q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#7pybh3q">
<time class="dt-published" datetime="2023-11-19T00:11:31Z">
2023-11-19 00:11:31 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"Associar-se à ZERO dá força a este movimento para tornar a sustentabilidade no elemento estruturante das políticas públicas 🌍</p>
<p>Mas também atribui maior responsabilidade: para que a satisfação das necessidades do presente não comprometa as necessidades do futuro 🌱</p>
<p>Por isso, se quiseres ser Associado ZERO e lutar por esta causa, temos uma novidade:<br/>
Ao fazeres a inscrição em novembro ou dezembro de 2023, a tua quota de 2024 fica automaticamente paga.</p>
<p>Porquê? Porque precisamos de ti agora! 🫵</p>
<p>Associa-te já: <a href="https://zero.ong/como-agir/associar-se/" rel="nofollow">https://zero.ong/como-agir/associar-se/</a><br/>
"</p>
</p>
</div>
</article>
<article id="h6qzfgq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#h6qzfgq">
<time class="dt-published" datetime="2023-11-18T22:24:12Z">
2023-11-18 22:24:12 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://www.tsf.pt/futuro/zx-spectrum-foi-lancado-ha-40-anos-mas-ha-quem-continue-a-produzir-jogos-faco-por-gosto-17351447.html" rel="nofollow">https://www.tsf.pt/futuro/zx-spectrum-foi-lancado-ha-40-anos-mas-ha-quem-continue-a-produzir-jogos-faco-por-gosto-17351447.html</a></p>
</p>
</div>
</article>
<article id="wt5ra2a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#wt5ra2a">
<time class="dt-published" datetime="2023-11-17T00:52:02Z">
2023-11-17 00:52:02 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>#IA vs #criseclimática na #europa : <img src="https://media.ciberlandia.pt/ciberlandia-media/media_attachments/files/111/423/126/363/984/496/original/728010a94a321cf2.jpg" alt="《expressões deste vírus, sobretudo na sua vertente longotermista, encontram-se um pouco por todo o lado, como num discurso de Ursula Von der Leyen replicado pelas contas oficiais de redes sociais da Comissão apontando para a "mitigação do risco de extinção provocada pela IA" como uma das prioridades globais. Ignorando, por exemplo, que esta tecnologia representa um gasto de energia eléctrica ou de água, acelerando o risco de catástrofe climática que parece ter sido despromovida na mesma lista.》" title="《expressões deste vírus, sobretudo na sua vertente longotermista, encontram-se um pouco por todo o lado, como num discurso de Ursula Von der Leyen replicado pelas contas oficiais de redes sociais da Comissão apontando para a "mitigação do risco de extinção provocada pela IA" como uma das prioridades globais. Ignorando, por exemplo, que esta tecnologia representa um gasto de energia eléctrica ou de água, acelerando o risco de catástrofe climática que parece ter sido despromovida na mesma lista.》"/></p>
</p>
</div>
</article>
<article id="53in44a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#53in44a">
<time class="dt-published" datetime="2023-11-16T15:30:26Z">
2023-11-16 15:30:26 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>《Os militantes do Chega, incluindo a sua deputada Rita Matias, tentaram distribuir propaganda negacionista acerca do que chamam "a suposta crise climática", acusando os estudantes de espalharem mentiras para impor restrições à propriedade privada, por entre elogios à atuação policial para travar a ocupação. Mas viram-se de imediato rodeados pelos estudantes ali presentes, com palavras de ordem como "Fascistas, racistas, chegou a vossa hora. As ativistas ficam e vocês vão embora".》</p>
<p><a href="https://www.esquerda.net/artigo/chega-aplaude-repressao-de-estudantes-e-acaba-expulso-de-faculdade/88492" rel="nofollow">https://www.esquerda.net/artigo/chega-aplaude-repressao-de-estudantes-e-acaba-expulso-de-faculdade/88492</a></p>
</p>
</div>
</article>
<article id="ounp7bq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ounp7bq">
<time class="dt-published" datetime="2023-11-16T11:49:06Z">
2023-11-16 11:49:06 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Vamos assim, em Portugal:</p>
<p>"o diretor da Faculdade avisou os estudantes de que não seriam permitidas conversas políticas"</p>
<p>Porque onde já se viu, correr o risco de aceitar ter estudantes com consciência política...</p>
<p><a href="https://www.dn.pt/sociedade/tres-ativistas-detidas-pela-psp-quando-davam-palestra-na-faculdade-de-psicologia-em-lisboa--17345041.html" rel="nofollow">https://www.dn.pt/sociedade/tres-ativistas-detidas-pela-psp-quando-davam-palestra-na-faculdade-de-psicologia-em-lisboa--17345041.html</a></p>
</p>
</div>
</article>
<article id="h3uwfmq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#h3uwfmq">
<time class="dt-published" datetime="2023-11-16T00:03:30Z">
2023-11-16 00:03:30 +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/111/417/288/106/122/035/original/bd4d7ebe7c58cadf.jpg" alt="Foto ao Jornal Mapa, onde se lê: "Confiar nas empresas de tecnologia e no governo para nos ensinar sobre suas próprias inovações tecnológicas é como confiar no McDonald's para nos ensinar como sua carne é prodizida."" title="Foto ao Jornal Mapa, onde se lê: "Confiar nas empresas de tecnologia e no governo para nos ensinar sobre suas próprias inovações tecnológicas é como confiar no McDonald's para nos ensinar como sua carne é prodizida.""/></p>
</p>
</div>
</article>
<article id="pddpmyq" class="h-entry">