-
Notifications
You must be signed in to change notification settings - Fork 9
/
feed.rss
1992 lines (1936 loc) · 163 KB
/
feed.rss
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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<channel>
<title>Identosphere Identity Blogcatcher: Personal</title>
<link>https://identosphere.com</link>
<description>Personal blogs of individuals working in decentralized identity.</description>
<language>en-us</language>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/13/matchstalk-men-and.html</link>
<description> 🔗 📼 🎵 📸 Matchstalk men and matchstalk cats and dogs
</description>
<pubDate>Mon, 12 Aug 2024 23:42:21 +0000</pubDate>
<dc:date>2024-08-12T23:42:21+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/13/tall-masted-sailing.html</link>
<description> Tall masted sailing boat checked in last night - gone as sun was rising.
</description>
<pubDate>Mon, 12 Aug 2024 23:37:22 +0000</pubDate>
<dc:date>2024-08-12T23:37:22+00:00</dc:date>
</item>
<item>
<title>最新のガートナーのプライバシーに関するハイプサイクルではゼロ知識署名が廃れそうになっている?</title>
<link>https://idmlab.eidentity.jp/2024/08/blog-post_13.html</link>
<description>こんにちは、富士榮です。 なかなか挑戦的な調査レポート(というかハイプサイクル)がガートナーから出てきてザワザワしていますね。
Gartner's latest Privacy Hype Cycle has a controversial take on Zero-Knowledge Proofs; they are now obsolete. I wonder what the ZK community think of this? @AnnaRRose, @OmerShlomovits, @EliBenSasson, @SuccinctJT pic.twitter.com/qhDgExNtry — Nigel Smart (@SmartCryptology) August 6, 2024
念の為、スクショも(あくまでバックアップ用途) </description>
<pubDate>Mon, 12 Aug 2024 22:30:00 +0000</pubDate>
<dc:date>2024-08-12T22:30:00+00:00</dc:date>
</item>
<item>
<title>Quoting dang</title>
<link>https://simonwillison.net/2024/Aug/12/dang/#atom-everything</link>
<description> We had to exclude [dead] and eventually even just [flagged] posts from the public API because many third-party clients and sites were displaying them as if they were regular posts. […]
IMO this issue is existential for HN. We've spent years and so much energy trying to find a balance between openness and human decency, a task which oscillates between barely-possible and simply-doomed, so the id</description>
<pubDate>Mon, 12 Aug 2024 22:04:18 +0000</pubDate>
<dc:date>2024-08-12T22:04:18+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/13/nice-change-to.html</link>
<description> Nice change to Pika today @bjhess - thankyou </description>
<pubDate>Mon, 12 Aug 2024 21:20:39 +0000</pubDate>
<dc:date>2024-08-12T21:20:39+00:00</dc:date>
</item>
<item>
<title>Quoting Tom MacWright</title>
<link>https://simonwillison.net/2024/Aug/12/tom-macwright/#atom-everything</link>
<description> But it [LLM assisted programming] does make me wonder whether the adoption of these tools will lead to a form of de-skilling. Not even that programmers will be less skilled, but that the job will drift from the perception and dynamics of a skilled trade to an unskilled trade, with the attendant change - decrease - in pay. Instead of hiring a team of engineers who try to write something of quality</description>
<pubDate>Mon, 12 Aug 2024 20:17:08 +0000</pubDate>
<dc:date>2024-08-12T20:17:08+00:00</dc:date>
</item>
<item>
<title>EUデジタルアイデンティティウォレット EUDIW の Implementing Act (実施法)のパブコメが始まりました</title>
<link>https://www.sakimura.org/2024/08/6196/</link>
<description>8月12日に、EUデジタルアイデンティティウォレット EUDIW の Implementing Act (実施法)のパブコメが始まりました。誰でもパブコメを送ることができます。9月9日までです。 パブコメに付されているのは5本の文書です。それぞれの紹介は上記からリンクをクリックす…</description>
<pubDate>Mon, 12 Aug 2024 15:51:10 +0000</pubDate>
<dc:date>2024-08-12T15:51:10+00:00</dc:date>
</item>
<item>
<title>SQL Injection Isn't Dead: Smuggling Queries at the Protocol Level</title>
<link>https://simonwillison.net/2024/Aug/12/smuggling-queries-at-the-protocol-level/#atom-everything</link>
<description> SQL Injection Isn't Dead: Smuggling Queries at the Protocol Level
PDF slides from a presentation by Paul Gerste at DEF CON 32. It turns out some databases have vulnerabilities in their binary protocols that can be exploited by carefully crafted SQL queries.
Paul demonstrates an attack against PostgreSQL (which works in some but not all of the PostgreSQL client libraries) which uses a message si</description>
<pubDate>Mon, 12 Aug 2024 15:36:47 +0000</pubDate>
<dc:date>2024-08-12T15:36:47+00:00</dc:date>
</item>
<item>
<title>ChatGPT Prompt Construction and a Spreadsheet</title>
<link>https://m-ruminer.medium.com/chatgpt-prompt-construction-and-a-spreadsheet-9c3c0a7d060d?source=rss-7e85224c0a32------2</link>
<description> I decided to do a bit of practice in prompt construction and with a spreadsheet of example software release data. I was curious how well ChatGPT would perform using an Excel spreadsheet of data points. I had seen examples of folks querying across a spreadsheet but you never knew how contrived the experience might be. I decided to see for myself with a limited dataset how it performed. From this si</description>
<pubDate>Mon, 12 Aug 2024 12:49:02 +0000</pubDate>
<dc:date>2024-08-12T12:49:02+00:00</dc:date>
</item>
<item>
<title>Add a Swagger UI using a .NET 9 Json OpenAPI file</title>
<link>https://damienbod.com/2024/08/12/add-a-swagger-ui-using-a-net-9-json-openapi-file/</link>
<description>This post shows how to implement a Swagger UI using a .NET 9 produced OpenAPI file. The Swagger UI is deployed to a secure or development environment and is not deployed to a public production target. Sometimes, it is required to deploy the Swagger UI to a development deployment target and not the test or […]</description>
<pubDate>Mon, 12 Aug 2024 05:41:17 +0000</pubDate>
<dc:date>2024-08-12T05:41:17+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/12/thanks-to-bob.html</link>
<description> 🎵 Thanks to Bob Lefsetz, I just found out about The Last Dinner Party and .. holy crap .. talk about arriving on the scene hot .. with a stunning debut.
Rock is clearly not yet dead. </description>
<pubDate>Mon, 12 Aug 2024 03:22:19 +0000</pubDate>
<dc:date>2024-08-12T03:22:19+00:00</dc:date>
</item>
<item>
<title>Using sqlite-vec with embeddings in sqlite-utils and Datasette</title>
<link>https://simonwillison.net/2024/Aug/11/sqlite-vec/#atom-everything</link>
<description> Using sqlite-vec with embeddings in sqlite-utils and Datasette
My notes on trying out Alex Garcia's newly released sqlite-vec SQLite extension, including how to use it with OpenAI embeddings in both Datasette and sqlite-utils.
Tags: embeddings, sqlite-utils, sqlite, datasette, openai, alex-garcia </description>
<pubDate>Sun, 11 Aug 2024 23:37:42 +0000</pubDate>
<dc:date>2024-08-11T23:37:42+00:00</dc:date>
</item>
<item>
<title>HIPAA法とは何か、その日本への影響について</title>
<link>https://www.sakimura.org/2024/08/6183/</link>
<description>こんにちは、皆さん!今日は、アメリカの医療情報に関する重要な法律であるHIPAA法(Health Insurance Portability and Accountability Act)についてお話しします。そして、この法律が日本にどのような影響を与えているかについても考察して…</description>
<pubDate>Sun, 11 Aug 2024 23:15:00 +0000</pubDate>
<dc:date>2024-08-11T23:15:00+00:00</dc:date>
</item>
<item>
<title>Transformer Explainer</title>
<link>https://simonwillison.net/2024/Aug/11/transformer-explainer/#atom-everything</link>
<description> Transformer Explainer
This is a very neat interactive visualization (with accompanying essay and video - scroll down for those) that explains the Transformer architecture for LLMs, using a GPT-2 model running directly in the browser using the ONNX runtime and Andrej Karpathy's nanoGPT project.
Tags: generative-ai, explorables, d3, ai, llms </description>
<pubDate>Sun, 11 Aug 2024 22:56:33 +0000</pubDate>
<dc:date>2024-08-11T22:56:33+00:00</dc:date>
</item>
<item>
<title>複数のウォレットをiPhoneにインストールすると困る話</title>
<link>https://idmlab.eidentity.jp/2024/08/iphone.html</link>
<description> こんにちは、富士榮です。 先日のMyData JapanカンファレンスではDataSignさんが提供されているOWND Walletへの入場証の発行が可能なことが現地では話題になっていました。 当日のセッションでも代表の太田さんからはオープンソースであるOWND Walletのコードを使ったVESSさんのVESS Walletも紹介され、両方のアプリをインストールした方も多いのではないでしょうか? しかし、当日実際に両方のウォレットアプリがインストールされている状態だとうまく意図したウォレットに入場証明書が入らない、という課題が発生していました。 これはiOSを少しだけ知っている人なら推測がつくと思いますが、OWND WalletとVESS Walletが同じカスタムURLスキーム(openid-credential-offer://など)を使っていることから「後から」インス</description>
<pubDate>Sun, 11 Aug 2024 22:30:00 +0000</pubDate>
<dc:date>2024-08-11T22:30:00+00:00</dc:date>
</item>
<item>
<title>Ladybird set to adopt Swift</title>
<link>https://simonwillison.net/2024/Aug/11/ladybird-set-to-adopt-swift/#atom-everything</link>
<description> Ladybird set to adopt Swift
Andreas Kling on the Ladybird browser project's search for a memory-safe language to use in conjunction with their existing C++ codebase:
Over the last few months, I've asked a bunch of folks to pick some little part of our project and try rewriting it in the different languages we were evaluating. The feedback was very clear: everyone preferred Swift!
Andreas </description>
<pubDate>Sun, 11 Aug 2024 18:38:57 +0000</pubDate>
<dc:date>2024-08-11T18:38:57+00:00</dc:date>
</item>
<item>
<title>PEP 750 – Tag Strings For Writing Domain-Specific Languages</title>
<link>https://simonwillison.net/2024/Aug/11/pep-750/#atom-everything</link>
<description> PEP 750 – Tag Strings For Writing Domain-Specific Languages
A new PEP by Jim Baker, Guido van Rossum and Paul Everitt that proposes introducing a feature to Python inspired by JavaScript's tagged template literals.
F strings in Python already use a f"f prefix", this proposes allowing any Python symbol in the current scope to be used as a string prefix as well.
I'm excited about this. Imagine </description>
<pubDate>Sun, 11 Aug 2024 18:29:26 +0000</pubDate>
<dc:date>2024-08-11T18:29:26+00:00</dc:date>
</item>
<item>
<title>Using gpt-4o-mini as a reranker</title>
<link>https://simonwillison.net/2024/Aug/11/using-gpt-4o-mini-as-a-reranker/#atom-everything</link>
<description> Using gpt-4o-mini as a reranker
Tip from David Zhang: "using gpt-4-mini as a reranker gives you better results, and now with strict mode it's just as reliable as any other reranker model".
David's code here demonstrates the Vercel AI SDK for TypeScript, and its support for structured data using Zod schemas.
const res = await generateObject({
model: gpt4MiniModel,
prompt: `Given the list </description>
<pubDate>Sun, 11 Aug 2024 18:06:19 +0000</pubDate>
<dc:date>2024-08-11T18:06:19+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/11/i-like-the.html</link>
<description> I like the family .. though sunlit continues to be an outlier .. and who else thinks that epilogue’s pages turn the wrong way?
</description>
<pubDate>Sun, 11 Aug 2024 03:20:33 +0000</pubDate>
<dc:date>2024-08-11T03:20:33+00:00</dc:date>
</item>
<item>
<title>選択的開示に関するReview論文を読む(6)</title>
<link>https://idmlab.eidentity.jp/2024/08/review_01737363188.html</link>
<description> こんにちは、富士榮です。 引き続き選択的開示に関する調査論文を読んでいきます。 Selective disclosure in digital credentials: A review https://www.sciencedirect.com/science/article/pii/S2405959524000614 で、結局はどうなのよ、という話です。 ここまで、 ハッシュベース 署名ベース ゼロ知識証明 を使った選択的開示手法について見てきましたが、それぞれ利点と欠点があるはずです。 論文ではそれぞれ以下のように論じています。 ハッシュベース 利点 計算量が少なく済む 欠点 ハッシュ方式によっては破られてしまう(主にソルトを使わない場合) 署名ベース 欠点 計算量が多くなる ゼロ知識証明 </description>
<pubDate>Sat, 10 Aug 2024 22:30:00 +0000</pubDate>
<dc:date>2024-08-10T22:30:00+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/11/somebody-googled-me.html</link>
<description> Somebody googled me recently and emailed me asking if I was ‘the criminal profiler’, or at least connected to him.
I am, and back in 2017, I wrote a little post connecting the two of us.
I have just added the full story of when we ‘met’ a loooong time ago -and appended it to the 2017 post.
🖇️ You will find it here.
(The story started before Google.)
In 2024 if you Google “John Philpin”</description>
<pubDate>Sat, 10 Aug 2024 20:55:15 +0000</pubDate>
<dc:date>2024-08-10T20:55:15+00:00</dc:date>
</item>
<item>
<title>Quoting Jon Udell</title>
<link>https://simonwillison.net/2024/Aug/10/jon-udell/#atom-everything</link>
<description> Some argue that by aggregating knowledge drawn from human experience, LLMs aren’t sources of creativity, as the moniker “generative” implies, but rather purveyors of mediocrity. Yes and no. There really are very few genuinely novel ideas and methods, and I don’t expect LLMs to produce them. Most creative acts, though, entail novel recombinations of known ideas and methods. Because LLMs radically </description>
<pubDate>Sat, 10 Aug 2024 17:57:37 +0000</pubDate>
<dc:date>2024-08-10T17:57:37+00:00</dc:date>
</item>
<item>
<title>How LLMs Guide Us to a Happy Path for Configuration and Coding</title>
<link>https://blog.jonudell.net/2024/08/10/how-llms-guide-us-to-a-happy-path-for-configuration-and-coding/</link>
<description>“Some argue that by aggregating knowledge drawn from human experience, LLMs aren’t sources of creativity, as the moniker “generative” implies, but rather purveyors of mediocrity. Yes and no. There really are very few genuinely novel ideas and methods, and I don’t expect LLMs to produce them. Most creative acts, though, entail novel recombinations of known … Continue reading How LLMs Guide Us to a H</description>
<pubDate>Sat, 10 Aug 2024 17:21:08 +0000</pubDate>
<dc:date>2024-08-10T17:21:08+00:00</dc:date>
</item>
<item>
<title>Webmentions and lobster rolls</title>
<link>https://werd.io/2024/webmentions-and-lobster-rolls</link>
<description>
Webmentions have been broken on this blog for a little while. I’m on vacation this week, so I’m hoping to get them fixed up — as well as a few other fixes here and there. Mostly, though, I have to admit that I’ll be taking the little one to the beach, cooking delicious food, and finding my first lobster roll of the season. I’m looking forward to it. </description>
<pubDate>Sat, 10 Aug 2024 11:57:31 +0000</pubDate>
<dc:date>2024-08-10T11:57:31+00:00</dc:date>
</item>
<item>
<title>Inside Project 2025’s Secret Training Videos</title>
<link>https://werd.io/2024/inside-project-2025s-secret-training-videos</link>
<description>
[Andy Kroll at ProPublica and Nick Surgey at Documented] "Project 2025, the controversial playbook and policy agenda for a right-wing presidential administration, has lost its director and faced scathing criticism from both Democratic groups and former President Donald Trump. But Project 2025’s plan to train an army of political appointees who could battle against the so-call</description>
<pubDate>Sat, 10 Aug 2024 11:36:18 +0000</pubDate>
<dc:date>2024-08-10T11:36:18+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/10/i-dont-know.html</link>
<description> I don’t know much about Nate Silver, read his stuff from time to time — but just heard him on Pesca’s show. He should stick to writing .. talking is not his bag. </description>
<pubDate>Sat, 10 Aug 2024 04:25:04 +0000</pubDate>
<dc:date>2024-08-10T04:25:04+00:00</dc:date>
</item>
<item>
<title>選択的開示に関するReview論文を読む(5)</title>
<link>https://idmlab.eidentity.jp/2024/08/review.html</link>
<description> こんにちは、富士榮です。 引き続き選択的開示に関する調査論文を読んでいきます。 Selective disclosure in digital credentials: A review https://www.sciencedirect.com/science/article/pii/S2405959524000614 今回はブロックチェーンの利用の動向についてです。 当然でしょうが、ブロックチェーンが登場する以前の方法論に関してはブロックチェーンが使われることはありませんでしたが、著者によると2018年からは選択的開示を含むアイデンティティ・ソリューションの一部としてブロックチェーンが利用されるものが増えているとされています。 シンプルすぎる図なのでこれだけだと意味不明ですが50%のソリューションがブロックチェーンを使っている、と著者は書いています。(うー</description>
<pubDate>Sat, 10 Aug 2024 02:29:00 +0000</pubDate>
<dc:date>2024-08-10T02:29:00+00:00</dc:date>
</item>
<item>
<title>Where Facebook's AI Slop Comes From</title>
<link>https://simonwillison.net/2024/Aug/10/where-facebooks-ai-slop-comes-from/#atom-everything</link>
<description> Where Facebook's AI Slop Comes From
Jason Koebler continues to provide the most insightful coverage of Facebook's weird ongoing problem with AI slop (previously).
Who's creating this stuff? It looks to primarily come from individuals in countries like India and the Philippines, inspired by get-rich-quick YouTube influencers, who are gaming Facebook's Creator Bonus Program and flooding the platf</description>
<pubDate>Sat, 10 Aug 2024 00:26:22 +0000</pubDate>
<dc:date>2024-08-10T00:26:22+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/10/does-anyone-happen.html</link>
<description> Does anyone happen to know if the findanyfile.app searches inside mail apps? </description>
<pubDate>Fri, 09 Aug 2024 23:28:52 +0000</pubDate>
<dc:date>2024-08-09T23:28:52+00:00</dc:date>
</item>
<item>
<title>50 years after Nixon’s resignation, some eerie parallels with Trump and the Egypt story</title>
<link>https://werd.io/2024/50-years-after-nixons-resignation-some-eerie-parallels-with-trump</link>
<description>
[Dan Kennedy at Media Nation] "Four years ago, Boston lawyer and journalist James Barron wrote that the Watergate break-in may well have been an attempt to steal documents from Democratic Party headquarters showing that Nixon had taken $549,000 from the Greek government in order to help finance his 1968 campaign." Dan Kennedy argues that there are parallels here with the st</description>
<pubDate>Fri, 09 Aug 2024 15:43:59 +0000</pubDate>
<dc:date>2024-08-09T15:43:59+00:00</dc:date>
</item>
<item>
<title>High-precision date/time in SQLite</title>
<link>https://simonwillison.net/2024/Aug/9/high-precision-datetime-in-sqlite/#atom-everything</link>
<description> High-precision date/time in SQLite
Another neat SQLite extension from Anton Zhiyanov. sqlean-time (C source code here) implements high-precision time and date functions for SQLite, modeled after the design used by Go.
A time is stored as a 64 bit signed integer seconds 0001-01-01 00:00:00 UTC - signed so you can represent dates in the past using a negative number - plus a 32 bit integer of nano</description>
<pubDate>Fri, 09 Aug 2024 15:31:40 +0000</pubDate>
<dc:date>2024-08-09T15:31:40+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/09/can-you-even.html</link>
<description> Can you even imagine …
</description>
<pubDate>Fri, 09 Aug 2024 02:52:37 +0000</pubDate>
<dc:date>2024-08-09T02:52:37+00:00</dc:date>
</item>
<item>
<title>GPT-4o System Card</title>
<link>https://simonwillison.net/2024/Aug/8/gpt-4o-system-card/#atom-everything</link>
<description> GPT-4o System Card
There are some fascinating new details in this lengthy report outlining the safety work carried out prior to the release of GPT-4o.
A few highlights that stood out to me. First, this clear explanation of how GPT-4o differs from previous OpenAI models:
GPT-4o is an autoregressive omni model, which accepts as input any combination of text, audio, image, and video and genera</description>
<pubDate>Thu, 08 Aug 2024 23:58:32 +0000</pubDate>
<dc:date>2024-08-08T23:58:32+00:00</dc:date>
</item>
<item>
<title>OpenID Federation Implementer's draft 4の承認、早くもDraft 37の公開</title>
<link>https://idmlab.eidentity.jp/2024/08/openid-federation-implementers-draft.html</link>
<description>こんにちは、富士榮です。 先日までImplementer's draft 4のVoteが行われていたOpenID Federationですが、7月24日に無事に承認されました。 Fourth Implementer’s Draft of OpenID Federation Approved https://openid.net/fourth-implementers-draft-of-openid-federation-approved/ 関連ポスト) OpenID Federation Implementer's Draft 4の投票が開始されました https://idmlab.eidentity.jp/2024/07/openid-federation-implementers-draft-4.html OpenID Federation Imple</description>
<pubDate>Thu, 08 Aug 2024 22:30:00 +0000</pubDate>
<dc:date>2024-08-08T22:30:00+00:00</dc:date>
</item>
<item>
<title>Gemini 1.5 Flash price drop</title>
<link>https://simonwillison.net/2024/Aug/8/gemini-15-flash-price-drop/#atom-everything</link>
<description> Gemini 1.5 Flash price drop
Google Gemini 1.5 Flash was already one of the cheapest models, at 35c/million input tokens. Today they dropped that to just 7.5c/million (and 30c/million) for prompts below 128,000 tokens.
The pricing war for best value fast-and-cheap model is red hot right now. The current most significant offerings are:
Google's Gemini 1.5 Flash: 7.5c/million input, 30c/millio</description>
<pubDate>Thu, 08 Aug 2024 22:27:40 +0000</pubDate>
<dc:date>2024-08-08T22:27:40+00:00</dc:date>
</item>
<item>
<title>Share Claude conversations by converting their JSON to Markdown</title>
<link>https://simonwillison.net/2024/Aug/8/convert-claude-json-to-markdown/#atom-everything</link>
<description> Share Claude conversations by converting their JSON to Markdown
Anthropic's Claude is missing one key feature that I really appreciate in ChatGPT: the ability to create a public link to a full conversation transcript. You can publish individual artifacts from Claude, but I often find myself wanting to publish the whole conversation.
Before ChatGPT added that feature I solved it myself with this</description>
<pubDate>Thu, 08 Aug 2024 20:40:20 +0000</pubDate>
<dc:date>2024-08-08T20:40:20+00:00</dc:date>
</item>
<item>
<title>Release: pgxn_meta v0.1.0</title>
<link>https://justatheory.com/2024/08/pgxn_meta_release/</link>
<description>Today I released pgxn_meta v0.1.0, a Rust crate and executable for validating
PGXN Meta v1 and v2 META.json files.</description>
<pubDate>Thu, 08 Aug 2024 16:13:21 +0000</pubDate>
<dc:date>2024-08-08T16:13:21+00:00</dc:date>
</item>
<item>
<title>The Pulse #102: Intel’s rough business outlook and full reorg</title>
<link>https://newsletter.pragmaticengineer.com/p/the-pulse-102</link>
<description>Also: AI startup founders keep defecting to Big Tech, buggy app takes Sonos 6 months to fix, CrowdStrike faces huge bills for historic global outage, and more</description>
<pubDate>Thu, 08 Aug 2024 15:59:09 +0000</pubDate>
<dc:date>2024-08-08T15:59:09+00:00</dc:date>
</item>
<item>
<title>django-http-debug, a new Django app mostly written by Claude</title>
<link>https://simonwillison.net/2024/Aug/8/django-http-debug/#atom-everything</link>
<description> Yesterday I finally developed something I’ve been casually thinking about building for a long time: django-http-debug. It’s a reusable Django app - something you can pip install into any Django project - which provides tools for quickly setting up a URL that returns a canned HTTP response and logs the full details of any incoming request to a database table.
This is ideal for any time you want t</description>
<pubDate>Thu, 08 Aug 2024 15:26:27 +0000</pubDate>
<dc:date>2024-08-08T15:26:27+00:00</dc:date>
</item>
<item>
<title>No, the news is not information junk food</title>
<link>https://werd.io/2024/no-the-news-is-not-information-junk-food</link>
<description>
Every so often, a post goes around in tech circles about how news is bad and we shouldn’t pay attention to it. I think that’s ludicrous. Today’s was a post from 2022 called The News is Information Junk Food. I think it’s a bad argument that could have poor consequences. It was featured on Hacker News, so, gods help me, I commented there. Here’s what I said: &nbsp; This is a pretty bad take. </description>
<pubDate>Thu, 08 Aug 2024 13:52:44 +0000</pubDate>
<dc:date>2024-08-08T13:52:44+00:00</dc:date>
</item>
<item>
<title>Quoting Andrej Karpathy</title>
<link>https://simonwillison.net/2024/Aug/8/andrej-karpathy/#atom-everything</link>
<description> The RM [Reward Model] we train for LLMs is just a vibe check […] It gives high scores to the kinds of assistant responses that human raters statistically seem to like. It's not the "actual" objective of correctly solving problems, it's a proxy objective of what looks good to humans. Second, you can't even run RLHF for too long because your model quickly learns to respond in ways that game the rew</description>
<pubDate>Thu, 08 Aug 2024 08:13:26 +0000</pubDate>
<dc:date>2024-08-08T08:13:26+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/08/they-who-are.html</link>
<description> They who are being parodied are apparently seeking this ‘lol’ site to ‘cease and desist’ - because really - there is nothing more important … right?
🔗 Failing What Matters Most - Your Premier EDR (Endpoint Destruction and Razing) Partner Since 2024!
</description>
<pubDate>Thu, 08 Aug 2024 03:27:00 +0000</pubDate>
<dc:date>2024-08-08T03:27:00+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/08/theres-a-new.html</link>
<description> There’s a new Pat Metheny album that I was listening to at the start of yesterday.
At the end of the day watching Stéphane Grappelli and Django from their hey day.
Listening seperation - 12 hours.
Performing seperation - 90 years. </description>
<pubDate>Thu, 08 Aug 2024 01:50:07 +0000</pubDate>
<dc:date>2024-08-08T01:50:07+00:00</dc:date>
</item>
<item>
<title>Braggoscope Prompts</title>
<link>https://simonwillison.net/2024/Aug/7/braggoscope-prompts/#atom-everything</link>
<description> Braggoscope Prompts
Matt Webb's Braggoscope (previously) is an alternative way to browse the archive's of the BBC's long-running radio series In Our Time, including the ability to browse by Dewey Decimal library classification, view related episodes and more.
Matt used an LLM to generate the structured data for the site, based on the episode synopsis on the BBC's episode pages like this one.
</description>
<pubDate>Wed, 07 Aug 2024 23:23:43 +0000</pubDate>
<dc:date>2024-08-07T23:23:43+00:00</dc:date>
</item>
<item>
<title>「信頼」とは?英語の訳語とニュアンスの違い(2)</title>
<link>https://idmlab.eidentity.jp/2024/08/blog-post_8.html</link>
<description>こんにちは、富士榮です。 引き続き「信頼」という言葉についてみていきましょう。 今回は「Confidence(名詞)」をみてみたいと思います。 引き続きOxford English DictionaryとDeepLを使っていきます。 Confidence(名詞) 1. The mental attitude of trusting in or relying on a person or thing; firm trust, reliance, faith. Const. in (†to, on, upon). 人や物事を信頼したり頼りにしたりする心理的な態度。確固とした信頼、依存、信仰。Const. in(~に、~で、~に)。 2.a.&nbsp;The feeling sure or certain&nbsp;of&nbsp;a f</description>
<pubDate>Wed, 07 Aug 2024 22:19:00 +0000</pubDate>
<dc:date>2024-08-07T22:19:00+00:00</dc:date>
</item>
<item>
<title>To Preload, or Not to Preload</title>
<link>https://tembo.io/blog/library-preloading</link>
<description>When should a Postgres extension be pre-loaded and when should it not?
Should it be loaded in user sessions or at server startup? For the Tembo
blog, I</description>
<pubDate>Wed, 07 Aug 2024 18:25:51 +0000</pubDate>
<dc:date>2024-08-07T18:25:51+00:00</dc:date>
</item>
<item>
<title>q What do I title this article?</title>
<link>https://simonwillison.net/2024/Aug/7/q-what-do-i-title-this-article/#atom-everything</link>
<description> q What do I title this article?
Christoffer Stjernlöf built this delightfully simple shell script on top of LLM. Save the following as q somewhere in your path and run chmod 755 on it:
#!/bin/sh
llm -s "Answer in as few words as possible. Use a brief style with short replies." -m claude-3.5-sonnet "$*"
The "$*" piece is the real magic here - it concatenates together all of the positional arg</description>
<pubDate>Wed, 07 Aug 2024 17:32:44 +0000</pubDate>
<dc:date>2024-08-07T17:32:44+00:00</dc:date>
</item>
<item>
<title>Google AI Studio data exfiltration demo</title>
<link>https://simonwillison.net/2024/Aug/7/google-ai-studio-data-exfiltration-demo/#atom-everything</link>
<description> Google AI Studio data exfiltration demo
Johann Rehberger reports yet another example of the classic Markdown exfiltration vulnerability, where a LLM-powered chatbot can be tricked into leaking private information from its context to an external server through rendering a Markdown image with an external URL.
This time it's Google AI Studio, Google's powerful prototyping platform for experimentin</description>
<pubDate>Wed, 07 Aug 2024 17:02:25 +0000</pubDate>
<dc:date>2024-08-07T17:02:25+00:00</dc:date>
</item>
<item>
<title>When split newsrooms work, and when they falter</title>
<link>https://werd.io/2024/when-split-newsrooms-work-and-when-they-falter</link>
<description>
[Bill Grueskin in Columbia Journalism Review] "What’s most important is that a disruptive start-up not be placed at the mercy of the old organization—which might see the upstart as a competitive threat and attempt to have it shut down or cause it to fail." "[...] Newsroom managers must figure out if their current staff is equipped—intellectually, emotionally, technologically</description>
<pubDate>Wed, 07 Aug 2024 13:55:15 +0000</pubDate>
<dc:date>2024-08-07T13:55:15+00:00</dc:date>
</item>
<item>
<title>"Mastodon for Harris" is a Success Story for Fediverse Activism</title>
<link>https://werd.io/2024/mastodon-for-harris-is-a-success-story-for-fediverse-activism</link>
<description>
[Sean Tilley at We Distribute] "Following President Joe Biden’s exit from the 2024 election, Democratic supporters have gained a massive influx of energy and support all over the Web. Hours after the president made his announcement, Heidi Li Feldman, a law professor emeritus at Georgetown University, launched an ActBlue fundraiser comprising of Mastodon users." It's been pr</description>
<pubDate>Wed, 07 Aug 2024 13:31:47 +0000</pubDate>
<dc:date>2024-08-07T13:31:47+00:00</dc:date>
</item>
<item>
<title>BitClout Wasn’t So Decentralized</title>
<link>https://werd.io/2024/bitclout-wasnt-so-decentralized</link>
<description>
[Matt Levine at Bloomberg] "Here’s a thing. It costs $1. If you buy one, the next one will cost $2. If someone buys it, the next one will cost $4. Et cetera. The price of the thing always goes up, leaving every buyer (except the most recent one) with a large guaranteed profit. Of course they can’t sell the thing to realize the profit, but that too is a benefit: If they can’t </description>
<pubDate>Wed, 07 Aug 2024 13:16:16 +0000</pubDate>
<dc:date>2024-08-07T13:16:16+00:00</dc:date>
</item>
<item>
<title>cibuildwheel 2.20.0 now builds Python 3.13 wheels by default</title>
<link>https://simonwillison.net/2024/Aug/6/cibuildwheel/#atom-everything</link>
<description> cibuildwheel 2.20.0 now builds Python 3.13 wheels by default
CPython 3.13 wheels are now built by default […] This release includes CPython 3.13.0rc1, which is guaranteed to be ABI compatible with the final release.
cibuildwheel is an underrated but crucial piece of the overall Python ecosystem.
Python wheel packages that include binary compiled components - packages with C extensions fo</description>
<pubDate>Tue, 06 Aug 2024 22:54:44 +0000</pubDate>
<dc:date>2024-08-06T22:54:44+00:00</dc:date>
</item>
<item>
<title>「信頼」とは?英語の訳語とニュアンスの違い(1)</title>
<link>https://idmlab.eidentity.jp/2024/08/blog-post_07.html</link>
<description> こんにちは、富士榮です。 最近トラストの話ばっかりやっているので色々と文献をあたったりしているのですが、「信頼」という言葉や「トラスト」という言葉の定義や類義語との使い分けが様々すぎてモヤモヤしています。 ということで、困った時はOxford English Distionaryということで調べてみましょう。 https://www.oed.com/ 年間サブスクで100ポンドなので円高にちょっとだけ触れている今は買い時かもしれません。 まず、巷で見かける信頼に関連する英語はTrustをはじめ、Confidence、Assurance、Reliance、Faithなどがありそうです。他にも「信頼できる」という文脈ではTrustworthy、Faithful、Reliable、Credible、Dependableなども見かけます。 早速みていきましょう。</description>
<pubDate>Tue, 06 Aug 2024 22:30:00 +0000</pubDate>
<dc:date>2024-08-06T22:30:00+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/07/we-cant-wait.html</link>
<description>
We can’t wait to see what you will come up with …
My gut says that phrase emerged from Apple and now everyone uses it … Today’s Craft announcement for example.
It’s use is as ubiquitous as
Let’s get to it
The English language is vast - and the ‘vastnesss’ affords occasional variation. </description>
<pubDate>Tue, 06 Aug 2024 21:59:41 +0000</pubDate>
<dc:date>2024-08-06T21:59:41+00:00</dc:date>
</item>
<item>
<title>Observable Plot: Waffle mark</title>
<link>https://simonwillison.net/2024/Aug/6/observable-plot-waffle-mark/#atom-everything</link>
<description> Observable Plot: Waffle mark
New feature in Observable Plot 0.6.16: the waffle mark! I really like this one. Here's an example showing the gender and weight of athletes in this year's Olympics:
Via @mbostock
Tags: observable, visualization, javascript </description>
<pubDate>Tue, 06 Aug 2024 21:40:48 +0000</pubDate>
<dc:date>2024-08-06T21:40:48+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/07/i-am-boycotting.html</link>
<description> I am boycotting Twitter .. sorry, that other name is just stupid. Wondering if I too am going to to be sued .. like Mars et al .. </description>
<pubDate>Tue, 06 Aug 2024 20:41:55 +0000</pubDate>
<dc:date>2024-08-06T20:41:55+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/07/medhi-hasan.html</link>
<description> Medhi Hasan ..
</description>
<pubDate>Tue, 06 Aug 2024 20:33:39 +0000</pubDate>
<dc:date>2024-08-06T20:33:39+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/07/filed-in-the.html</link>
<description> Filed in the #ThingsYouShouldntDoubleDownOnBucket
JD Vance’s Wife: My Husband Only Meant to Insult People Who Actively Choose Not to Have Kids, Not People Who Are Trying but Are Unsuccessful
</description>
<pubDate>Tue, 06 Aug 2024 20:16:55 +0000</pubDate>
<dc:date>2024-08-06T20:16:55+00:00</dc:date>
</item>
<item>
<title>OpenAI: Introducing Structured Outputs in the API</title>
<link>https://simonwillison.net/2024/Aug/6/openai-structured-outputs/#atom-everything</link>
<description> OpenAI: Introducing Structured Outputs in the API
OpenAI have offered structured outputs for a while now: you could specify "response_format": {"type": "json_object"}} to request a valid JSON object, or you could use the function calling mechanism to request responses that match a specific schema.
Neither of these modes were guaranteed to return valid JSON! In my experience they usually did, bu</description>
<pubDate>Tue, 06 Aug 2024 18:32:25 +0000</pubDate>
<dc:date>2024-08-06T18:32:25+00:00</dc:date>
</item>
<item>
<title>Surprise uptick in software engineering recruitment</title>
<link>https://newsletter.pragmaticengineer.com/p/surprise-uptick-in-software-engineering</link>
<description>June and July are usually the quietest months for tech recruitment. This year there’s been a spike in interest from recruiters in software engineers and EMs. We dig into this unexpected, welcome trend</description>
<pubDate>Tue, 06 Aug 2024 15:54:57 +0000</pubDate>
<dc:date>2024-08-06T15:54:57+00:00</dc:date>
</item>
<item>
<title>Weeknotes: a staging environment, a Datasette alpha and a bunch of new LLMs</title>
<link>https://simonwillison.net/2024/Aug/6/staging/#atom-everything</link>
<description> My big achievement for the last two weeks was finally wrapping up work on the Datasette Cloud staging environment. I also shipped a new Datasette 1.0 alpha and added support to the LLM ecosystem for a bunch of newly released models.
A staging environment for Datasette Cloud
Datasette 1.0a14
Llama 3.1 GGUFs and Mistral for LLM
Blog entries
Releases
TILs
A staging env</description>
<pubDate>Tue, 06 Aug 2024 15:41:14 +0000</pubDate>
<dc:date>2024-08-06T15:41:14+00:00</dc:date>
</item>
<item>
<title>It's not partisanship when democracy is at stake</title>
<link>https://werd.io/2024/its-not-partisanship-when-democracy-is-at-stake</link>
<description>
This moment isn’t about partisanship, because the discussions we’re having aren’t about tax policy or the intricacies of how we interact overseas. In 2024, one candidate’s supporters are waving flags that read “mass deportations now”, while the candidate is telling them they’ll never need to vote in another election and calling for the termination of parts of the Constitution. The other candid</description>
<pubDate>Tue, 06 Aug 2024 14:29:13 +0000</pubDate>
<dc:date>2024-08-06T14:29:13+00:00</dc:date>
</item>
<item>
<title>Setting the terms, redux</title>
<link>https://doc.searls.com/2024/08/06/setting-the-terms-redux/</link>
<description>I wrote for Linux Journal from 1996 to 2019, the final years as editor-in-chief. After ownership changed and the whole staff turned over, the new owner, Slashdot Media, agreed to keep the server up so nothing would be 404’d. I am grateful that they have kept that promise. I should add, however, that some of […]</description>
<pubDate>Tue, 06 Aug 2024 14:04:19 +0000</pubDate>
<dc:date>2024-08-06T14:04:19+00:00</dc:date>
</item>
<item>
<title>Implementing an ASP.NET Core API with .NET 9 and OpenAPI</title>
<link>https://damienbod.com/2024/08/06/implementing-an-asp-net-core-api-with-net-9-and-openapi/</link>
<description>This post implements a basic ASP.NET Core API using .NET 9 and the Microsoft OpenAPI implementation. The OpenAPI Nuget package supports both Controller based APIs and minimal APIs. Until now, we used excellent solutions like NSwag to produce the API schemas which can be used to auto-generate client code. Code: https://github.com/damienbod/WebApiOpenApi Setup A .NET 9 […]</description>
<pubDate>Tue, 06 Aug 2024 12:13:15 +0000</pubDate>
<dc:date>2024-08-06T12:13:15+00:00</dc:date>
</item>
<item>
<title>macOS 15.1 Beta 1: Apple Intelligence Backend Prompts</title>
<link>https://simonwillison.net/2024/Aug/6/apple-intelligence-prompts/#atom-everything</link>
<description> macOS 15.1 Beta 1: Apple Intelligence Backend Prompts
Reddit user devanxd2000 found what look like the system prompts for various Apple Intelligence features in the /System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_GenerativeModels folder on their installation of macOS 15.1 Beta 1.
I had incorrectly assumed that tasks like summarization were being handled by fine-tuned models - what Apple h</description>
<pubDate>Tue, 06 Aug 2024 04:34:15 +0000</pubDate>
<dc:date>2024-08-06T04:34:15+00:00</dc:date>
</item>
<item>
<title>A re-introduction for Blaugust</title>
<link>https://werd.io/2024/a-re-introduction-for-blaugust</link>
<description>
So, the Blaugust festival of blogging is a thing. Who knew? For anyone arriving here for the very first time Blaugust is a month-long event that takes place each August which focuses on blogging primarily and has started to include other forms of serialized content over the last several years. The goal is to stoke the fires of creativity and allow bloggers and other content creators to mingle </description>
<pubDate>Tue, 06 Aug 2024 00:22:05 +0000</pubDate>
<dc:date>2024-08-06T00:22:05+00:00</dc:date>
</item>
<item>
<title>Datasette 1.0a14: The annotated release notes</title>
<link>https://simonwillison.net/2024/Aug/5/datasette-1a14/#atom-everything</link>
<description> Released today: Datasette 1.0a14. This alpha includes significant contributions from Alex Garcia, including some backwards-incompatible changes in the run-up to the 1.0 release.
Metadata now lives in a database
datasette-remote-metadata 0.2a0
SQLite isolation_level="IMMEDIATE"
Updating the URLs
Everything else
Tricks to help construct the release notes
Metadata now </description>
<pubDate>Mon, 05 Aug 2024 23:20:01 +0000</pubDate>
<dc:date>2024-08-05T23:20:01+00:00</dc:date>
</item>
<item>
<title>JNSAのデジタルアイデンティティWGから特権ID管理ガイドライン(改訂版)が発行されています</title>
<link>https://idmlab.eidentity.jp/2024/08/jnsawgid.html</link>
<description> こんにちは、富士榮です。 (先日のJNSAの動画のポストをしましたが、このポストを投稿したつもりで書いていました。6月に投稿しようと思って下書き状態で残っていた、というオチなので今更投稿します) JNSAのデジタルアイデンティティWGでは毎年アイデンティティに関する複数のテーマを決めて、サブグループで議論をしています。 昨年は特権ID管理に関するサブグループが成果物作成を一生懸命進めており、今回JNSAのホームページで公開されました。 https://www.jnsa.org/result/digitalidentity/2024/index.html ガイドは 解説編 実践編 に分かれており、概要から入って全体像を理解したい人でも実際にシステム設計〜導入を行う人にもわかりやすいように工夫されているのでぜひダウンロードしてみてみてください。 </description>
<pubDate>Mon, 05 Aug 2024 22:30:00 +0000</pubDate>
<dc:date>2024-08-05T22:30:00+00:00</dc:date>
</item>
<item>
<title>Local RAG with AnythingLLM and Llama 3.1 8B</title>
<link>https://m-ruminer.medium.com/local-rag-with-anythingllm-and-llama-3-1-8b-7157c442e22e?source=rss-7e85224c0a32------2</link>
<description>A ChatGPT generated image I decided to do some retrieval augmented generation(RAG) with Llama 3.1 8B to see how it went. In short, it went pretty well with my limited testing. More interesting is probably how I set it up to perform the&nbsp;RAG. First, I didn’t want to reinvent the wheel. Not yet. I was looing for a way to provide RAG with Llama 3.1 without coding up a user interface for embedding</description>
<pubDate>Mon, 05 Aug 2024 22:13:07 +0000</pubDate>
<dc:date>2024-08-05T22:13:07+00:00</dc:date>
</item>
<item>
<title>Judge rules that Google ‘is a monopolist’ in US antitrust case</title>
<link>https://werd.io/2024/judge-rules-that-google-is-a-monopolist-in-us-antitrust</link>
<description>
[Lauren Feiner at The Verge] "A federal judge ruled that Google violated US antitrust law by maintaining a monopoly in the search and advertising markets. “After having carefully considered and weighed the witness testimony and evidence, the court reaches the following conclusion: Google is a monopolist, and it has acted as one to maintain its monopoly,” the court’s ruling, </description>
<pubDate>Mon, 05 Aug 2024 19:25:57 +0000</pubDate>
<dc:date>2024-08-05T19:25:57+00:00</dc:date>
</item>
<item>
<title>Leaked Documents Show Nvidia Scraping ‘A Human Lifetime’ of Videos Per Day to Train AI</title>
<link>https://simonwillison.net/2024/Aug/5/nvidia-scraping-videos/#atom-everything</link>
<description> Leaked Documents Show Nvidia Scraping ‘A Human Lifetime’ of Videos Per Day to Train AI
Samantha Cole at 404 Media reports on a huge leak of internal NVIDIA communications - mainly from a Slack channel - revealing details of how they have been collecting video training data for a new video foundation model called Cosmos. The data is mostly from YouTube, downloaded via yt-dlp using a rotating set o</description>
<pubDate>Mon, 05 Aug 2024 17:19:36 +0000</pubDate>
<dc:date>2024-08-05T17:19:36+00:00</dc:date>
</item>
<item>
<title>How to Get or Create in PostgreSQL</title>
<link>https://simonwillison.net/2024/Aug/5/how-to-get-or-create-in-postgresql/#atom-everything</link>
<description> How to Get or Create in PostgreSQL
Get or create - for example to retrieve an existing tag record from a database table if it already exists or insert it if it doesn’t - is a surprisingly difficult operation.
Haki Benita uses it to illustrate a variety of interesting PostgreSQL concepts.
New to me: a pattern that runs INSERT INTO tags (name) VALUES (tag_name) RETURNING *; and then catches the</description>
<pubDate>Mon, 05 Aug 2024 15:15:30 +0000</pubDate>
<dc:date>2024-08-05T15:15:30+00:00</dc:date>
</item>
<item>
<title>The significance of Bluesky and decentralized social media</title>
<link>https://werd.io/2024/the-significance-of-bluesky-and-decentralized-social-media</link>
<description>
[Joel Gascoigne] "The larger social networks provide a level of distribution that's worth tapping into, but I strongly encourage investing a portion of your energy into networks where you will be able to maintain ownership long-term." Buffer CEO Joel Gascoigne talks about how the rise of the new, decentralized / federated social networks allow publishers to retain control. </description>
<pubDate>Mon, 05 Aug 2024 14:47:10 +0000</pubDate>
<dc:date>2024-08-05T14:47:10+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/05/riots-and-protests.html</link>
<description> ‘Riots and Protests’ - all bundled together as one .. shouldn’t we expect better from The Grauniad. They are substantially different.
</description>
<pubDate>Mon, 05 Aug 2024 02:44:23 +0000</pubDate>
<dc:date>2024-08-05T02:44:23+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/05/what-incentive-is.html</link>
<description> What incentive is there for a business to focus on process, quality and ‘getting it right’ if even something as big as this has zero financial impact?
Notably, both analysts aren’t predicting a big loss from irate customers asking for compensation, in part because many likely have insurance against these risks. J.P. Morgan guessed CrowdStrike might have to put aside $500 million for potential </description>
<pubDate>Mon, 05 Aug 2024 02:27:08 +0000</pubDate>
<dc:date>2024-08-05T02:27:08+00:00</dc:date>
</item>
<item>
<title>Quoting Erich Gubler</title>
<link>https://simonwillison.net/2024/Aug/5/erich-gubler/#atom-everything</link>
<description> [On WebGPU in Firefox] There is a lot of work to do still to make sure we comply with the spec. in a way that's acceptable to ship in a browser. We're 90% of the way there in terms of functionality, but the last 10% of fixing up spec. changes in the last few years + being significantly more resourced-constrained (we have 3 full-time folks, Chrome has/had an order of magnitude more humans working </description>
<pubDate>Mon, 05 Aug 2024 02:26:40 +0000</pubDate>
<dc:date>2024-08-05T02:26:40+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/05/she-is-the.html</link>
<description>
She is the first female vice president in U.S. history and also the first Black woman to hold the office.
If you are the first female vice president, aren’t you by definition the first black woman to hold the office?
</description>
<pubDate>Mon, 05 Aug 2024 02:19:40 +0000</pubDate>
<dc:date>2024-08-05T02:19:40+00:00</dc:date>
</item>
<item>
<title>結局パスキーはパスすべきなのか?</title>
<link>https://idmlab.eidentity.jp/2024/08/blog-post_05.html</link>
<description> こんにちは、富士榮です。 結局「パスキーはパスすべきなのか?」という話です。 昨日のポストでDean SaxeがIDProに反論記事を書いているということを書きましたが、今日はそちらを見ていきましょう。 Don’t Pass on Passkeys https://idpro.org/dont-pass-on-passkeys/ IDProのポストより 昨日取り上げたポストでは、結局認証器ベンダや同期ファブリックを運営しているベンダと鍵を共有することになる、とか、異なるベンダのプラットフォームを跨いでの鍵の同期や再利用ができないことが指摘されていました。 今回のDeanのポストではそれらの指摘に対して以下のように反論しています。 デバイスにバインドされたパスキーであればTPMやTEE、SEに紐づいているので他者から抜き取られることはない 同期ファブリックは安</description>
<pubDate>Sun, 04 Aug 2024 22:30:00 +0000</pubDate>
<dc:date>2024-08-04T22:30:00+00:00</dc:date>
</item>
<item>
<title>A Most Wanted Man, 2014 - ★★★★½</title>
<link>https://john.philpin.com/2024/08/05/a-most-wanted.html</link>
<description> The only reasons it’s not 5 stars is that I find it hard to give 5 stars because 5 stars means it can’t be improved. Now .. how could this be improved .. I have no idea, just wonderful. Quite wonderful. The original book coming from one of ‘my Johns’ (LeCarre), provided a solid foundation. Cast GREAT. PSH .. magnificent. Cannot be,I eve it’s taken me 10 years to get to it. </description>
<pubDate>Sun, 04 Aug 2024 20:04:51 +0000</pubDate>
<dc:date>2024-08-04T20:04:51+00:00</dc:date>
</item>
<item>
<title>There’s a Tool to Catch Students Cheating With ChatGPT. OpenAI Hasn’t Released It.</title>
<link>https://simonwillison.net/2024/Aug/4/watermarking/#atom-everything</link>
<description> There’s a Tool to Catch Students Cheating With ChatGPT. OpenAI Hasn’t Released It.
This attention-grabbing headline from the Wall Street Journal makes the underlying issue here sound less complex, but there's a lot more depth to it.
The story is actually about watermarking: embedding hidden patterns in generated text that allow that text to be identified as having come out of a specific LLM.
</description>
<pubDate>Sun, 04 Aug 2024 19:11:13 +0000</pubDate>
<dc:date>2024-08-04T19:11:13+00:00</dc:date>
</item>
<item>
<title>What do people really ask chatbots? It’s a lot of sex and homework</title>
<link>https://simonwillison.net/2024/Aug/4/what-do-people-really-ask-chatbots/#atom-everything</link>
<description> What do people really ask chatbots? It’s a lot of sex and homework
Jeremy B. Merrill and Rachel Lerman at the Washington Post analyzed WildChat, a dataset of 1 million ChatGPT-style interactions collected and released by the Allen Institute for AI.
From a random sample of 458 queries they categorized the conversations as 21% creative writing and roleplay, 18% homework help, 17% "search and othe</description>
<pubDate>Sun, 04 Aug 2024 18:59:46 +0000</pubDate>
<dc:date>2024-08-04T18:59:46+00:00</dc:date>
</item>
<item>
<title>Kamala Harris Can Be the Pro-Innovation President Silicon Valley Needs</title>
<link>https://werd.io/2024/kamala-harris-can-be-the-pro-innovation-president-silicon-valley-needs</link>
<description>
[Reid Hoffman in the New York Times] "As Vice President Harris defines her vision for how best to lead the United States in this moment in time, she has an opportunity to take the torch passed to her by President Biden in an explicitly pro-innovation direction. Instead of governing by tweet, Mr. Biden passed bipartisan legislation like the Inflation Reduction Act and the Infr</description>
<pubDate>Sun, 04 Aug 2024 17:36:24 +0000</pubDate>
<dc:date>2024-08-04T17:36:24+00:00</dc:date>
</item>
<item>
<title>Rebasing to reality</title>
<link>https://werd.io/2024/rebasing-to-reality</link>
<description>
Somehow, I need to deal with my sadness. Do we all? It’s like it sits just under the surface, ready to spring up. Is every adult like this? I think it must be more common than anyone talks about. It’s not even that the world is getting harder, between climate change and nationalism and war; it’s the narrowing vice of what it takes to just be alive. There’s no time, there’s no money, we’re all </description>
<pubDate>Sun, 04 Aug 2024 14:08:21 +0000</pubDate>
<dc:date>2024-08-04T14:08:21+00:00</dc:date>
</item>
<item>
<title>A course correction</title>
<link>https://werd.io/2024/a-course-correction</link>
<description>
Over time — and really, over the last few years — this personal space really has evolved to become more about tech and society and less about me. I’m going to add more “me” back. This is my space. </description>
<pubDate>Sun, 04 Aug 2024 12:26:51 +0000</pubDate>
<dc:date>2024-08-04T12:26:51+00:00</dc:date>
</item>
<item>
<title>Children of freed sleeper agents learned they were Russians on the flight, Kremlin says</title>
<link>https://werd.io/2024/children-of-freed-sleeper-agents-learned-they-were-russians-on</link>
<description>
[Dmitry Antonov and Andrew Osborn at Reuters] "A family of Russian sleeper agents flown to Moscow in the biggest East-West prisoner swap since the Cold War were so deep under cover that their children found out they were Russians only after the flight took off, the Kremlin said on Friday." What a bonkers story. It's crazy to me that these kinds of sleeper agents are still r</description>
<pubDate>Sun, 04 Aug 2024 12:24:43 +0000</pubDate>
<dc:date>2024-08-04T12:24:43+00:00</dc:date>
</item>
<item>
<title>パスキーはパスすべきなのか?</title>
<link>https://idmlab.eidentity.jp/2024/08/blog-post_4.html</link>
<description> こんにちは、富士榮です。 パスキー便利ですよね。これまでもパスキー推しのトーンでポストを書いてきましたが、一方でX(旧Twitter)ではうまく使えない、動かない、などの声がリテラシーの高い層からも聞こえてくるのも事実です。 そんな中、IDProが「I’ll Pass (for now) on Passkeys」という記事を先日公開しています。 https://idpro.org/passing-on-passkeys/ IDProの記事より もちろん、IDProとしても著者個人の意見である旨を断った上で記事を掲載していますが、ある方面からの見え方としては正しいこともあるので把握しておくことは大切だと思います。 なお、別途書こうと思いますが、後日Dean Saxeが同じくIDProに反論(?)記事も書いているのでそれはそれで面白いです。 今回は「今の所、パ</description>
<pubDate>Sun, 04 Aug 2024 01:53:00 +0000</pubDate>
<dc:date>2024-08-04T01:53:00+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/04/trying-out-a.html</link>
<description> Trying out a second mechanism for newsletter, blog, podcast and YouTube follows. It’s not binary … more like three strikes you’re out ..
The first I introduced a few months ago … centering around introductions … “blah blah blah, I really don’t care what you are saying, and more often than not … when that opener ends with …
ok .. let’s get too it.
Strike 1.
The new one is that somewhere</description>
<pubDate>Sat, 03 Aug 2024 20:32:14 +0000</pubDate>
<dc:date>2024-08-03T20:32:14+00:00</dc:date>
</item>
<item>
<title>Call for startups</title>
<link>https://werd.io/2024/call-for-startups</link>
<description>
I don’t invest any more, but here are some areas I’d be interested to see startups explore: The hallway track for remote and hybrid teams. One reason many companies are enacting return to office policies is to re-establish cross-pollination across teams. Yes, a strong, intentional remote culture would render that moot, but not every company has that. So what does it look like to build scaffol</description>
<pubDate>Sat, 03 Aug 2024 16:10:14 +0000</pubDate>
<dc:date>2024-08-03T16:10:14+00:00</dc:date>
</item>
<item>
<title>Existential thoughts about Apple’s reliance on Services revenue</title>
<link>https://werd.io/2024/existential-thoughts-about-apples-reliance-on-services-revenue</link>
<description>
[Jason Snell at Six Colors] "In the most recent financial quarter, Apple generated $24.4 billion in revenue from Services. The Mac, iPad, and wearables categories together generated just $22.3 billion. Only the iPhone is more important to Apple’s top line than Services." This is an interesting piece about how Apple's services revenue is set to overtake its hardware business</description>
<pubDate>Sat, 03 Aug 2024 14:32:41 +0000</pubDate>
<dc:date>2024-08-03T14:32:41+00:00</dc:date>
</item>
<item>
<title>I'm Writing Again</title>
<link>https://www.rdegges.com/2024/im-writing-again/</link>
<description>
I can’t believe it’s been over two years since I last published an article here! Time really flies.
The crazy part is that over these last two years, I’ve done more writing than ever; it just hasn’t been public.
Several years back, I started a journaling habit, and since then, most of my writing energy has been redirected from my website to my private journal.
While writing in private fee</description>
<pubDate>Sat, 03 Aug 2024 07:00:00 +0000</pubDate>
<dc:date>2024-08-03T07:00:00+00:00</dc:date>
</item>
<item>
<title>国家資格等のオンライン・デジタル化が始まる</title>
<link>https://idmlab.eidentity.jp/2024/08/blog-post.html</link>
<description> こんにちは、富士榮です。 マイナンバーカード、保険証、運転免許証、など従来は物理カードで発行されていたものがどんどんデジタル化が進んでいます。 日本の場合、国が進めるデジタル資格証明のクレデンシャルフォーマットはmDocになるのでしょうか。やっぱりApple Walletに搭載できるようになるのとISO・デジュール標準であることが大きいのでしょうか。 以前から方針は公開されていましたが、デジタル庁から8月6日より一部の国家資格が実際にデジタル化されることが表明されました。 https://www.digital.go.jp/policies/government-certification#certification 8月6日からデジタル化の対象となるのは、 介護福祉士 社会福祉士 精神保健福祉士 公認心理師 の4つのようですが、今年の11</description>
<pubDate>Sat, 03 Aug 2024 06:40:00 +0000</pubDate>
<dc:date>2024-08-03T06:40:00+00:00</dc:date>
</item>
<item>
<title>Fully-Specified Algorithms Specification Addressing Feedback from IETF 120</title>
<link>https://self-issued.info/?p=2566</link>
<description>Orie Steele and I have updated the “Fully-Specified Algorithms for JOSE and COSE” specification to incorporate feedback from IETF 120 in Vancouver. Specifically, the registrations for fully-specified Elliptic Curve Diffie-Hellman (ECDH) algorithms in draft 03 were removed, along with the previously proposed fully-specified ECDH algorithm identifiers, while continuing to describe how to create fully</description>
<pubDate>Sat, 03 Aug 2024 05:13:30 +0000</pubDate>
<dc:date>2024-08-03T05:13:30+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/03/i-know-i.html</link>
<description> I know I know .. he’s gone .. he’s useless .. he’s too old .. and yet …
At today’s White House announcement, a reporter noted that former president Trump “has said repeatedly that he could have gotten the hostages out without giving anything in exchange,” and asked President Biden: “What do you say to that?”
“Why didn’t he do it when he was president?” Biden answered.&nbsp;&nbsp;
</description>
<pubDate>Sat, 03 Aug 2024 03:13:30 +0000</pubDate>
<dc:date>2024-08-03T03:13:30+00:00</dc:date>
</item>
<item>
<title>生成AIとトラストとDID/VC</title>
<link>https://idmlab.eidentity.jp/2024/08/aididvc.html</link>
<description> こんにちは、富士榮です。 昨日はDIF Japanの第1回Meetupでした。 参考)以前のポスト 会場は他のMeetupも混ぜこぜで大混乱でしたが盛況だったと思います。 写真は三井さんのポストから拝借 個別プレゼンはそこそこで大半がパネルディスカッションという形式でしたが、結果的に色々な(勝手な)意見を出し合うことができて個人的には楽しい時間を過ごせたと思います。 ディスカッションのテーマの一つとして「生成AIとデジタルトラストとDID/VC技術が果たす役割」というものがあったので、最近考えていることを。(昨日聞いておられた方はお話しした内容そのままですが) あくまで個人的見解ですが、以下の2点に強く違和感を感じています。 生成AIとデジタルトラストというキーワードが出てくると、「偽情報」「フェイク」が想起されてしまって、すぐに対策の話にいってしまう </description>
<pubDate>Fri, 02 Aug 2024 02:57:00 +0000</pubDate>
<dc:date>2024-08-02T02:57:00+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/02/just-in-case.html</link>
<description> Just in case you think that all VCs are like Thiel and Andreesen … no … no they are not - they are just the loudest voices with the quietest money.
🔗 VCs for Kamala </description>
<pubDate>Thu, 01 Aug 2024 22:34:45 +0000</pubDate>
<dc:date>2024-08-01T22:34:45+00:00</dc:date>
</item>
<item>
<title>Fewer digital news outlets launched last year</title>
<link>https://werd.io/2024/fewer-digital-news-outlets-launched-last-year</link>
<description>
[Nieman Journalism Lab] "The number of digital news startup launches has been slowing since 2022 in Europe, Latin America, and North America, according to the new Global Project Oasis report. Global Project Oasis, a research project funded by the Google News Initiative that maps digital-native news startups globally, cited economic challenges, slow growth, and political confl</description>
<pubDate>Thu, 01 Aug 2024 15:03:23 +0000</pubDate>
<dc:date>2024-08-01T15:03:23+00:00</dc:date>
</item>
<item>
<title>OpenID Federation Wallet Architectureの仕様提案が出ています</title>
<link>https://idmlab.eidentity.jp/2024/08/openid-federation-wallet-architecture.html</link>
<description>こんにちは、富士榮です。 OpenID FoundationのConnect A/B Working Groupへ「OpenID Federation Wallet Architectures 1.0」という仕様案が投げ込まれています。 https://peppelinux.github.io/federation-wallet/main.html レポジトリ名を見ているとGiuseppeのアカウントですね。 AuthorはG. De Marco、R. Hedberg、M. Jones、J. Bradleyとなっています。 イタリアではOpenID Federationが使われていますし、John BradleyはwwWalletを作っていますので順当なメンバーですね。 Abstractを見るとシンプルに、 This specificatio</description>
<pubDate>Wed, 31 Jul 2024 22:30:00 +0000</pubDate>
<dc:date>2024-07-31T22:30:00+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/08/01/our-country-should.html</link>
<description>
Our country should move forward, not backward; upward, not forward; and always twirling, twirling, twirling toward freedom.
</description>
<pubDate>Wed, 31 Jul 2024 21:20:35 +0000</pubDate>
<dc:date>2024-07-31T21:20:35+00:00</dc:date>
</item>
<item>
<title>Started Llama 3.1 8B Locally</title>
<link>https://m-ruminer.medium.com/started-llama-3-1-8b-locally-5bab61180a28?source=rss-7e85224c0a32------2</link>
<description> I started a load of Llama 3.1 8B onto my local machine. It’s not the beefiest model but is the model that I could support on my aging machine and GPU. I have not yet had time to play with it but this is step one of a multi step experiment. It took me less than 30 minutes to get up and running and that is an estimate on the far end. The bulk of that time was deciding if a specific tool was support</description>
<pubDate>Wed, 31 Jul 2024 12:38:02 +0000</pubDate>
<dc:date>2024-07-31T12:38:02+00:00</dc:date>
</item>
<item>
<title>JNSAデジタルアイデンティティWGから「特権ID管理解説書」の解説動画が出ています</title>
<link>https://idmlab.eidentity.jp/2024/07/jnsawgid.html</link>
<description>こんにちは、富士榮です。 JNSAのデジタルアイデンティティWGから「特権ID管理解説書」が出ているのは以前お伝えした?通りですが、WGリーダーの宮川さんから解説書の解説動画が出ています。 特権ID管理の話のみならず、当該WGの成り立ちやこれまでの歩みにも触れられていますので、昔の状況について知りたい人にもおすすめです。(ワーキンググループはすでに設立19年!の老舗WGです。来年は20周年記念です!素晴らしい。と言うことはほぼ初期から参加している私もすでに19年以上IDやってるのか・・・) なお、特権ID管理解説書はこちらから参照できます。 https://www.jnsa.org/result/digitalidentity/2024/index.html いずれにしてもおすすめなのでぜひご覧ください。 </description>
<pubDate>Tue, 30 Jul 2024 22:30:00 +0000</pubDate>
<dc:date>2024-07-30T22:30:00+00:00</dc:date>
</item>
<item>
<title>Coinbase appears to have violated campaign finance laws with a $25 million super PAC donation</title>
<link>https://werd.io/2024/coinbase-appears-to-have-violated-campaign-finance-laws-with-a</link>
<description>
[Molly White] "With $45.5 million in corporate contributions, American cryptocurrency exchange Coinbase is the largest donor to Fairshake: a newly-minted super PAC focused solely on installing political candidates who will be friendly to the cryptocurrency industry, and ousting those with a history of pushing for stronger regulations and consumer protections when it comes to </description>
<pubDate>Tue, 30 Jul 2024 21:32:23 +0000</pubDate>
<dc:date>2024-07-30T21:32:23+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/07/31/so-thats-all.html</link>
<description> So that’s all right then …
</description>
<pubDate>Tue, 30 Jul 2024 21:17:36 +0000</pubDate>
<dc:date>2024-07-30T21:17:36+00:00</dc:date>
</item>
<item>
<title>When not to LLM</title>
<link>https://blog.jonudell.net/2024/07/30/when-not-to-llm/</link>
<description>Here’s the latest installment in the series on working with LLMS: https://thenewstack.io/choosing-when-to-use-or-not-use-llms-as-a-developer/ For certain things, the LLM is a clear win. If I’m looking at an invalid blob of JSON that won’t even parse, there’s no reason to avoid augmentation. My brain isn’t a fuzzy parser — I’m just not wired to see that kind … Continue reading When not to LLM</description>
<pubDate>Tue, 30 Jul 2024 20:21:15 +0000</pubDate>
<dc:date>2024-07-30T20:21:15+00:00</dc:date>
</item>
<item>
<title>Trump Media Made Deal Involving GOP Donor James E. Davison</title>
<link>https://werd.io/2024/trump-media-made-deal-involving-gop-donor-james-e-davison</link>
<description>
[Justin Elliott, Robert Faturechi and Alex Mierjeski at ProPublica] The majority of Donald Trump's net worth is wrapped up in Truth Social's parent company Trump Media &amp; Technology Group. If he's elected, its deals and ownership structure will present conflicts of interests - illustrated by this ProPublica investigation into its streaming TV deal: "The deal announced by </description>
<pubDate>Tue, 30 Jul 2024 15:45:54 +0000</pubDate>
<dc:date>2024-07-30T15:45:54+00:00</dc:date>
</item>
<item>
<title>Perplexity is cutting checks to publishers following plagiarism accusations</title>
<link>https://werd.io/2024/perplexity-is-cutting-checks-to-publishers-following-plagiarism-accusations</link>
<description>
[Kylie Robison at The Verge] "Perplexity’s “Publishers’ Program” has recruited its first batch of partners, including prominent names like Time, Der Spiegel, Fortune, Entrepreneur, The Texas Tribune, and Automattic (with WordPress.com participating but not Tumblr). Under this program, when Perplexity features content from these publishers in response to user queries, the publ</description>
<pubDate>Tue, 30 Jul 2024 15:02:59 +0000</pubDate>
<dc:date>2024-07-30T15:02:59+00:00</dc:date>
</item>
<item>
<title>FINOLABでの7/6の講演「デジタルIDをめぐる日本と海外の状況」が公開されました。</title>
<link>https://www.sakimura.org/2024/07/6174/</link>
<description>7月8日にFINOLABで行った講演が公開されました » (35) デジタルIDとプライバシー ~欧州の事例と世界のトレンド~ – YouTube わり上手にお話できていると思いますので、ぜひ御覧ください。</description>
<pubDate>Tue, 30 Jul 2024 15:01:46 +0000</pubDate>
<dc:date>2024-07-30T15:01:46+00:00</dc:date>
</item>
<item>
<title>選択的開示に関するReview論文を読む(4)</title>
<link>https://idmlab.eidentity.jp/2024/07/review_0990573500.html</link>
<description>こんにちは、富士榮です。 引き続き選択的開示に関する調査論文を読んでいきます。 Selective disclosure in digital credentials: A review https://www.sciencedirect.com/science/article/pii/S2405959524000614 今回はゼロ知識証明(ZKP)の利用に関してです。 著者が調査した論文の60%がZKPについて言及されていたようですが、本論文では選択的開示のための手法としてZKPを利用しているものを対象として扱っています。 なお、著者はZKPを利用することで選択的開示について以下のように補完することができると述べています。 Granular control over data sharing — necessary attribu</description>
<pubDate>Mon, 29 Jul 2024 22:30:00 +0000</pubDate>
<dc:date>2024-07-29T22:30:00+00:00</dc:date>
</item>
<item>
<title>Untitled</title>
<link>https://john.philpin.com/2024/07/30/we-all-believe.html</link>
<description> We all believe Zuck about the importance of Open when it comes to LLMs - right?
</description>
<pubDate>Mon, 29 Jul 2024 20:29:38 +0000</pubDate>
<dc:date>2024-07-29T20:29:38+00:00</dc:date>
</item>
<item>
<title>Mail, Mirror, Express and Independent roll out 'consent or pay' walls</title>
<link>https://werd.io/2024/mail-mirror-express-and-independent-roll-out-consent-or-pay</link>
<description>
[Bron Maher at PressGazette] "Mail Online, The Independent and the websites of the Daily Mirror and Daily Express have begun requiring readers to pay for access if they do not consent to third-party cookies." I believe this would have been illegal were the UK still a part of the EU. Meta is in trouble for a similar sort of scheme. Here, though, in a UK free from EU constrai</description>
<pubDate>Mon, 29 Jul 2024 19:46:49 +0000</pubDate>
<dc:date>2024-07-29T19:46:49+00:00</dc:date>
</item>
<item>
<title>村上 康二郎「情報プライバシー権の類型化に向けた一考察」を読んだ</title>
<link>https://www.sakimura.org/2024/07/6171/</link>
<description>村上 康二郎「情報プライバシー権の類型化に向けた一考察」は、自己情報コントロール権説を含むこれまでの情報プライバシー権について幅広くサーベイしたうえで、それらを総合する新たな類型を提案する査読付き論文である。 概要 概要は以下のような感じ 情報プライバシー権の重要性と変化 プライ…</description>
<pubDate>Mon, 29 Jul 2024 18:03:29 +0000</pubDate>
<dc:date>2024-07-29T18:03:29+00:00</dc:date>
</item>
<item>
<title>Do We Need Blockchain for LERs? No.</title>
<link>https://blog.dcconsortium.org/do-we-need-blockchain-for-lers-no-9f5a40c2bb51?source=rss-eccb4b25c339------2</link>
<description> When explaining the W3C Verifiable Credential Data Model (VC), Open Badges 3.0, and LERs, I’m often asked about the role of blockchain and if I’m not asked, I feel compelled to explain because misconceptions and confusion are common. Blockchain is one of those technologies that is at once fascinating and cringey, useful and over-used. The business models are still experimental and when it comes do</description>
<pubDate>Mon, 29 Jul 2024 17:56:56 +0000</pubDate>
<dc:date>2024-07-29T17:56:56+00:00</dc:date>
</item>
<item>
<title>What Are Portable, Verifiable Digital Credentials?</title>
<link>https://blog.dcconsortium.org/what-are-portable-verifiable-digital-credentials-290363ca5022?source=rss-eccb4b25c339------2</link>
<description> The Digital Credentials Consortium (DCC) is advancing the use and understanding of portable, verifiable digital credentials in higher education through open source technology development and leadership, research, and advocacy. What are portable, verifiable digital credentials and why is it important that we advance their&nbsp;use? Digital credentials at their most basic definition are electronic </description>
<pubDate>Mon, 29 Jul 2024 15:46:34 +0000</pubDate>
<dc:date>2024-07-29T15:46:34+00:00</dc:date>
</item>
<item>
<title>Gaining Steam: Far-Right Radicalisation on Gaming Platforms</title>
<link>https://werd.io/2024/gaining-steam-far-right-radicalisation-on-gaming-platforms</link>
<description>
[Shiraz Shaikh on Global Network on Extremism &amp; Technology] "Video games and their associated platforms are vastly becoming hubs of radicalisation, extremism and recruitment by far-right extremist organisations. The development of bespoke games and modifications, often known as MODs, has given extremist organisations the ability to further spread their digital propaganda.</description>
<pubDate>Mon, 29 Jul 2024 13:30:42 +0000</pubDate>
<dc:date>2024-07-29T13:30:42+00:00</dc:date>
</item>
<item>
<title>Initial AI Adventures in crewAI</title>