-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwtxt-2022.html
More file actions
6862 lines (6462 loc) · 265 KB
/
Copy pathtwtxt-2022.html
File metadata and controls
6862 lines (6462 loc) · 265 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-2022.txt">feed of twts</a>, from mid-2022 to mid-2023.
You can also <a href="twtxt-2021.php">find the previous few years (2020-2022)</a>, or a <a href="twtxt-2023.html">more recent feed</a> (until the end of 2023).
</div>
</header>
<main class="container">
<article id="jets3jq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#jets3jq">
<time class="dt-published" datetime="2023-09-02T18:31:38+01:00">
2023-09-02 17:31:38 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I think twtxt.net's interface has gone wild at me... my mastodon account will be (at)marado(at)ciberlandia.pt .</p>
</p>
</div>
</article>
<article id="zxxwtoa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#zxxwtoa">
<time class="dt-published" datetime="2023-09-02T18:30:15+01:00">
2023-09-02 17:30:15 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Hi! I'll be microblogging from ciberlandia.pt from now on. What does that mean? If you want to follow me via mastodon you can, at <a href="https://twtxt.net/user/marado/twtxt.txt" rel="nofollow">@marado</a> , if you want to follow me via twtxt you can keep following me via at <a href="https://tilde.pt/~marado/twtxt.txt" rel="nofollow">https://tilde.pt/~marado/twtxt.txt</a> . See you on the "other side"!</p>
</p>
</div>
</article>
<article id="m2quvoq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#m2quvoq">
<time class="dt-published" datetime="2023-08-25T02:10:55+01:00">
2023-08-25 01:10:55 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>hi <a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> , did something happen to the AP sync from twtxt.net ? My "last toots" seen on mastodon seem quite outdated...</p>
<p><img src="https://twtxt.net/media/cdp3jwR7Vcm6SAMZb4YXFH.png" alt=""/></p>
</p>
</div>
</article>
<article id="ho6y5fa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ho6y5fa">
<time class="dt-published" datetime="2023-08-25T00:45:04+01:00">
2023-08-24 23:45:04 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Exactly 10 years ago Kokori's first release on vinyl was out - and we celebrated with a release party in one of the afternoons of the Entremuralhas festival.<br/>
Ten years later, we're back attending the festival, and this time we see one of the stands selling our latest release, rootkit, on CD! ♡</p>
<p><img src="https://twtxt.net/media/U5gwSRtqrrsLu4o9qCjZZG.png" alt=""/><br/>
<img src="https://twtxt.net/media/t3LfgL3JxEysaKofFCFoUE.png" alt=""/></p>
</p>
</div>
</article>
<article id="ls4xxjq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ls4xxjq">
<time class="dt-published" datetime="2023-08-23T02:37:19+01:00">
2023-08-23 01:37:19 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://engineuring.wordpress.com/2023/08/14/access-to-knowledge-is-a-human-right/" rel="nofollow">Access to knowledge is a human right</a></p>
</p>
</div>
</article>
<article id="sgchiiq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#sgchiiq">
<time class="dt-published" datetime="2023-08-20T21:48:04+01:00">
2023-08-20 20:48:04 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I hate reading translations. Here's an example why: the same passage of the English and the Portuguese translation of the same (French) book. Not just the length of the passage shows one of the translations wasn't faithful, the behavior of the character in one version is the opposite than how he behaves on the other version...<br/>
<img src="https://twtxt.net/media/ess6qzzuaNcU588Tdundrn.png" alt=""/><br/>
<img src="https://twtxt.net/media/UNt9n4ekqi9aGW4S33QgqY.png" alt=""/></p>
</p>
</div>
</article>
<article id="7pyhj4q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#7pyhj4q">
<time class="dt-published" datetime="2023-08-18T18:39:23+01:00">
2023-08-18 17:39:23 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://eapl.me/twtxt.txt" rel="nofollow">@eapl.me</a> s/common protocols/open standards/</p>
</p>
</div>
</article>
<article id="zuxg3ra" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#zuxg3ra">
<time class="dt-published" datetime="2023-08-11T14:38:27+01:00">
2023-08-11 13:38:27 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://arquivonacionaldosom.gov.pt/" rel="nofollow">Arquivo Nacional do Som</a></p>
</p>
</div>
</article>
<article id="cq6bttq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#cq6bttq">
<time class="dt-published" datetime="2023-08-11T03:18:32+01:00">
2023-08-11 02:18:32 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>The only feature that leads me to use Gmail (and which I use extensively) is 'Snooze'. For a few days now, it has not been working properly. Lost about what will I use to replace my workflows, but it also seems that Gmail is about to get one less user.</p>
</p>
</div>
</article>
<article id="b4ie4tq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#b4ie4tq">
<time class="dt-published" datetime="2023-08-09T20:46:36+01:00">
2023-08-09 19:46:36 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> So, you removed the working .github actions replacing it with non-working .gitea actions? You could have left the .github folder present at lest until .gitea is working correctly 😰</p>
</p>
</div>
</article>
<article id="t4j5vdq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#t4j5vdq">
<time class="dt-published" datetime="2023-08-09T02:36:42+01:00">
2023-08-09 01:36:42 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Of skies and bullets:<br/>
<img src="https://twtxt.net/media/mPQmppKfJUuifUNPaDCybV.png" alt=""/></p>
</p>
</div>
</article>
<article id="ety4hma" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ety4hma">
<time class="dt-published" datetime="2023-08-06T18:41:22+01:00">
2023-08-06 17:41:22 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>1995, when people still had legs on the Metaverse<br/>
<img src="https://twtxt.net/media/ozcpYgeRcD9tizPfxeWwG7.png" alt=""/></p>
</p>
</div>
</article>
<article id="f4ksfxa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#f4ksfxa">
<time class="dt-published" datetime="2023-08-05T20:05:25+01:00">
2023-08-05 19:05:25 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I bet there is someone who wrote a paper, a book or something about the impact of the death of MySpace on music projects. I'm saying this more or less hoping that someone will one day point me to one, I'd love to read it. What I know is that lately I have been revisiting my record collection and confirming that there is an enormous amount of recording artists and projects that started with the MySpace phenomenon, and ended with MySpace's death.</p>
</p>
</div>
</article>
<article id="ibcfiwq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ibcfiwq">
<time class="dt-published" datetime="2023-08-04T20:06:24+01:00">
2023-08-04 19:06:24 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>O Presidente da República disse mesmo que termos este evento Católico a decorrer no nosso país laico é o maior acontecimento da democracia Portuguesa? Que vergonha.</p>
</p>
</div>
</article>
<article id="m5ty3mq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#m5ty3mq">
<time class="dt-published" datetime="2023-08-04T00:00:44+01:00">
2023-08-03 23:00:44 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>my translation:</p>
<p>«The judge considered that, despite Renault Portugal having claimed the company and brand has no means to block the vehicles, it was proved that "there is a computer platform that was activated, in a way not disclosed, and through which was operated first the blocking and then the unblocking of the batteries”.»</p>
</p>
</div>
</article>
<article id="phwd67a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#phwd67a">
<time class="dt-published" datetime="2023-08-03T23:56:31+01:00">
2023-08-03 22:56:31 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://www.uninformativ.de/twtxt.txt" rel="nofollow">@movq</a> I don't really know. Here's a concerning quote:</p>
<p>«A juíza considerou que, apesar de a Renault Portugal ter garantido que a empresa e a marca não tinham meios para bloquear as viaturas, se fez prova de que “há uma plataforma informática que foi accionada, de forma que as requeridas não concretizaram, e através da qual foi operado primeiro o bloqueio e depois o desbloqueio das baterias”.»</p>
</p>
</div>
</article>
<article id="67bbxla" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#67bbxla">
<time class="dt-published" datetime="2023-08-03T11:15:41+01:00">
2023-08-03 10:15:41 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Renault has a remote locking "feature" on the batteries of their electric cars. They used it in Portugal, and <a href="https://www.publico.pt/2023/08/03/economia/noticia/juiza-renault-cometeu-crime-bloquear-baterias-carros-electricos-2058912" rel="nofollow">that was considered illegal</a>.</p>
</p>
</div>
</article>
<article id="h7ppkdq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#h7ppkdq">
<time class="dt-published" datetime="2023-07-30T04:33:57+01:00">
2023-07-30 03:33:57 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://pluralistic.net/2023/07/28/edison-not-tesla/#demon-haunted-world" rel="nofollow">Tesla's Dieselgate</a> (and one more great example of how wrong laws protecting DRM are)</p>
</p>
</div>
</article>
<article id="4424puq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#4424puq">
<time class="dt-published" datetime="2023-07-30T00:12:34+01:00">
2023-07-29 23:12:34 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>and if so, can we implement <a href="https://git.mills.io/yarnsocial/yarn/issues/1071" rel="nofollow">migration</a> first?</p>
</p>
</div>
</article>
<article id="ahcfs3q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ahcfs3q">
<time class="dt-published" datetime="2023-07-30T00:07:19+01:00">
2023-07-29 23:07:19 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> you're planning to stop AP support before doing the bridge?</p>
</p>
</div>
</article>
<article id="2cn6ruq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2cn6ruq">
<time class="dt-published" datetime="2023-07-29T03:33:13+01:00">
2023-07-29 02:33:13 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> looking forward for an update to the mobile app!</p>
</p>
</div>
</article>
<article id="qpoqbpa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#qpoqbpa">
<time class="dt-published" datetime="2023-07-29T03:30:56+01:00">
2023-07-29 02:30:56 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://eapl.me/twtxt.txt" rel="nofollow">@eapl.me</a> this is pretty cool! only thing it lacks is a view for just one of the feeds (at least yours)!</p>
</p>
</div>
</article>
<article id="g533upq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#g533upq">
<time class="dt-published" datetime="2023-07-28T14:54:32+01:00">
2023-07-28 13:54:32 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>A closed, proprietary standard was accepted, adopted, and has been in use for decates. TETRA, for encrypted radio communications, has been in use for more than a quarter of century. Turns out, it <a href="https://www.wired.com/story/tetra-radio-encryption-backdoor/" rel="nofollow">has an intentional backdoor</a> all along. A cautionary tale? Not really: the old algorithms are going to be phased out and replaced by new algorithms... that were <a href="https://zetter.substack.com/p/interview-with-the-etsi-standards" rel="nofollow">created in secret as well</a>.</p>
</p>
</div>
</article>
<article id="p7ek5jq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#p7ek5jq">
<time class="dt-published" datetime="2023-07-27T12:27:29+01:00">
2023-07-27 11:27:29 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://www.euronews.com/2023/07/21/as-the-eu-single-market-turns-30-we-cant-allow-further-obstacles-to-its-just-future" rel="nofollow">As the EU Single Market turns 30, we can't allow further obstacles to its just future</a></p>
</p>
</div>
</article>
<article id="ssaywra" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ssaywra">
<time class="dt-published" datetime="2023-07-26T15:14:32+01:00">
2023-07-26 14:14:32 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>This. 2025 is the "limit date" (some say by, others before) for emissions peak, in order to keep warming to 1.5C. What are we doing? Globally, it seems that we are not even trying to make it peak, whenever.</p>
</p>
</div>
</article>
<article id="mozdvqa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#mozdvqa">
<time class="dt-published" datetime="2023-07-26T14:40:28+01:00">
2023-07-26 13:40:28 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>CNN's <a href="https://edition.cnn.com/2023/07/24/media/twitter-x-reliable-sources/index.html" rel="nofollow">obituary for Twitter</a> is making the rounds today.</p>
</p>
</div>
</article>
<article id="2ntoqfa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2ntoqfa">
<time class="dt-published" datetime="2023-07-25T23:19:31+01:00">
2023-07-25 22:19:31 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> Doctorow refers this new attestation stuff in <a href="https://pluralistic.net/2023/07/24/rent-to-pwn/#kitt-is-a-demon" rel="nofollow">his recent essay on auto</a>.</p>
</p>
</div>
</article>
<article id="lvvu4ta" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#lvvu4ta">
<time class="dt-published" datetime="2023-07-25T10:17:44+01:00">
2023-07-25 09:17:44 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://twtxt.net/user/thecanine/twtxt.txt" rel="nofollow">@thecanine</a> an "everything app" with an <a href="https://nitter.lacontrevoie.fr/mind_booster/status/1683471993662763009" rel="nofollow">AI-powered asterisk</a>...</p>
</p>
</div>
</article>
<article id="ae5lywq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ae5lywq">
<time class="dt-published" datetime="2023-07-24T10:46:54+01:00">
2023-07-24 09:46:54 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I love them (specially those in phone booths!), but now I have one I might actually become a regular at :-)</p>
</p>
</div>
</article>
<article id="aa7xozq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#aa7xozq">
<time class="dt-published" datetime="2023-07-23T19:58:28+01:00">
2023-07-23 18:58:28 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>My home town now has a street library! #Lamego<br/>
<img src="https://twtxt.net/media/gpy2vvYhuBgwrMHPSTfmfU.png" alt=""/></p>
</p>
</div>
</article>
<article id="z2pgn4q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#z2pgn4q">
<time class="dt-published" datetime="2023-07-22T00:05:25+01:00">
2023-07-21 23:05:25 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://twtxt.net/user/prologic/twtxt.txt" rel="nofollow">@prologic</a> "websites" that only work on "trusted browsers", the vilest sort of proposal one can do, breaking the web.</p>
</p>
</div>
</article>
<article id="7hbqypq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#7hbqypq">
<time class="dt-published" datetime="2023-07-21T23:23:21+01:00">
2023-07-21 22:23:21 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>"Web Environment Integrity" is Google's fancy name for closing the web in a DRM scheme. The internet found out, started questioning in github issues ans pull requests... and now <a href="https://github.com/RupertBenWiser/Web-Environment-Integrity" rel="nofollow">the repository</a> is worth reading with a popcorn bucket on your lap.</p>
</p>
</div>
</article>
<article id="4m6gmaq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#4m6gmaq">
<time class="dt-published" datetime="2023-07-19T17:24:43+01:00">
2023-07-19 16:24:43 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>More on #CRA: Filezilla stopped distribution of downloads in Europe, <a href="https://filezilla-project.org/cra.php" rel="nofollow">as a protest</a>.</p>
</p>
</div>
</article>
<article id="ukc74ha" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ukc74ha">
<time class="dt-published" datetime="2023-07-14T21:43:33+01:00">
2023-07-14 20:43:33 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>@@madcap@ciberlandia.pt War+éz.</p>
</p>
</div>
</article>
<article id="ryxikhq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ryxikhq">
<time class="dt-published" datetime="2023-07-14T21:41:44+01:00">
2023-07-14 20:41:44 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>@@madcap@ciberlandia.pt why don't they want my money?</p>
</p>
</div>
</article>
<article id="sgyk3lq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#sgyk3lq">
<time class="dt-published" datetime="2023-07-13T12:18:23+01:00">
2023-07-13 11:18:23 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>It has been a long time coming (ten years since book 11!), but 2023 saw the release of book 12 of "Piracy Is Liberation". With it, I also ordered CBA's vol. 58, entitled "Modern Glossalia or The Erosion Of Meaning", which focuses (or at lease includes) a reflection of the growth of the extreme right, and their uses of language.</p>
<p><img src="https://twtxt.net/media/RVPiBHVH7tn57kpTMjxZGM.png" alt=""/></p>
</p>
</div>
</article>
<article id="vqml2ha" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vqml2ha">
<time class="dt-published" datetime="2023-07-04T22:59:38+01:00">
2023-07-04 21:59:38 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://anthony.buc.ci/user/abucci/twtxt.txt" rel="nofollow">@abucci</a> where they now say they use it to train their AI models thry used to say "for language models", which isn't all that different (possibly extending the scope from text to images, audio and video?).</p>
</p>
</div>
</article>
<article id="lublgqa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#lublgqa">
<time class="dt-published" datetime="2023-07-04T14:54:00+01:00">
2023-07-04 13:54:00 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://anthony.buc.ci/user/abucci/twtxt.txt" rel="nofollow">@abucci</a> To be fair, it was already codified there. What is more interesting (to me) is how they're using a privacy policy (binding their users) in an attempt to get implicit licensing over materials out of the scope of those services, both from their users and others (or of authors unknown). Not that it matters much, I bet they'd argue such license is unneeded, but the fact that they decided to have that wording there makes me curious about the legal basis of such clause. Yes, I know Goggle had an extensive and capable legal team, but I'd still love seeing a legal analysis of the applicability of that under various jurisdictions.</p>
</p>
</div>
</article>
<article id="tb3twoq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#tb3twoq">
<time class="dt-published" datetime="2023-07-04T10:35:03+01:00">
2023-07-04 09:35:03 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>@@rlafuente@ciberlandia.pt<br/>
Bom dia<br/>
<img src="https://twtxt.net/media/oH7uf6r7gBCRYmYcZ2aG7W.png" alt=""/></p>
</p>
</div>
</article>
<article id="ip2vnxa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ip2vnxa">
<time class="dt-published" datetime="2023-06-29T16:47:39+01:00">
2023-06-29 15:47:39 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://www.uninformativ.de/twtxt.txt" rel="nofollow">@movq</a> I've got good news for you, <a href="https://repair.eu/news/new-eu-rules-for-smartphones-and-tablets/" rel="nofollow">in Europe</a> "software updates will also have to be made available for at least 5 years after retiring a product from the market".</p>
</p>
</div>
</article>
<article id="csbhqda" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#csbhqda">
<time class="dt-published" datetime="2023-06-26T15:02:26+01:00">
2023-06-26 14:02:26 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Em 31 de Maio, a ampliação da Mina do Barroso <a href="https://www.jornalmapa.pt/2023/06/26/barroso-a-guerra-das-minas/" rel="nofollow">obteve</a> por parte da Agência Portuguesa do Ambiente, uma Declaração de Impacto Ambiental favorável, ainda que condicionada ao cumprimento de um conjunto de condições. As populações consideraram isto uma declaração de guerra e reagiram de imediato, prometendo a continuação e o endurecimento da luta.</p>
</p>
</div>
</article>
<article id="vre53la" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#vre53la">
<time class="dt-published" datetime="2023-06-25T01:13:01+01:00">
2023-06-25 00:13:01 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>@@paulasimoes@ciberlandia.pt Oddly, I did not win 😇</p>
</p>
</div>
</article>
<article id="tm3fmea" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#tm3fmea">
<time class="dt-published" datetime="2023-06-24T15:09:06+01:00">
2023-06-24 14:09:06 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Kokori "no ar" neste <a href="https://m.mixcloud.com/amcaeiro/portal-do-tempo-220-24062023/" rel="nofollow">Portal do Tempo</a>, e muito bem acompanhado:-)</p>
</p>
</div>
</article>
<article id="3ccucia" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#3ccucia">
<time class="dt-published" datetime="2023-06-15T14:35:07+01:00">
2023-06-15 13:35:07 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Pedro Nuno Santos a dizer que em qualquer empresa do mundo se comunica de diversar formas, incluindo via whatsapp. A AP está mesmo a precisar daqueles formações chapa 5 sobre segurança e privacidade de dados. Não, não é normal (ou aceitável) o uso de whatsapp (ou qq outra ferramenta não formalmente escolhida para o efeito de comunicação interna) para coisas destas.</p>
</p>
</div>
</article>
<article id="p6mcseq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#p6mcseq">
<time class="dt-published" datetime="2023-06-13T15:35:52+01:00">
2023-06-13 14:35:52 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Sabe sempre bem ser ouvido: ontem passou uma faixa de Kokori na <a href="https://unidade304.com/2023/06/12/unidade-304-emissao-1208-12jun2023/" rel="nofollow">Unidade 304</a>.</p>
</p>
</div>
</article>
<article id="etehtva" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#etehtva">
<time class="dt-published" datetime="2023-06-13T00:20:24+01:00">
2023-06-12 23:20:24 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://eco.sapo.pt/2023/06/12/hoje-nas-noticias-remodelacao-do-governo-irs-e-voto-eletronico/" rel="nofollow">PSD e IL querem projecto-piloto de voto online nas Europeias, PS e CNE são contra</a>.</p>
</p>
</div>
</article>
<article id="2kjpw4a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#2kjpw4a">
<time class="dt-published" datetime="2023-06-09T19:36:05+01:00">
2023-06-09 18:36:05 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>children of the rain<br/>
<img src="https://twtxt.net/media/uComNo8SB3ZdKXBdas3uUH.png" alt="picture of a newborn mushroom" title="picture of a newborn mushroom"/></p>
</p>
</div>
</article>
<article id="qe7hp3a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#qe7hp3a">
<time class="dt-published" datetime="2023-06-09T18:55:20+01:00">
2023-06-09 17:55:20 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Rain victims</p>
<p><img src="https://twtxt.net/media/jEzzX3hJmvsBKdJEpz3xjN.png" alt="a picture of infant oranges fallen down" title="a picture of infant oranges fallen down"/></p>
</p>
</div>
</article>
<article id="bl4tivq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#bl4tivq">
<time class="dt-published" datetime="2023-06-03T16:55:11+01:00">
2023-06-03 15:55:11 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I wrote here a few days ago about kokori's "rootkit" (now also available on CD) but it all started on this day 13 years ago, with the release of our "init()" EP, seen in this picture:</p>
<p><img src="https://twtxt.net/media/Wm5AtKCTJp9j2AXa2BF7aH.png" alt="kokori - init()"/></p>
</p>
</div>
</article>
<article id="mgaxxcq" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#mgaxxcq">
<time class="dt-published" datetime="2023-06-03T00:49:09+01:00">
2023-06-02 23:49:09 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>Já anda por aí, enquadrado no festival literário "Lamego, Cidade Poema". É o livro "Era Uma Vez - Lamego 2023", e tem o seu lançamento oficial no último momento do festival, domingo às 16h.</p>
<p>Participo nele com um texto de não-ficção para o leitor curioso geek: não haverão muitos, mas dá-me prazer saber que a história geek Lamecense vai estar nas prateleiras de uma qualquer biblioteca.</p>
<p><img src="https://twtxt.net/media/bh5DG6CUMFNEayvx4jZCSR.png" alt="Lamego 2023" title="Lamego 2023"/></p>
</p>
</div>
</article>
<article id="djd5w6a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#djd5w6a">
<time class="dt-published" datetime="2023-05-29T03:10:21+01:00">
2023-05-29 02:10:21 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>@@texto-plano.xyz <a href="https://the20th.bandcamp.com/track/bored-people" rel="nofollow">https://the20th.bandcamp.com/track/bored-people</a></p>
</p>
</div>
</article>
<article id="csw3y2q" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#csw3y2q">
<time class="dt-published" datetime="2023-05-28T17:20:08+01:00">
2023-05-28 16:20:08 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>kokori's album "rootkit" is going to be released on CD next month.</p>
<p>This is the album I'm most proud of have having made.</p>
<p>Accepting pre-orders now!</p>
<p><img src="https://twtxt.net/media/YEs3GAbbmWteXiopowgnAP.png" alt="kokori's rootkit CD" title="kokori's rootkit CD"/></p>
</p>
</div>
</article>
<article id="d2qzn3a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#d2qzn3a">
<time class="dt-published" datetime="2023-05-27T19:33:53+01:00">
2023-05-27 18:33:53 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>I know to which <a href="https://ansol.org/eventos/2023-06-17-debian-bookworm-release-party/" rel="nofollow">Debian's release party</a> I'm going to, how about you?</p>
</p>
</div>
</article>
<article id="b7in6wa" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#b7in6wa">
<time class="dt-published" datetime="2023-05-25T23:51:39+01:00">
2023-05-25 22:51:39 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p>It is not surprising, but still the end of an era: <a href="https://www.hypebot.com/hypebot/2023/05/cd-baby-ends-vinyl-cd-distribution-gives-artists-60-days-to-pay-to-get-their-products-back.html" rel="nofollow">CDBaby will stop selling CDs</a>.</p>
</p>
</div>
</article>
<article id="qokavka" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#qokavka">
<time class="dt-published" datetime="2023-05-23T10:50:12+01:00">
2023-05-23 09:50:12 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://feeds.twtxt.net/slashdot/twtxt.txt" rel="nofollow">@slashdot</a> interesting reading for those who consider CJEU's stance on metadata retention inconvenient.</p>
</p>
</div>
</article>
<article id="ubpn56a" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#ubpn56a">
<time class="dt-published" datetime="2023-05-21T04:41:08+01:00">
2023-05-21 03:41:08 +0000 UTC
</time>
</a>
<span> </span>
</div>
</div>
<div class="e-content">
<p><p><a href="https://twtxt.net/user/mckinley/twtxt.txt" rel="nofollow">@mckinley</a> went out to see <a href="https://m.imdb.com/title/tt14323902/" rel="nofollow">a movie</a>.</p>
</p>
</div>
</article>
<article id="h5rh2ca" class="h-entry">
<div class="u-author h-card">
<div class="dt-publish">
<a class="u-url" href="#h5rh2ca">
<time class="dt-published" datetime="2023-05-18T12:19:18+01:00">
2023-05-18 11:19:18 +0000 UTC
</time>
</a>