-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrss2.xml
1181 lines (1181 loc) · 253 KB
/
rss2.xml
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:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Hacker News Daily Top 30</title>
<link>https://github.com/meixger/hackernews-daily/issues/</link>
<description>Hacker News Daily Top 30</description>
<lastBuildDate>Sun, 13 Apr 2025 06:16:56 GMT</lastBuildDate>
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
<generator>https://github.com/jpmonette/feed</generator>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-12]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/939</link>
<guid>939</guid>
<pubDate>Sat, 12 Apr 2025 06:15:54 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://rakhim.exotext.com/but-what-if-i-really-want-a-faster-horse"><strong>But what if I want a faster horse?</strong> <code>rakhim.exotext.com</code></a> - <a href="https://news.ycombinator.com/item?id=43652723">544 comments 1260 points</a></li>
<li><a href="https://www.dropsitenews.com/p/leaked-data-israeli-censorship-meta"><strong>Leaked data reveals Israeli govt campaign to remove pro-Palestine posts on Meta</strong> <code>www.dropsitenews.com</code></a> - <a href="https://news.ycombinator.com/item?id=43655603">500 comments 805 points</a></li>
<li><a href="https://www.londonunderground.live/"><strong>Live Map of the London Underground</strong> <code>www.londonunderground.live</code></a> - <a href="https://news.ycombinator.com/item?id=43651390">107 comments 467 points</a></li>
<li><a href="https://www.reuters.com/world/us/pentagon-terminate-51-billion-it-contracts-with-accenture-deloitte-others-2025-04-11/"><strong>Pentagon to terminate $5.1B in IT contracts with Accenture, Deloitte</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43653004">594 comments 465 points</a></li>
<li><a href="https://lwn.net/Articles/1014979/"><strong>Fedora change aims for 99% package reproducibility</strong> <code>lwn.net</code></a> - <a href="https://news.ycombinator.com/item?id=43653672">164 comments 337 points</a></li>
<li><a href="https://terriblesoftware.org/2025/03/31/your-strengths-are-your-weaknesses/"><strong>Strengths Are Your Weaknesses</strong> <code>terriblesoftware.org</code></a> - <a href="https://news.ycombinator.com/item?id=43652024">97 comments 307 points</a></li>
<li><a href="https://petapixel.com/2025/04/10/adobe-deletes-bluesky-posts-after-furious-backlash/"><strong>Adobe deletes Bluesky posts after backlash</strong> <code>petapixel.com</code></a> - <a href="https://news.ycombinator.com/item?id=43653885">390 comments 295 points</a></li>
<li><a href="http://funcall.blogspot.com/2025/04/why-i-program-in-lisp.html"><strong>Why I Program in Lisp</strong> <code>funcall.blogspot.com</code></a> - <a href="https://news.ycombinator.com/item?id=43651576">224 comments 254 points</a></li>
<li><a href="https://stevana.github.io/erlangs_not_about_lightweight_processes_and_message_passing.html"><strong>Erlang's not about lightweight processes and message passing (2023)</strong> <code>stevana.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43655221">131 comments 236 points</a></li>
<li><a href="https://hntrl.io/posts/you-dont-need-websockets/"><strong>You might not need WebSockets</strong> <code>hntrl.io</code></a> - <a href="https://news.ycombinator.com/item?id=43659370">142 comments 212 points</a></li>
<li><a href="https://www.wired.com/story/social-security-administration-regional-office-elon-musk-x/"><strong>Social Security Administration Moving Public Communications to X</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43657079">163 comments 204 points</a></li>
<li><a href="https://chrismalek.me/posts/data-star-first-impressions/"><strong>Datastar: Web Framework for the Future?</strong> <code>chrismalek.me</code></a> - <a href="https://news.ycombinator.com/item?id=43655914">105 comments 196 points</a></li>
<li><a href="https://www.science.org/content/article/germany-creates-super-high-tech-ministry-research-technology-and-aerospace"><strong>Germany creates 'super–high-tech ministry' for research, technology, aerospace</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=43658060">176 comments 176 points</a></li>
<li><a href="https://www.nytimes.com/2025/04/11/science/russian-scientist-ice-detained-harvard.html"><strong>She Worked in a Harvard Lab to Reverse Aging, Until ICE Jailed Her</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43653998">68 comments 158 points</a></li>
<li><a href="https://neurofrontiers.blog/why-lead-is-still-bad-for-your-brain/"><strong>Lead is still bad for your brain</strong> <code>neurofrontiers.blog</code></a> - <a href="https://news.ycombinator.com/item?id=43651532">136 comments 155 points</a></li>
<li><a href="https://www.hodinkee.com/articles/introducing-vacheron-constantin-les-cabinotiers-solaria"><strong>Vacheron Constantin breaks the world record for most complicated wristwatch</strong> <code>www.hodinkee.com</code></a> - <a href="https://news.ycombinator.com/item?id=43659365">119 comments 153 points</a></li>
<li><a href="https://www.economist.com/europe/2025/04/10/the-thing-about-europe-its-the-actual-land-of-the-free-now"><strong>The thing about Europe: it's the actual land of the free now</strong> <code>www.economist.com</code></a> - <a href="https://news.ycombinator.com/item?id=43651489">248 comments 152 points</a></li>
<li><a href="https://www.theregister.com/2025/04/11/windows_2000_best_microsoft/"><strong>Windows 2000 Server named peak Microsoft</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=43653421">188 comments 136 points</a></li>
<li><a href="https://darkcephas.github.io/ps3_failed/ps3_failed.html"><strong>The PS3 Licked the Many Cookie</strong> <code>darkcephas.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43656279">104 comments 127 points</a></li>
<li><a href="https://togithub.com/Rust-GPU/Rust-CUDA"><strong>Rust CUDA Project</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43654881">38 comments 126 points</a></li>
<li><a href="https://www.howtomakealongbow.co.uk"><strong>How to Make a Longbow</strong> <code>www.howtomakealongbow.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43652160">38 comments 125 points</a></li>
<li><a href="https://webrtcforthecurious.com"><strong>WebRTC for the Curious</strong> <code>webrtcforthecurious.com</code></a> - <a href="https://news.ycombinator.com/item?id=43654813">28 comments 120 points</a></li>
<li><a href="https://gpuopen.com/learn/bilinear-interpolation-quadrilateral-barycentric-coordinates/"><strong>Bilinear interpolation on a quadrilateral using Barycentric coordinates</strong> <code>gpuopen.com</code></a> - <a href="https://news.ycombinator.com/item?id=43654912">28 comments 114 points</a></li>
<li><a href="https://info.varnish-software.com/blog/tinykvm-in-varnish-and-some-deno"><strong>Deno Under TinyKVM in Varnish</strong> <code>info.varnish-software.com</code></a> - <a href="https://news.ycombinator.com/item?id=43650792">23 comments 98 points</a></li>
<li><a href="https://data-and-politics.ghost.io/70-million-in-60-seconds-how-insider-information-helped-someone-28x-their-money/"><strong>$70M in 60 Seconds: How Insider Info Helped Someone 28x Their Money</strong> <code>data-and-politics.ghost.io</code></a> - <a href="https://news.ycombinator.com/item?id=43661680">15 comments 91 points</a></li>
<li><a href="https://www.mikekohn.net/micro/modern_6502.php"><strong>Modern 6502</strong> <code>www.mikekohn.net</code></a> - <a href="https://news.ycombinator.com/item?id=43656609">7 comments 88 points</a></li>
<li><a href="https://www.smithsonianmag.com/science-nature/you-might-think-of-shrimp-as-bugs-of-the-sea-but-a-remarkable-discovery-shows-the-opposite-bugs-are-actually-shrimp-of-the-land-180986303/"><strong>A recent study suggests that insects branched out from crustaceans</strong> <code>www.smithsonianmag.com</code></a> - <a href="https://news.ycombinator.com/item?id=43658093">81 comments 83 points</a></li>
<li><a href="https://arstechnica.com/security/2025/04/microsoft-is-putting-privacy-endangering-recall-back-into-windows-11/"><strong>That groan you hear is users' reaction to Recall going back into Windows</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43660914">75 comments 83 points</a></li>
<li><a href="https://www.wsj.com/us-news/mark-klein-whistleblower-dies-73f434c7"><strong>Mark Klein, a Whistleblower Who Revealed Domestic Spying, Dies at 79</strong> <code>www.wsj.com</code></a> - <a href="https://news.ycombinator.com/item?id=43657377">14 comments 82 points</a></li>
<li><a href="https://wordpress.com/blog/2025/04/09/ai-website-builder/"><strong>Our New AI Website Builder</strong> <code>wordpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=43654279">62 comments 81 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-11]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/938</link>
<guid>938</guid>
<pubDate>Fri, 11 Apr 2025 06:18:15 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://garfieldminusgarfield.net"><strong>Garfield Minus Garfield</strong> <code>garfieldminusgarfield.net</code></a> - <a href="https://news.ycombinator.com/item?id=43646095">202 comments 552 points</a></li>
<li><a href="https://susam.net/hn-bell.html"><strong>Hacker News Hug of Deaf</strong> <code>susam.net</code></a> - <a href="https://news.ycombinator.com/item?id=43642123">101 comments 434 points</a></li>
<li><a href="https://peps.python.org/pep-0750/"><strong>PEP 750 – Template Strings</strong> <code>peps.python.org</code></a> - <a href="https://news.ycombinator.com/item?id=43647716">251 comments 374 points</a></li>
<li><a href="https://emilygorcenski.com/post/owning-my-own-data-part-1-integrating-a-self-hosted-calendar-solution/"><strong>Owning my own data, part 1: Integrating a self-hosted calendar solution</strong> <code>emilygorcenski.com</code></a> - <a href="https://news.ycombinator.com/item?id=43643343">125 comments 339 points</a></li>
<li><a href="http://www.modelshipsinthecinema.com/2016/12/hunt-for-red-october-1990.html"><strong>Hunt for Red October 1990 (2016)</strong> <code>www.modelshipsinthecinema.com</code></a> - <a href="https://news.ycombinator.com/item?id=43641469">130 comments 316 points</a></li>
<li><a href="https://busy.bar"><strong>Busy Bar</strong> <code>busy.bar</code></a> - <a href="https://news.ycombinator.com/item?id=43643534">137 comments 255 points</a></li>
<li><a href="https://techcrunch.com/2025/04/10/fintech-founder-charged-with-fraud-after-ai-shopping-app-found-to-be-powered-by-humans-in-the-philippines/"><strong>Fintech founder charged with fraud; AI app found to be humans in the Philippines</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=43648950">107 comments 240 points</a></li>
<li><a href="https://www.thecoder.cafe/p/100-go-mistakes"><strong>The Story Behind “100 Go Mistakes and How to Avoid Them”</strong> <code>www.thecoder.cafe</code></a> - <a href="https://news.ycombinator.com/item?id=43647880">62 comments 227 points</a></li>
<li><a href="https://www.nature.com/articles/d41586-025-00964-w"><strong>Sleep is essential – researchers are trying to work out why</strong> <code>www.nature.com</code></a> - <a href="https://news.ycombinator.com/item?id=43643390">155 comments 226 points</a></li>
<li><a href="https://developers.redhat.com/articles/2025/04/10/6-usability-improvements-gcc-15"><strong>Usability Improvements in GCC 15</strong> <code>developers.redhat.com</code></a> - <a href="https://news.ycombinator.com/item?id=43643886">178 comments 224 points</a></li>
<li><a href="https://www.bigbookofr.com/"><strong>Big Book of R</strong> <code>www.bigbookofr.com</code></a> - <a href="https://news.ycombinator.com/item?id=43646219">63 comments 212 points</a></li>
<li><a href="https://inclouds.space/localhost-domains"><strong>.localhost Domains</strong> <code>inclouds.space</code></a> - <a href="https://news.ycombinator.com/item?id=43644043">140 comments 203 points</a></li>
<li><a href="https://www.cheeseprofessor.com/blog/cheese-wheel-tapping"><strong>Why Tap a Wheel of Cheese?</strong> <code>www.cheeseprofessor.com</code></a> - <a href="https://news.ycombinator.com/item?id=43644970">124 comments 175 points</a></li>
<li><a href="https://susam.net/elliptical-python-programming.html"><strong>Elliptical Python Programming</strong> <code>susam.net</code></a> - <a href="https://news.ycombinator.com/item?id=43643292">21 comments 173 points</a></li>
<li><a href="https://www.muppetlabs.com/~breadbox/txt/mopb.html"><strong>My Own Private Binary: An Idiosyncratic Introduction to Linux Kernel Modules</strong> <code>www.muppetlabs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43647294">13 comments 163 points</a></li>
<li><a href="https://www.openculture.com/2025/04/isaac-asimov-describes-how-ai-will-liberate-humans-their-creativity.html"><strong>Isaac Asimov describes how AI will liberate humans and their creativity (1992)</strong> <code>www.openculture.com</code></a> - <a href="https://news.ycombinator.com/item?id=43644179">211 comments 153 points</a></li>
<li><a href="https://www.404media.co/how-a-2-000-made-in-the-usa-liberty-phone-phone-is-manufactured/"><strong>How a $2k 'Made in the USA' Phone Is Manufactured</strong> <code>www.404media.co</code></a> - <a href="https://news.ycombinator.com/item?id=43646920">173 comments 144 points</a></li>
<li><a href="https://www.theatlantic.com/health/archive/2025/04/air-pollution-trump-administration/682361/"><strong>America Is Backsliding Toward Its Most Polluted Era</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43643243">182 comments 141 points</a></li>
<li><a href="https://developer.mozilla.org/en-US/blog/h1-element-styles/"><strong>Default styles for h1 elements are changing</strong> <code>developer.mozilla.org</code></a> - <a href="https://news.ycombinator.com/item?id=43649853">86 comments 137 points</a></li>
<li><a href="https://azmirror.com/2025/04/08/ice-director-envisions-amazon-like-mass-deportation-system-prime-but-with-human-beings/"><strong>ICE director envisions Amazon-like mass deportation system</strong> <code>azmirror.com</code></a> - <a href="https://news.ycombinator.com/item?id=43641402">104 comments 132 points</a></li>
<li><a href="https://crocidb.com/post/kernel-adventures/demystifying-the-shebang/"><strong>Demystifying the (Shebang): Kernel Adventures</strong> <code>crocidb.com</code></a> - <a href="https://news.ycombinator.com/item?id=43646698">29 comments 129 points</a></li>
<li><a href="https://www.theguardian.com/technology/2025/apr/10/black-mirror-tv-show-pessimism"><strong>Black Mirror's pessimism porn won't lead us to a better future</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43648890">108 comments 127 points</a></li>
<li><a href="https://macintoshgarden.org/apps/sdl2-macos-9-rough-draft"><strong>SDL2 for macOS 9 “rough draft”</strong> <code>macintoshgarden.org</code></a> - <a href="https://news.ycombinator.com/item?id=43645183">51 comments 111 points</a></li>
<li><a href="https://www.arroyo.dev/blog/arroyo-is-joining-cloudflare"><strong>Arroyo (YC W23) has been acquired by Cloudflare</strong> <code>www.arroyo.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43643968">33 comments 102 points</a></li>
<li><a href="https://eqbench.com/creative_writing_longform.html"><strong>LLM Benchmark for 'Longform Creative Writing'</strong> <code>eqbench.com</code></a> - <a href="https://news.ycombinator.com/item?id=43641381">87 comments 94 points</a></li>
<li><a href="https://koreo.dev/"><strong>Show HN: Koreo – A platform engineering toolkit for Kubernetes</strong> <code>koreo.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43644351">29 comments 91 points</a></li>
<li><a href="https://old.reddit.com/r/ABoringDystopia/comments/1jw34qx/attorney_representing_a_student_protester/"><strong>Attorney representing a student protester detained by federal immigration agents</strong> <code>old.reddit.com</code></a> - <a href="https://news.ycombinator.com/item?id=43647812">27 comments 88 points</a></li>
<li><a href="https://www.npr.org/2025/04/09/nx-s1-5357455/attorney-detained-by-immigration-authorities"><strong>Attorney representing a student protester detained by federal immigration agents</strong> <code>www.npr.org</code></a> - <a href="https://news.ycombinator.com/item?id=43647939">8 comments 83 points</a></li>
<li><a href="https://grist.org/looking-forward/frances-new-high-speed-train-design-has-americans-asking-why-cant-we-have-that/"><strong>France's new high-speed train has Americans asking: Why can't we have that?</strong> <code>grist.org</code></a> - <a href="https://news.ycombinator.com/item?id=43641300">134 comments 78 points</a></li>
<li><a href="https://machinelearning.apple.com/research/transporting-activations"><strong>Controlling Language and Diffusion Models by Transporting Activations</strong> <code>machinelearning.apple.com</code></a> - <a href="https://news.ycombinator.com/item?id=43646466">12 comments 76 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-10]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/937</link>
<guid>937</guid>
<pubDate>Thu, 10 Apr 2025 06:18:42 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.cnbc.com/2025/04/09/trump-announces-90-day-tariff-pause-for-at-least-some-countries.html"><strong>Trump temporarily drops tariffs to 10% for most countries</strong> <code>www.cnbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43634806">1212 comments 640 points</a></li>
<li><a href="https://endler.dev/2025/best-programmers/"><strong>The best programmers I know</strong> <code>endler.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43629307">288 comments 546 points</a></li>
<li><a href="https://twitter.com/dieworkwear/status/1909741170953273353"><strong>How much do you think it costs to make a pair of Nike shoes in Asia?</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631543">695 comments 489 points</a></li>
<li><a href="https://developers.googleblog.com/en/a2a-a-new-era-of-agent-interoperability/"><strong>The Agent2Agent Protocol (A2A)</strong> <code>developers.googleblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631381">236 comments 412 points</a></li>
<li><a href="https://blog.google/products/google-cloud/ironwood-tpu-age-of-inference/"><strong>Ironwood: The first Google TPU for the age of inference</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=43631274">152 comments 392 points</a></li>
<li><a href="https://thehill.com/homenews/senate/5241043-meta-executives-undermine-national-security/"><strong>Whistleblower tells senators that Meta undermined U.S. security, interests</strong> <code>thehill.com</code></a> - <a href="https://news.ycombinator.com/item?id=43637622">69 comments 283 points</a></li>
<li><a href="https://www.washingtonpost.com/technology/2025/03/27/cbp-cell-phones-devices-traveling-us/"><strong>How to lock down your phone if you're traveling to the U.S.</strong> <code>www.washingtonpost.com</code></a> - <a href="https://news.ycombinator.com/item?id=43630624">296 comments 266 points</a></li>
<li><a href="https://www.anthropic.com/news/anthropic-education-report-how-university-students-use-claude"><strong>How University Students Use Claude</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43633383">316 comments 265 points</a></li>
<li><a href="https://www.theverge.com/policy/645399/trump-doj-cryptocurrency-fraud-prosecutions-memo"><strong>DOJ will no longer prosecute cryptocurrency fraud</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=43634582">28 comments 259 points</a></li>
<li><a href="https://spacetimedb.com/"><strong>SpacetimeDB</strong> <code>spacetimedb.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631822">126 comments 244 points</a></li>
<li><a href="https://cosmographia.substack.com/p/photographs-of-old-japan"><strong>Photographs of 19th Century Japan</strong> <code>cosmographia.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631251">45 comments 235 points</a></li>
<li><a href="https://livesys.se/posts/the-chroot-technique/"><strong>The chroot Technique – a Swiss army multitool for Linux systems</strong> <code>livesys.se</code></a> - <a href="https://news.ycombinator.com/item?id=43632379">96 comments 232 points</a></li>
<li><a href="https://stratechery.com/2025/american-disruption/"><strong>American Disruption</strong> <code>stratechery.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631276">184 comments 220 points</a></li>
<li><a href="https://www.pilotprojekt-grundeinkommen.de/en"><strong>Basic Income Pilot Project: Study results</strong> <code>www.pilotprojekt-grundeinkommen.de</code></a> - <a href="https://news.ycombinator.com/item?id=43636757">231 comments 204 points</a></li>
<li><a href="https://kittenlabs.de/blog/2025/04/06/gpd-pocket-4-speaker-dsp/"><strong>GPD Pocket 4 Speaker DSP: Configuring PipeWire so laptop speakers sound better</strong> <code>kittenlabs.de</code></a> - <a href="https://news.ycombinator.com/item?id=43635295">55 comments 199 points</a></li>
<li><a href="https://docs.getwhisky.app/maintenance-notice"><strong>Whisky is no longer actively maintained</strong> <code>docs.getwhisky.app</code></a> - <a href="https://news.ycombinator.com/item?id=43631230">72 comments 178 points</a></li>
<li><a href="https://attackanddefense.dev/2025/04/09/hardening-the-firefox-frontend-with-content-security-policies.html"><strong>Hardening the Firefox Front End with Content Security Policies</strong> <code>attackanddefense.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43630388">63 comments 176 points</a></li>
<li><a href="https://www.cnbc.com/2025/04/08/fake-job-seekers-use-ai-to-interview-for-remote-jobs-tech-ceos-say.html"><strong>Fake job seekers are flooding US companies that are hiring for remote positions</strong> <code>www.cnbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631384">234 comments 174 points</a></li>
<li><a href="https://cleantechnica.com/2025/04/07/tesla-solar-sales-declined-for-4-straight-quarters-then-tesla-stopped-publishing-the-numbers/"><strong>Tesla Solar Sales Declined for 4 Qtrs. Then Tesla Stopped Publishing the Numbers</strong> <code>cleantechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631402">89 comments 168 points</a></li>
<li><a href="https://jcarlosroldan.com/post/355"><strong>Quality-of-Life in Tetris Games</strong> <code>jcarlosroldan.com</code></a> - <a href="https://news.ycombinator.com/item?id=43631656">48 comments 144 points</a></li>
<li><a href="https://penntoday.upenn.edu/news/penn-dental-antiviral-chewing-gum-reduce-influenza-and-herpes-simplex-virus-transmission"><strong>Antiviral chewing gum to reduce influenza and herpes simplex virus transmission</strong> <code>penntoday.upenn.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43636302">70 comments 136 points</a></li>
<li><a href="https://firebase.studio"><strong>Firebase Studio</strong> <code>firebase.studio</code></a> - <a href="https://news.ycombinator.com/item?id=43635783">48 comments 134 points</a></li>
<li><a href="https://whynothugo.nl/journal/2025/04/09/man-pages-are-great-man-readers-are-the-problem/"><strong>Man pages are great, man readers are the problem</strong> <code>whynothugo.nl</code></a> - <a href="https://news.ycombinator.com/item?id=43631672">154 comments 125 points</a></li>
<li><a href="https://www.anthropic.com/news/max-plan"><strong>Claude's Max Plan</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43635296">127 comments 123 points</a></li>
<li><a href="https://togithub.com/herol3oy/austen"><strong>Show HN: I built an app to generate story relationships using Mermaidjs</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43633298">36 comments 118 points</a></li>
<li><a href="http://arcturus-labs.com/blog/2025/03/31/visual-reasoning-is-coming-soon/"><strong>Visual Reasoning Is Coming Soon</strong> <code>arcturus-labs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43633568">38 comments 106 points</a></li>
<li><a href="https://speedbumpapp.com/en/blog/how-to-reduce-screen-time/"><strong>A guide to reduce screen time</strong> <code>speedbumpapp.com</code></a> - <a href="https://news.ycombinator.com/item?id=43630661">91 comments 102 points</a></li>
<li><a href="https://osf.io/preprints/osf/zhm54_v3"><strong>Major Flaws in 2025 Meta-Analysis on Fluoride and Children IQ Scores</strong> <code>osf.io</code></a> - <a href="https://news.ycombinator.com/item?id=43633330">78 comments 100 points</a></li>
<li><a href="https://withaqua.com"><strong>Show HN: Aqua Voice 2 – Fast Voice Input for Mac and Windows</strong> <code>withaqua.com</code></a> - <a href="https://news.ycombinator.com/item?id=43634005">50 comments 99 points</a></li>
<li><a href="https://www.science.org/content/article/nih-freezes-all-research-grants-columbia-university"><strong>NIH freezes all research grants to Columbia University</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=43640267">74 comments 96 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-09]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/936</link>
<guid>936</guid>
<pubDate>Wed, 09 Apr 2025 06:18:36 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://echarts.apache.org/en/index.html"><strong>Apache ECharts</strong> <code>echarts.apache.org</code></a> - <a href="https://news.ycombinator.com/item?id=43624220">171 comments 1071 points</a></li>
<li><a href="https://www.theatlantic.com/games/bracket-city/"><strong>Thank HN: The puzzle game I posted here 6 weeks ago got licensed by The Atlantic</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43622719">145 comments 800 points</a></li>
<li><a href="https://www.economist.com/the-americas/2025/04/03/brazils-government-run-payments-system-has-become-dominant"><strong>Brazil's government-run payments system has become dominant</strong> <code>www.economist.com</code></a> - <a href="https://news.ycombinator.com/item?id=43620279">588 comments 509 points</a></li>
<li><a href="https://tailscale.com/blog/series-c"><strong>Tailscale has raised $160M</strong> <code>tailscale.com</code></a> - <a href="https://news.ycombinator.com/item?id=43620141">219 comments 495 points</a></li>
<li><a href="https://aftermath.site/ai-video-game-development-art-vibe-coding-midjourney"><strong>An Overwhelmingly Negative and Demoralizing Force</strong> <code>aftermath.site</code></a> - <a href="https://news.ycombinator.com/item?id=43619759">285 comments 317 points</a></li>
<li><a href="https://www.theverge.com/meta/645012/meta-llama-4-maverick-benchmarks-gaming"><strong>Meta got caught gaming AI benchmarks</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=43620452">143 comments 307 points</a></li>
<li><a href="https://yuxi-liu-wired.github.io/essays/posts/cyc/"><strong>Obituary for Cyc</strong> <code>yuxi-liu-wired.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43625474">136 comments 272 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43619768"><strong>Ask HN: Do you still use search engines?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43619768">451 comments 238 points</a></li>
<li><a href="https://webkit.org/blog/16547/better-typography-with-text-wrap-pretty/"><strong>Better typography with text-wrap pretty</strong> <code>webkit.org</code></a> - <a href="https://news.ycombinator.com/item?id=43622703">91 comments 226 points</a></li>
<li><a href="https://www.quantamagazine.org/intelligence-evolved-at-least-twice-in-vertebrate-animals-20250407/"><strong>Intelligence Evolved at Least Twice in Vertebrate Animals</strong> <code>www.quantamagazine.org</code></a> - <a href="https://news.ycombinator.com/item?id=43619548">167 comments 207 points</a></li>
<li><a href="https://blog.vectorchord.ai/postgresql-full-text-search-fast-when-done-right-debunking-the-slow-myth"><strong>PostgreSQL Full-Text Search: Fast When Done Right (Debunking the Slow Myth)</strong> <code>blog.vectorchord.ai</code></a> - <a href="https://news.ycombinator.com/item?id=43627646">47 comments 184 points</a></li>
<li><a href="https://news.sky.com/story/unstoppable-force-of-solar-power-propels-world-to-40-clean-electricity-report-finds-13344230"><strong>'Unstoppable force' of solar power propels world to 40% clean electricity</strong> <code>news.sky.com</code></a> - <a href="https://news.ycombinator.com/item?id=43620007">187 comments 168 points</a></li>
<li><a href="https://www.msn.com/en-us/money/other/uk-effort-to-keep-apple-encryption-fight-secret-is-blocked/ar-AA1CsokD"><strong>UK Effort to Keep Apple Encryption Fight Secret Is Blocked</strong> <code>www.msn.com</code></a> - <a href="https://news.ycombinator.com/item?id=43619315">129 comments 168 points</a></li>
<li><a href="https://unplannedobsolescence.com/blog/less-htmx-is-more/"><strong>Less Htmx Is More</strong> <code>unplannedobsolescence.com</code></a> - <a href="https://news.ycombinator.com/item?id=43619581">112 comments 163 points</a></li>
<li><a href="https://spectrum.ieee.org/building-the-system360-mainframe-nearly-destroyed-ibm"><strong>Building the System/360 Mainframe Nearly Destroyed IBM</strong> <code>spectrum.ieee.org</code></a> - <a href="https://news.ycombinator.com/item?id=43619229">79 comments 153 points</a></li>
<li><a href="https://netflixtechblog.com/how-netflix-accurately-attributes-ebpf-flow-logs-afe6d644a3bc"><strong>How Netflix Accurately Attributes eBPF Flow Logs</strong> <code>netflixtechblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=43624888">52 comments 131 points</a></li>
<li><a href="https://www.youtube.com/watch?v=V14ac9cRi9Q"><strong>Show HN: Connecting an IBM 3151 terminal to a mainframe [video]</strong> <code>www.youtube.com</code></a> - <a href="https://news.ycombinator.com/item?id=43621007">41 comments 119 points</a></li>
<li><a href="https://togithub.com/coroot/coroot"><strong>Show HN: Coroot – eBPF-based, open source observability with actionable insights</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43623820">22 comments 117 points</a></li>
<li><a href="https://badgeify.app/"><strong>Show HN: Badgeify – Add Any App to Your Mac Menu Bar</strong> <code>badgeify.app</code></a> - <a href="https://news.ycombinator.com/item?id=43620471">46 comments 103 points</a></li>
<li><a href="https://matthewsinclair.com/blog/0177-what-if-we-taxed-advertising"><strong>What if we taxed advertising?</strong> <code>matthewsinclair.com</code></a> - <a href="https://news.ycombinator.com/item?id=43620407">71 comments 99 points</a></li>
<li><a href="https://xwiki.com/en/Blog/European-digital-sovereignty/"><strong>How Trump's second term just made digital sovereignty a European priority</strong> <code>xwiki.com</code></a> - <a href="https://news.ycombinator.com/item?id=43619813">49 comments 99 points</a></li>
<li><a href="https://www.bbc.co.uk/news/articles/cn7vje365rno"><strong>Gazans tell BBC of torture in Israeli detention</strong> <code>www.bbc.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43619178">23 comments 98 points</a></li>
<li><a href="https://togithub.com/simonw/llm-hacker-news"><strong>LLM-hacker-news: LLM plugin for pulling content from Hacker News</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43620125">54 comments 90 points</a></li>
<li><a href="https://www.drawdb.app/"><strong>Show HN: DrawDB – open-source online database diagram editor (a retro)</strong> <code>www.drawdb.app</code></a> - <a href="https://news.ycombinator.com/item?id=43627758">9 comments 87 points</a></li>
<li><a href="https://www.allaboutbirds.org/news/how-to-recognize-woodpeckers-by-their-drumming-sounds/"><strong>How to Recognize Woodpeckers by Their Drumming Sounds</strong> <code>www.allaboutbirds.org</code></a> - <a href="https://news.ycombinator.com/item?id=43625864">28 comments 86 points</a></li>
<li><a href="https://www.reuters.com/technology/artificial-intelligence/musks-doge-using-ai-snoop-us-federal-workers-sources-say-2025-04-08/"><strong>Doge using AI to snoop on U.S. federal workers, sources say</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43620859">91 comments 84 points</a></li>
<li><a href="https://gitmatcher.com/"><strong>Show HN: I built a tool to find devs based on code, not LinkedIn titles</strong> <code>gitmatcher.com</code></a> - <a href="https://news.ycombinator.com/item?id=43621350">66 comments 83 points</a></li>
<li><a href="https://grossack.site/2025/04/08/analytic-combinatorics-example.html"><strong>Analytic Combinatorics – A Worked Example</strong> <code>grossack.site</code></a> - <a href="https://news.ycombinator.com/item?id=43624293">44 comments 82 points</a></li>
<li><a href="https://blog.google/products/gemini/deep-research-gemini-2-5-pro-experimental/"><strong>Deep Research is now available on Gemini 2.5 Pro Experimental</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=43627354">23 comments 80 points</a></li>
<li><a href="http://gus-massa.blogspot.com/2025/04/decomposing-factorial-of-300k-as.html"><strong>Decomposing factorial of 300K as the product of 300K factors larger than 100K</strong> <code>gus-massa.blogspot.com</code></a> - <a href="https://news.ycombinator.com/item?id=43624977">8 comments 78 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-08]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/935</link>
<guid>935</guid>
<pubDate>Tue, 08 Apr 2025 06:18:00 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.tokyoweekender.com/entertainment/middle-aged-man-trading-cards-go-viral-in-japan/"><strong>Middle-aged man trading cards go viral in rural Japan town</strong> <code>www.tokyoweekender.com</code></a> - <a href="https://news.ycombinator.com/item?id=43615912">162 comments 801 points</a></li>
<li><a href="https://mattgiustwilliamson.substack.com/p/your-startup-doesnt-need-to-be-a"><strong>A startup doesn't need to be a unicorn</strong> <code>mattgiustwilliamson.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43609242">328 comments 542 points</a></li>
<li><a href="https://browsermcp.io/"><strong>Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code</strong> <code>browsermcp.io</code></a> - <a href="https://news.ycombinator.com/item?id=43613194">152 comments 410 points</a></li>
<li><a href="https://jasher.substack.com/p/how-fewer-foreign-passengers-flying"><strong>Fewer Foreign Passengers Are Flying to the US</strong> <code>jasher.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43610246">2 comments 401 points</a></li>
<li><a href="https://blog.gitbutler.com/20-years-of-git/"><strong>20 years of Git</strong> <code>blog.gitbutler.com</code></a> - <a href="https://news.ycombinator.com/item?id=43613305">177 comments 242 points</a></li>
<li><a href="https://www.axios.com/2025/04/04/foreign-visits-american-airports-travel-warnings"><strong>Foreign visits into the U.S. fell off a cliff in March</strong> <code>www.axios.com</code></a> - <a href="https://news.ycombinator.com/item?id=43610527">521 comments 201 points</a></li>
<li><a href="https://mrcjkb.dev/posts/2025-04-07-lux-announcement.html"><strong>Show HN: Lux – A luxurious package manager for Lua</strong> <code>mrcjkb.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43614285">65 comments 193 points</a></li>
<li><a href="https://www.newyorker.com/magazine/2025/04/14/the-dire-wolf-is-back"><strong>The Dire Wolf Is Back</strong> <code>www.newyorker.com</code></a> - <a href="https://news.ycombinator.com/item?id=43609661">168 comments 167 points</a></li>
<li><a href="https://fosstodon.org/@frameworkcomputer/114297967333461078"><strong>Framework temporarily pausing some laptop sales in the US due to tariffs</strong> <code>fosstodon.org</code></a> - <a href="https://news.ycombinator.com/item?id=43617207">28 comments 155 points</a></li>
<li><a href="https://dmodel.ai/nullability-gentle/"><strong>LLMs understand nullability</strong> <code>dmodel.ai</code></a> - <a href="https://news.ycombinator.com/item?id=43612211">112 comments 149 points</a></li>
<li><a href="https://www.motherjones.com/politics/2025/04/clearview-ai-immigration-ice-fbi-surveillance-facial-recognition-hoan-ton-that-hal-lambert-trump/"><strong>Agenda Behind the Facial Recognition Tech Used by ICE and the FBI Revealed</strong> <code>www.motherjones.com</code></a> - <a href="https://news.ycombinator.com/item?id=43614592">51 comments 135 points</a></li>
<li><a href="https://queue.acm.org/detail.cfm?id=3722542"><strong>Fifty Years of Open Source Software Supply Chain Security</strong> <code>queue.acm.org</code></a> - <a href="https://news.ycombinator.com/item?id=43614199">58 comments 128 points</a></li>
<li><a href="https://daniel.haxx.se/blog/2025/04/07/writing-c-for-curl/"><strong>Writing C for Curl</strong> <code>daniel.haxx.se</code></a> - <a href="https://news.ycombinator.com/item?id=43608551">79 comments 119 points</a></li>
<li><a href="https://www.botanica.software/post/decoding-the-90s"><strong>Decoding the 90s: Cryptography in Early Software Development (2023)</strong> <code>www.botanica.software</code></a> - <a href="https://news.ycombinator.com/item?id=43612102">34 comments 108 points</a></li>
<li><a href="https://www.yahoo.com/news/thousands-north-korean-workers-infiltrated-110000417.html"><strong>North Korean IT workers have infiltrated the Fortune 500</strong> <code>www.yahoo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43617352">70 comments 104 points</a></li>
<li><a href="https://yossarian.net/til/post/any-program-can-be-a-github-actions-shell/"><strong>Any program can be a GitHub Actions shell</strong> <code>yossarian.net</code></a> - <a href="https://news.ycombinator.com/item?id=43617493">14 comments 99 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43612448"><strong>Ask HN: I'm an MIT senior and still unemployed – and so are most of my friends</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43612448">119 comments 96 points</a></li>
<li><a href="https://www.politico.eu/article/eu-gdpr-privacy-law-europe-president-ursula-von-der-leyen/"><strong>Europe's GDPR privacy law is headed for red tape bonfire within 'weeks'</strong> <code>www.politico.eu</code></a> - <a href="https://news.ycombinator.com/item?id=43610678">153 comments 90 points</a></li>
<li><a href="https://twitter.com/tobi/status/1909251946235437514"><strong>Shopify CEO: "AI usage is now a baseline expectation"</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43613079">50 comments 83 points</a></li>
<li><a href="https://blog.littlepolygon.com/posts/scaffold/"><strong>Scaffold Level Editor</strong> <code>blog.littlepolygon.com</code></a> - <a href="https://news.ycombinator.com/item?id=43615322">19 comments 83 points</a></li>
<li><a href="https://www.nytimes.com/2018/01/12/magazine/inside-one-of-americas-last-pencil-factories.html"><strong>Inside One of America's Last Pencil Factories (2018)</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43610187">43 comments 81 points</a></li>
<li><a href="https://www.zachseward.com/what-was-quartz/"><strong>What Was Quartz?</strong> <code>www.zachseward.com</code></a> - <a href="https://news.ycombinator.com/item?id=43616604">32 comments 80 points</a></li>
<li><a href="https://spark.temrel.com/p/the-great-unstacking"><strong>How new US tariffs are forcing Europe to rethink its entire tech stack</strong> <code>spark.temrel.com</code></a> - <a href="https://news.ycombinator.com/item?id=43611289">36 comments 78 points</a></li>
<li><a href="https://personal.cis.strath.ac.uk/conor.mcbride/pub/hasochism.pdf"><strong>Hasochism: The pleasure and pain of dependently typed Haskell programming [pdf] (2013)</strong> <code>personal.cis.strath.ac.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43613994">11 comments 78 points</a></li>
<li><a href="https://thedailywtf.com/articles/ITAPPMONROBOT"><strong>ITAPPMONROBOT (2007)</strong> <code>thedailywtf.com</code></a> - <a href="https://news.ycombinator.com/item?id=43609578">13 comments 67 points</a></li>
<li><a href="https://arxiv.org/abs/2504.01157"><strong>Beyond Quacking: Deep Integration of Language Models and RAG into DuckDB</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=43616241">11 comments 66 points</a></li>
<li><a href="https://twitter.com/ID_AA_Carmack/status/1909311174845329874"><strong>John Carmack on AI in game programming</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43614546">95 comments 65 points</a></li>
<li><a href="https://idiallo.com/blog/companies-dont-fix-bugs"><strong>Why Companies Don't Fix Bugs</strong> <code>idiallo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43615346">23 comments 63 points</a></li>
<li><a href="https://www.newyorker.com/magazine/2025/04/07/catullus-poems-book-review-stephen-mitchell-isobel-williams"><strong>Why Catullus continues to seduce us</strong> <code>www.newyorker.com</code></a> - <a href="https://news.ycombinator.com/item?id=43612807">33 comments 62 points</a></li>
<li><a href="https://rawandferal.substack.com/p/fck-run-club-join-sit-club"><strong>Fuck Run Club, Join Sit Club</strong> <code>rawandferal.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43617190">22 comments 59 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-07]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/934</link>
<guid>934</guid>
<pubDate>Mon, 07 Apr 2025 06:18:42 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://standardebooks.org"><strong>Standard Ebooks: liberated ebooks, carefully produced for the true book lover</strong> <code>standardebooks.org</code></a> - <a href="https://news.ycombinator.com/item?id=43599637">211 comments 1027 points</a></li>
<li><a href="https://elenacross7.medium.com/%EF%B8%8F-the-s-in-mcp-stands-for-security-91407b33ed6b"><strong>The “S” in MCP Stands for Security</strong> <code>elenacross7.medium.com</code></a> - <a href="https://news.ycombinator.com/item?id=43600192">153 comments 579 points</a></li>
<li><a href="https://fuelarc.com/news-and-features/self-driving-teslas-are-fatally-striking-motorcyclists-more-than-any-other-brand-new-analysis/"><strong>Self-Driving Teslas Are Fatally Rear-Ending Motorcyclists More Than Any Other</strong> <code>fuelarc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43601421">380 comments 320 points</a></li>
<li><a href="https://www.lesswrong.com/posts/4mvphwx5pdsZLMmpY/recent-ai-model-progress-feels-mostly-like-bullshit"><strong>Recent AI model progress feels mostly like bullshit</strong> <code>www.lesswrong.com</code></a> - <a href="https://news.ycombinator.com/item?id=43603453">269 comments 318 points</a></li>
<li><a href="https://iambateman.com/articles/billboards"><strong>Let's Ban Billboards</strong> <code>iambateman.com</code></a> - <a href="https://news.ycombinator.com/item?id=43606371">259 comments 304 points</a></li>
<li><a href="https://derflounder.wordpress.com/2025/04/06/rsync-replaced-with-openrsync-on-macos-sequoia/"><strong>Rsync replaced with openrsync on macOS Sequoia</strong> <code>derflounder.wordpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=43605003">187 comments 248 points</a></li>
<li><a href="https://www.capitoltrades.com/"><strong>Capital Trades: Tracking Stock Market Transactions of Politicians</strong> <code>www.capitoltrades.com</code></a> - <a href="https://news.ycombinator.com/item?id=43604052">87 comments 239 points</a></li>
<li><a href="https://www.science.org/content/article/after-coding-error-triggers-firings-top-nih-scientists-called-back-work"><strong>After 'coding error' triggers firings, top NIH scientists called back to work</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=43606315">125 comments 218 points</a></li>
<li><a href="https://tedium.co/2025/04/06/gumroad-open-source-doge-drama/"><strong>Gumroad's Interestingly Timed "Open-Source" Play</strong> <code>tedium.co</code></a> - <a href="https://news.ycombinator.com/item?id=43603999">79 comments 200 points</a></li>
<li><a href="https://michal.sapka.pl/2025/gmail-e2e-is-as-terrible-as-expected/"><strong>Gmail E2E is as terrible as expected</strong> <code>michal.sapka.pl</code></a> - <a href="https://news.ycombinator.com/item?id=43604308">60 comments 175 points</a></li>
<li><a href="https://apnews.com/article/pacific-crest-appalachian-trail-federal-layoffs-934a5526570569b625f5d854ec339a04"><strong>Federal cuts disrupt repairs to iconic U.S. trails</strong> <code>apnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=43603111">157 comments 174 points</a></li>
<li><a href="https://www.wsj.com/livecoverage/stock-market-trump-tariffs-trade-war-04-07-25/card/circuit-breaker-triggered-in-japan-for-stock-futures-trading-Q5iMfZyfPGBEslrIObgB"><strong>Circuit breaker triggered in Japan for stock futures trading</strong> <code>www.wsj.com</code></a> - <a href="https://news.ycombinator.com/item?id=43606713">127 comments 168 points</a></li>
<li><a href="https://www.bbc.com/news/articles/c4g2z103nqxo"><strong>Video footage appears to contradict Israeli account of Gaza medic killings</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43599864">71 comments 160 points</a></li>
<li><a href="https://www.reuters.com/markets/us/us-investors-braced-more-volatility-bumps-ahead-monday-trading-open-2025-04-06/"><strong>U.S. stock futures tumble indicating another plummet on Wall Street</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43605670">241 comments 158 points</a></li>
<li><a href="https://machinelearning.apple.com/research/seedlm-compressing"><strong>SeedLM: Compressing LLM Weights into Seeds of Pseudo-Random Generators</strong> <code>machinelearning.apple.com</code></a> - <a href="https://news.ycombinator.com/item?id=43599967">36 comments 157 points</a></li>
<li><a href="https://nautil.us/neutron-stars-hint-at-another-dimension-1202180/"><strong>Neutron Stars Hint at Another Dimension</strong> <code>nautil.us</code></a> - <a href="https://news.ycombinator.com/item?id=43600704">60 comments 155 points</a></li>
<li><a href="https://www.bleepingcomputer.com/news/security/max-severity-rce-flaw-discovered-in-widely-used-apache-parquet/"><strong>Max severity RCE flaw discovered in widely used Apache Parquet</strong> <code>www.bleepingcomputer.com</code></a> - <a href="https://news.ycombinator.com/item?id=43603091">64 comments 147 points</a></li>
<li><a href="https://www.theguardian.com/us-news/2025/apr/06/signal-group-chat-leak-how-it-happened"><strong>How the Atlantic's Jeffrey Goldberg Got Added to the White House Signal Chat</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43601213">111 comments 142 points</a></li>
<li><a href="https://www.nytimes.com/2025/04/03/technology/eu-penalties-x-elon-musk.html"><strong>E.U. Prepares Major Penalties Against X</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43603307">194 comments 128 points</a></li>
<li><a href="https://www.nytimes.com/2019/10/16/us/politics/peter-navarro-ron-vara.html"><strong>Peter Navarro Invented an Expert for His Books, Based on Himself (2019)</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43602777">93 comments 128 points</a></li>
<li><a href="https://old.reddit.com/r/RTLSDR/comments/1jsr9jv/eavesdropping_on_smartphone_1356mhz_nfc_polling/"><strong>Eavesdropping on smartphone 13.56MHz NFC polling during screen wake-up/unlock</strong> <code>old.reddit.com</code></a> - <a href="https://news.ycombinator.com/item?id=43605576">24 comments 127 points</a></li>
<li><a href="https://sciop.net/uploads/"><strong>SciOp torrents: download, seed erased US Gov sites and datasets</strong> <code>sciop.net</code></a> - <a href="https://news.ycombinator.com/item?id=43605751">12 comments 117 points</a></li>
<li><a href="https://motifanalytics.medium.com/my-browser-wasmt-prepared-for-this-using-duckdb-apache-arrow-and-web-workers-in-real-life-e3dd4695623d"><strong>My Browser WASM't Prepared for This. Using DuckDB, Apache Arrow and Web Workers</strong> <code>motifanalytics.medium.com</code></a> - <a href="https://news.ycombinator.com/item?id=43599613">25 comments 110 points</a></li>
<li><a href="https://garymarcus.substack.com/p/breaking-bill-that-would-have-blocked"><strong>Bill to block OpenAI's for-profit conversion gets mysteriously gutted</strong> <code>garymarcus.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43607502">22 comments 108 points</a></li>
<li><a href="https://marginalrevolution.com/marginalrevolution/2025/04/why-do-domestic-prices-rise-with-tarriffs.html"><strong>Why Do Domestic Prices Rise with Tarriffs?</strong> <code>marginalrevolution.com</code></a> - <a href="https://news.ycombinator.com/item?id=43601766">182 comments 106 points</a></li>
<li><a href="https://gerrymcgovern.com/data-centers-contain-90-crap-data/"><strong>Data centers contain 90% crap data</strong> <code>gerrymcgovern.com</code></a> - <a href="https://news.ycombinator.com/item?id=43605695">61 comments 105 points</a></li>
<li><a href="https://gtoolkit.com//"><strong>Glamorous Toolkit</strong> <code>gtoolkit.com</code></a> - <a href="https://news.ycombinator.com/item?id=43606027">25 comments 104 points</a></li>
<li><a href="https://togithub.com/brannondorsey/mem-isolate"><strong>Show HN: I built a Rust crate for running unsafe code safely</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43601301">56 comments 101 points</a></li>
<li><a href="https://0x1.pt/2025/04/06/the-insanity-of-being-a-software-engineer/"><strong>The Insanity of Being a Software Engineer</strong> <code>0x1.pt</code></a> - <a href="https://news.ycombinator.com/item?id=43600582">132 comments 95 points</a></li>
<li><a href="https://www.theguardian.com/money/2025/apr/06/uk-bans-22bn-sneaky-fees-and-fake-reviews-for-online-products"><strong>UK bans fake reviews and sneaky fees</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43599438">57 comments 87 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-06]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/933</link>
<guid>933</guid>
<pubDate>Sun, 06 Apr 2025 06:16:52 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://ai.meta.com/blog/llama-4-multimodal-intelligence/"><strong>The Llama 4 herd</strong> <code>ai.meta.com</code></a> - <a href="https://news.ycombinator.com/item?id=43595585">447 comments 950 points</a></li>
<li><a href="https://simone.org/advertising/"><strong>What If We Made Advertising Illegal?</strong> <code>simone.org</code></a> - <a href="https://news.ycombinator.com/item?id=43595269">754 comments 926 points</a></li>
<li><a href="https://nebulasans.com/"><strong>Nebula Sans</strong> <code>nebulasans.com</code></a> - <a href="https://news.ycombinator.com/item?id=43591225">98 comments 339 points</a></li>
<li><a href="https://www.whatsit.today/"><strong>Show HN: I built a word game. My mom thinks it's great. What do you think?</strong> <code>www.whatsit.today</code></a> - <a href="https://news.ycombinator.com/item?id=43593789">173 comments 338 points</a></li>
<li><a href="https://haseebq.com/my-ten-rules-for-negotiating-a-job-offer/"><strong>Rules for Negotiating a Job Offer (2016)</strong> <code>haseebq.com</code></a> - <a href="https://news.ycombinator.com/item?id=43596864">147 comments 311 points</a></li>
<li><a href="https://thoughts-and-things.ghost.io/recreating-daft-punks-something-about-us/"><strong>Recreating Daft Punk's Something About Us</strong> <code>thoughts-and-things.ghost.io</code></a> - <a href="https://news.ycombinator.com/item?id=43591050">50 comments 269 points</a></li>
<li><a href="https://tansanrao.com/blog/2025/04/xnu-kernel-and-darwin-evolution-and-architecture/"><strong>Apple's Darwin OS and XNU Kernel Deep Dive</strong> <code>tansanrao.com</code></a> - <a href="https://news.ycombinator.com/item?id=43597778">56 comments 234 points</a></li>
<li><a href="https://eshard.com/posts/emulating-ios-14-with-qemu"><strong>Emulating an iPhone in QEMU</strong> <code>eshard.com</code></a> - <a href="https://news.ycombinator.com/item?id=43592409">48 comments 205 points</a></li>
<li><a href="https://forums.swift.org/t/pitch-a-vision-for-webassembly-support-in-swift/79060"><strong>A Vision for WebAssembly Support in Swift</strong> <code>forums.swift.org</code></a> - <a href="https://news.ycombinator.com/item?id=43593596">78 comments 175 points</a></li>
<li><a href="https://togithub.com/ses4255/Versatile-OCR-Program"><strong>Show HN: OCR pipeline for ML training (tables, diagrams, math, multilingual)</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43590998">35 comments 157 points</a></li>
<li><a href="https://www.science.org/content/article/earth-s-clouds-are-shrinking-boosting-global-warming"><strong>Earth's clouds are shrinking, boosting global warming</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=43592756">124 comments 152 points</a></li>
<li><a href="https://planetscale.com/blog/faster-interpreters-in-go-catching-up-with-cpp"><strong>Faster interpreters in Go: Catching up with C++</strong> <code>planetscale.com</code></a> - <a href="https://news.ycombinator.com/item?id=43595283">27 comments 139 points</a></li>
<li><a href="https://www.devonlive.com/whats-on/whats-on-news/exeters-unassuming-co-op-worker-10039941"><strong>Exeter's unassuming co-op worker leads double life as 'Lord of the Logos'</strong> <code>www.devonlive.com</code></a> - <a href="https://news.ycombinator.com/item?id=43594396">45 comments 123 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43595442"><strong>Show HN: iPhone 2005 weird "Blob Keyboard" simulator</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43595442">42 comments 122 points</a></li>
<li><a href="https://okmij.org/ftp/tagless-final/Compiler/index.html"><strong>Compilers: Incrementally and Extensibly (2024)</strong> <code>okmij.org</code></a> - <a href="https://news.ycombinator.com/item?id=43593088">29 comments 119 points</a></li>
<li><a href="https://mediascope.group/europe-needs-its-own-social-media-platforms-to-safeguard-sovereignty/"><strong>Europe needs its own social media platforms to safeguard sovereignty</strong> <code>mediascope.group</code></a> - <a href="https://news.ycombinator.com/item?id=43592454">175 comments 105 points</a></li>
<li><a href="https://groq.com/llama-4-now-live-on-groq-build-fast-at-the-lowest-cost-without-compromise/"><strong>Llama 4 Now Live on Groq</strong> <code>groq.com</code></a> - <a href="https://news.ycombinator.com/item?id=43596470">46 comments 105 points</a></li>
<li><a href="https://gizmodo.com/keeping-voyager-alive-nasas-project-scientist-faces-painful-choices-as-the-iconic-mission-nears-its-end-2000580634"><strong>NASA's Project Scientist Faces Painful Choices as Voyager Mission Nears Its End</strong> <code>gizmodo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43595293">29 comments 101 points</a></li>
<li><a href="https://chipsandcheese.com/p/dynamic-register-allocation-on-amds"><strong>Dynamic Register Allocation on AMD's RDNA 4 GPU Architecture</strong> <code>chipsandcheese.com</code></a> - <a href="https://news.ycombinator.com/item?id=43595223">18 comments 101 points</a></li>
<li><a href="https://add.org/the-body-double/"><strong>The ADHD Body Double: A Unique Tool for Getting Things Done</strong> <code>add.org</code></a> - <a href="https://news.ycombinator.com/item?id=43597425">41 comments 97 points</a></li>
<li><a href="http://www.tubebooks.org/technical_books_online.htm"><strong>Public domain technical books published before 1964</strong> <code>www.tubebooks.org</code></a> - <a href="https://news.ycombinator.com/item?id=43592003">6 comments 92 points</a></li>
<li><a href="https://byroot.github.io/performance/2025/03/21/database-protocols.html"><strong>Database Protocols Are Underwhelming</strong> <code>byroot.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43593547">20 comments 91 points</a></li>
<li><a href="https://ultrasciencelabs.com/lab-notes/why-we-are-still-using-88x31-buttons"><strong>We are still using 88x31 buttons</strong> <code>ultrasciencelabs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43596570">31 comments 86 points</a></li>
<li><a href="https://www.jsg.utexas.edu/news/2025/04/north-america-is-dripping-from-below-geoscientists-discover/"><strong>North America Is Dripping from Below, Geoscientists Discover</strong> <code>www.jsg.utexas.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43596546">21 comments 81 points</a></li>
<li><a href="https://www.interviewcoder.co/"><strong>Interview Coder is an invisible AI for technical interviews</strong> <code>www.interviewcoder.co</code></a> - <a href="https://news.ycombinator.com/item?id=43592540">114 comments 78 points</a></li>
<li><a href="https://arstechnica.com/tech-policy/2025/04/judge-doesnt-buy-openai-argument-nyts-own-reporting-weakens-copyright-suit/"><strong>OpenAI's Motion to Dismiss Copyright Claims Rejected by Judge</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43596555">12 comments 77 points</a></li>
<li><a href="https://sidverma.io/posts/i-dont-like-traveling-anymore/"><strong>I don't like traveling anymore</strong> <code>sidverma.io</code></a> - <a href="https://news.ycombinator.com/item?id=43590973">82 comments 72 points</a></li>
<li><a href="https://togithub.com/richardhapb/pytest.nvim"><strong>Pytest for Neovim</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43591246">19 comments 68 points</a></li>
<li><a href="https://www.nbcnews.com/news/us-news/5-nurses-work-floor-massachusetts-hospital-brain-tumors-rcna199798"><strong>Five Nurses who work on the same floor at hospital have brain tumors</strong> <code>www.nbcnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=43597929">37 comments 65 points</a></li>
<li><a href="https://adnauseam.io/"><strong>AdNauseam: Clicking ads so you don't have to</strong> <code>adnauseam.io</code></a> - <a href="https://news.ycombinator.com/item?id=43592462">63 comments 64 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-05]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/932</link>
<guid>932</guid>
<pubDate>Sat, 05 Apr 2025 06:16:05 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://paulrobertlloyd.com/2025/087/a1/bored/"><strong>Bored of It</strong> <code>paulrobertlloyd.com</code></a> - <a href="https://news.ycombinator.com/item?id=43580449">449 comments 536 points</a></li>
<li><a href="https://togithub.com/antiwork/gumroad"><strong>Gumroad’s source is available</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43580103">195 comments 451 points</a></li>
<li><a href="https://thenewstack.io/nvidia-finally-adds-native-python-support-to-cuda/"><strong>Nvidia adds native Python support to CUDA</strong> <code>thenewstack.io</code></a> - <a href="https://news.ycombinator.com/item?id=43581584">169 comments 414 points</a></li>
<li><a href="https://www.wsj.com/finance/stocks/u-s-stock-futures-fall-further-after-china-retaliates-against-trump-tariffs-3be33fa7"><strong>Trump's Tariffs Wipe Out over $6T on Wall Street in Epic Two-Day Rout</strong> <code>www.wsj.com</code></a> - <a href="https://news.ycombinator.com/item?id=43589231">527 comments 360 points</a></li>
<li><a href="https://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning/copy.html"><strong>Understanding Machine Learning: From Theory to Algorithms</strong> <code>www.cs.huji.ac.il</code></a> - <a href="https://news.ycombinator.com/item?id=43586073">35 comments 287 points</a></li>
<li><a href="https://joshcollinsworth.com/blog/the-blissful-zen-of-a-good-side-project"><strong>The blissful Zen of a good side project</strong> <code>joshcollinsworth.com</code></a> - <a href="https://news.ycombinator.com/item?id=43587380">72 comments 248 points</a></li>
<li><a href="https://finance.yahoo.com/news/live/stock-market-today-dow-plunges-2200-points-nasdaq-enters-bear-market-as-trump-tariffs-spark-worst-meltdown-since-2020-200042876.html"><strong>Dow plunges 2,200 points, Nasdaq enters bear market</strong> <code>finance.yahoo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43587479">348 comments 236 points</a></li>
<li><a href="https://www.rollingstone.com/politics/politics-features/el-salvador-prisons-warning-americans-trump-1235309721/"><strong>The 'Judicial Black Hole' of El Salvador's Prisons Is a Warning for Americans</strong> <code>www.rollingstone.com</code></a> - <a href="https://news.ycombinator.com/item?id=43588970">110 comments 233 points</a></li>
<li><a href="https://dmitry.gr/?r=05.Projects&proj=36.%208pinLinux"><strong>An interactive-speed Linux computer made of only 3 8-pin chips</strong> <code>dmitry.gr</code></a> - <a href="https://news.ycombinator.com/item?id=43586654">83 comments 232 points</a></li>
<li><a href="https://www.filfre.net/2025/04/the-end-of-sierra-as-we-knew-it-part-1-the-acquisition/"><strong>The End of Sierra as We Knew It, Part 1: The Acquisition</strong> <code>www.filfre.net</code></a> - <a href="https://news.ycombinator.com/item?id=43586157">71 comments 198 points</a></li>
<li><a href="https://martinrobbins.substack.com/p/von-6-why-does-britain-feel-so-poor"><strong>Why does Britain feel so poor?</strong> <code>martinrobbins.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43581672">341 comments 181 points</a></li>
<li><a href="https://simonmonk.org/tyee7"><strong>Learn electricity and electronics fundamentals without taking a formal course</strong> <code>simonmonk.org</code></a> - <a href="https://news.ycombinator.com/item?id=43589776">44 comments 172 points</a></li>
<li><a href="https://www.nytimes.com/2025/04/04/business/china-trump-tariffs-retaliation.html"><strong>Trump's Trade War Escalates as China Retaliates with 34% Tariffs</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43580906">197 comments 170 points</a></li>
<li><a href="https://edconway.substack.com/p/no-kerosene-did-not-save-the-sperm"><strong>Kerosene did not save the sperm whale (2024)</strong> <code>edconway.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43584303">54 comments 161 points</a></li>
<li><a href="https://faculty.washington.edu/ss1110/IF/Buffett%20Fortune%202003%20(6).pdf"><strong>Growing trade deficit is selling the nation out from under us (2003) [pdf]</strong> <code>faculty.washington.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43579908">179 comments 153 points</a></li>
<li><a href="https://www.aei.org/economics/president-trumps-tariff-formula-makes-no-economic-sense-its-also-based-on-an-error/"><strong>Trump's Tariff Formula Makes No Economic Sense. It's Also Based on an Error</strong> <code>www.aei.org</code></a> - <a href="https://news.ycombinator.com/item?id=43590421">70 comments 153 points</a></li>
<li><a href="https://arstechnica.com/tech-policy/2025/04/i-no-longer-hack-paypals-doge-staffers-hacker-past-raises-red-flags/"><strong>Doge staffer's YouTube nickname accidentally revealed his teen hacking activity</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43579925">169 comments 139 points</a></li>
<li><a href="https://security.googleblog.com/2025/04/google-launches-sec-gemini-v1-new.html"><strong>Google announces Sec-Gemini v1 a new experimental cybersecurity model</strong> <code>security.googleblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=43586786">33 comments 131 points</a></li>
<li><a href="https://danb.me/blog/gumroad-is-not-open-source/"><strong>Gumroad’s license wouldn’t meet the widely regarded definition of open source</strong> <code>danb.me</code></a> - <a href="https://news.ycombinator.com/item?id=43586107">38 comments 117 points</a></li>
<li><a href="https://www.theatlantic.com/ideas/archive/2025/03/ayn-rand-peikoff-inheritance-battle/682219/"><strong>The Curse of Ayn Rand's Heir</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43584663">217 comments 110 points</a></li>
<li><a href="https://arstechnica.com/health/2025/04/wealthy-americans-have-death-rates-on-par-with-poor-europeans/"><strong>Wealthy Americans have death rates on par with poor Europeans</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43584156">77 comments 110 points</a></li>
<li><a href="https://www.barrons.com/livecoverage/stock-market-today-040425"><strong>Dow Slides Another 1k Points. Nasdaq on Pace to Enter Bear Market</strong> <code>www.barrons.com</code></a> - <a href="https://news.ycombinator.com/item?id=43582292">91 comments 100 points</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2025-04-04/us-weather-agency-websites-to-vanish-under-planned-contract-cuts"><strong>NOAA Weather will delete websites using Amazon, Google cloud services Saturday</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=43581714">94 comments 96 points</a></li>
<li><a href="https://www.magicsplat.com/ttpl/index.html"><strong>The Tcl Programming Language: A Comprehensive Guide (2nd Edition)</strong> <code>www.magicsplat.com</code></a> - <a href="https://news.ycombinator.com/item?id=43586561">63 comments 95 points</a></li>
<li><a href="https://www.att.com/support/article/wireless/KM1061254/"><strong>AT&T Email-to-Text Gateway Service Ending June 17</strong> <code>www.att.com</code></a> - <a href="https://news.ycombinator.com/item?id=43589523">72 comments 92 points</a></li>
<li><a href="https://www.reuters.com/technology/cybersecurity/multiple-australian-pension-funds-hit-by-coordinated-hacking-media-reports-say-2025-04-04/"><strong>Hackers strike Australia's largest pension funds in coordinated attacks</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43580101">41 comments 92 points</a></li>
<li><a href="https://www.washingtonpost.com/climate-environment/2025/04/03/ev-factories-canceled/"><strong>A number of electric vehicle, battery factories are being canceled</strong> <code>www.washingtonpost.com</code></a> - <a href="https://news.ycombinator.com/item?id=43583249">204 comments 90 points</a></li>
<li><a href="https://www.youtube.com/watch?v=3t6L-FlfeaI"><strong>I just want to serve 5 terabytes [video]</strong> <code>www.youtube.com</code></a> - <a href="https://news.ycombinator.com/item?id=43580439">34 comments 76 points</a></li>
<li><a href="https://www.dw.com/en/germanys-deutschlandticket-helps-environment-study/a-72128647"><strong>Germany's 'Deutschlandticket' helps environment – study</strong> <code>www.dw.com</code></a> - <a href="https://news.ycombinator.com/item?id=43586182">39 comments 74 points</a></li>
<li><a href="https://support.apple.com/guide/functions/map-ffa7bf25643c/web"><strong>Mac Numbers now supports LAMBDA functions and MAP</strong> <code>support.apple.com</code></a> - <a href="https://news.ycombinator.com/item?id=43581137">50 comments 73 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-04]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/931</link>
<guid>931</guid>
<pubDate>Fri, 04 Apr 2025 06:17:59 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://theaiunderwriter.substack.com/p/an-image-of-an-archeologist-adventurer"><strong>An image of an archeologist adventurer who wears a hat and uses a bullwhip</strong> <code>theaiunderwriter.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43573156">448 comments 678 points</a></li>
<li><a href="https://animejs.com/"><strong>AnimeJs v4 Is Here</strong> <code>animejs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43570533">89 comments 661 points</a></li>
<li><a href="https://ai-2027.com/"><strong>AI 2027</strong> <code>ai-2027.com</code></a> - <a href="https://news.ycombinator.com/item?id=43571851">278 comments 420 points</a></li>
<li><a href="https://www.anthropic.com/research/reasoning-models-dont-say-think"><strong>Reasoning models don't always say what they think</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43572374">236 comments 344 points</a></li>
<li><a href="https://togithub.com/lwthiker/curl-impersonate"><strong>Curl-impersonate: Special build of curl that can impersonate the major browsers</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43571099">82 comments 334 points</a></li>
<li><a href="https://thirty-five.com/overengineered-anchoring"><strong>Overengineered Anchor Links</strong> <code>thirty-five.com</code></a> - <a href="https://news.ycombinator.com/item?id=43570324">120 comments 290 points</a></li>
<li><a href="https://www.opennutrition.app/search"><strong>Show HN: OpenNutrition – A free, public nutrition database</strong> <code>www.opennutrition.app</code></a> - <a href="https://news.ycombinator.com/item?id=43569190">143 comments 281 points</a></li>
<li><a href="https://isomorphism.xyz/blog/2024/steam-deck/"><strong>The Steam Deck is software-freedom friendly</strong> <code>isomorphism.xyz</code></a> - <a href="https://news.ycombinator.com/item?id=43567923">231 comments 279 points</a></li>
<li><a href="https://www.gatesnotes.com/home/home-page-topic/reader/microsoft-original-source-code"><strong>Celebrate 50 years of Microsoft with the company's original source code</strong> <code>www.gatesnotes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43575884">140 comments 279 points</a></li>
<li><a href="https://www.newyorker.com/news/q-and-a/a-university-president-makes-a-case-against-cowardice"><strong>A university president makes a case against cowardice</strong> <code>www.newyorker.com</code></a> - <a href="https://news.ycombinator.com/item?id=43568655">281 comments 254 points</a></li>
<li><a href="https://manuel.kiessling.net/2025/03/31/how-seasoned-developers-can-achieve-great-results-with-ai-coding-agents/"><strong>Senior Developer Skills in the AI Age</strong> <code>manuel.kiessling.net</code></a> - <a href="https://news.ycombinator.com/item?id=43573755">149 comments 245 points</a></li>
<li><a href="https://www.dutchosintguy.com/post/the-slow-collapse-of-critical-thinking-in-osint-due-to-ai"><strong>The Slow Collapse of Critical Thinking in OSINT Due to AI</strong> <code>www.dutchosintguy.com</code></a> - <a href="https://news.ycombinator.com/item?id=43573465">128 comments 238 points</a></li>
<li><a href="https://togithub.com/InitWare/InitWare"><strong>InitWare, a portable systemd fork running on BSDs and Linux</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43568503">85 comments 148 points</a></li>
<li><a href="https://niila.fi/en/ai-cheats/"><strong>AI cheats: Why you didn't notice your teammate was cheating</strong> <code>niila.fi</code></a> - <a href="https://news.ycombinator.com/item?id=43574929">100 comments 123 points</a></li>
<li><a href="https://www.wsj.com/world/asia/north-korea-cryptocurrency-580d7d3f"><strong>Hackers stole billions in crypto to keep North Korea’s regime afloat</strong> <code>www.wsj.com</code></a> - <a href="https://news.ycombinator.com/item?id=43569009">127 comments 116 points</a></li>
<li><a href="https://gitmcp.io/"><strong>Show HN: GitMCP is an automatic MCP server for every GitHub repo</strong> <code>gitmcp.io</code></a> - <a href="https://news.ycombinator.com/item?id=43573539">34 comments 115 points</a></li>
<li><a href="https://lucianonooijen.com/blog/why-i-stopped-using-ai-code-editors"><strong>I stopped using AI code editors</strong> <code>lucianonooijen.com</code></a> - <a href="https://news.ycombinator.com/item?id=43565438">76 comments 99 points</a></li>
<li><a href="https://togithub.com/hatchet-dev/hatchet"><strong>Show HN: Hatchet v1 – A task orchestration platform built on Postgres</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43572733">27 comments 98 points</a></li>
<li><a href="https://togithub.com/c3lang/c3c"><strong>Show HN: The C3 programming language (C alternative language)</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43569724">61 comments 97 points</a></li>
<li><a href="https://togithub.com/hail-hydrant/zxc"><strong>Show HN: Zxc – Rust TLS proxy with tmux and Vim as UI, BurpSuite alternative</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43568771">13 comments 91 points</a></li>
<li><a href="https://monkeys.zip/"><strong>Show HN: Monkeys.zip – 3000 Monkeys on Typewriters</strong> <code>monkeys.zip</code></a> - <a href="https://news.ycombinator.com/item?id=43573299">26 comments 89 points</a></li>
<li><a href="https://discourse.nixos.org/t/anduril-industries-electromagnetic-warfare-team-is-hiring/62569"><strong>Anduril banned from recruiting on NixOS forums</strong> <code>discourse.nixos.org</code></a> - <a href="https://news.ycombinator.com/item?id=43578310">39 comments 84 points</a></li>
<li><a href="https://www.marieclaire.com/fashion/recession-2025-fashion-indicators/"><strong>2025 Recession Indicators Hit Fashion and Wall Street at Once</strong> <code>www.marieclaire.com</code></a> - <a href="https://news.ycombinator.com/item?id=43573488">149 comments 83 points</a></li>
<li><a href="https://www.renehersecycles.com/bikes-in-the-age-of-tariffs/"><strong>Bikes in the age of tariffs</strong> <code>www.renehersecycles.com</code></a> - <a href="https://news.ycombinator.com/item?id=43572820">97 comments 80 points</a></li>
<li><a href="https://simon-frey.com/tabsub/"><strong>Show HN: Offline JavaScript PubSub between browser tabs</strong> <code>simon-frey.com</code></a> - <a href="https://news.ycombinator.com/item?id=43569961">30 comments 76 points</a></li>
<li><a href="https://www.jameco.com/Jameco/workshop/Howitworks/how-servo-motors-work.html"><strong>How Servo Motors Work</strong> <code>www.jameco.com</code></a> - <a href="https://news.ycombinator.com/item?id=43574125">20 comments 75 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43570749"><strong>Show HN: Novanode, Global load balancing with Caddy, no vendor lock-in</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43570749">27 comments 74 points</a></li>
<li><a href="https://www.nytimes.com/2025/04/03/us/politics/nsa-cyber-command-chief-fired.html"><strong>Head of NSA and Cybercommand Is Ousted</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43578475">32 comments 67 points</a></li>
<li><a href="https://www.reuters.com/technology/intel-tsmc-tentatively-agree-form-chipmaking-joint-venture-information-reports-2025-04-03/"><strong>Intel, TSMC tentatively agree to form chipmaking joint venture</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43573980">17 comments 67 points</a></li>
<li><a href="https://tenstorrent.com/vision/tenstorrent-launches-blackhole-developer-products-at-tenstorrent-dev-day"><strong>Tenstorrent Launches Blackhole Developer Products at Tenstorrent Dev Day</strong> <code>tenstorrent.com</code></a> - <a href="https://news.ycombinator.com/item?id=43573310">15 comments 61 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-03]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/930</link>
<guid>930</guid>
<pubDate>Thu, 03 Apr 2025 06:18:10 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://news.ycombinator.com/item?id=43558671"><strong>Tell HN: Announcing tomhow as a public moderator</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43558671">390 comments 1436 points</a></li>
<li><a href="https://www.dorithegiant.com/2016/05/13-animals-made-from-13-circles.html"><strong>Animals Made from 13 Circles (2016)</strong> <code>www.dorithegiant.com</code></a> - <a href="https://news.ycombinator.com/item?id=43557873">92 comments 483 points</a></li>
<li><a href="https://pico.sh/"><strong>Pico.sh – SSH powered services for developers</strong> <code>pico.sh</code></a> - <a href="https://news.ycombinator.com/item?id=43560899">78 comments 344 points</a></li>
<li><a href="https://tailscale.com/blog/plan9-port"><strong>Porting Tailscale to Plan 9</strong> <code>tailscale.com</code></a> - <a href="https://news.ycombinator.com/item?id=43557790">86 comments 336 points</a></li>
<li><a href="https://reactormag.com/30-years-later-real-genius-is-still-the-geek-solidarity-film-that-nerd-culture-deserves/"><strong>RIP Val Kilmer: Real Genius .. the Film Nerd Culture Deserves (2015)</strong> <code>reactormag.com</code></a> - <a href="https://news.ycombinator.com/item?id=43555334">101 comments 322 points</a></li>
<li><a href="https://www.techradar.com/pro/mozilla-launching-thundermail-email-service-to-take-on-gmail-microsoft-365"><strong>Mozilla launching “Thundermail” email service to take on Gmail, Microsoft 365</strong> <code>www.techradar.com</code></a> - <a href="https://news.ycombinator.com/item?id=43560885">206 comments 316 points</a></li>
<li><a href="https://www.culture-critic.com/p/why-is-the-world-losing-color"><strong>Why is the world losing color?</strong> <code>www.culture-critic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43557471">247 comments 279 points</a></li>
<li><a href="https://www.politico.com/news/2025/04/02/waltzs-team-set-up-at-least-20-signal-group-chats-for-crises-across-the-world-00266845"><strong>Waltz's team set up at least 20 Signal group chats for crises across the world</strong> <code>www.politico.com</code></a> - <a href="https://news.ycombinator.com/item?id=43560336">189 comments 275 points</a></li>
<li><a href="https://www.bbc.com/news/live/c1dr7vy39eet"><strong>US Administration announces 34% tariffs on China, 20% on EU</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43561253">332 comments 266 points</a></li>
<li><a href="https://togithub.com/luskaner/ageLANServer"><strong>Web Server for AoE 1, 2 and 3 DE supporting LAN multiplayer 100% offline</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43562860">32 comments 246 points</a></li>
<li><a href="https://annehelen.substack.com/p/are-people-bad-at-their-jobsor-are"><strong>Are people bad at their jobs or are the jobs just bad?</strong> <code>annehelen.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43562119">205 comments 197 points</a></li>
<li><a href="https://automattic.com/2025/04/02/restructuring-announcement/"><strong>Restructuring Announcement</strong> <code>automattic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43559855">154 comments 179 points</a></li>
<li><a href="https://matrix.org/blog/2025/04/matrix-auth-service/"><strong>Matrix.org Will Migrate to MAS</strong> <code>matrix.org</code></a> - <a href="https://news.ycombinator.com/item?id=43558464">103 comments 166 points</a></li>
<li><a href="https://www.unsw.edu.au/newsroom/news/2025/03/sports-supplement-creatine-makes-no-difference-to-muscle-gains-trial-finds"><strong>Sports supplement creatine makes no difference to muscle gains, trial finds</strong> <code>www.unsw.edu.au</code></a> - <a href="https://news.ycombinator.com/item?id=43556350">168 comments 162 points</a></li>
<li><a href="https://blog.cloudflare.com/yarn-test-suffers-strange-derailment/"><strong>A steam locomotive from 1993 broke my yarn test</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=43556280">68 comments 161 points</a></li>
<li><a href="https://spectrum.ieee.org/digital-archive"><strong>Digital Archivists: Protecting Public Data from Erasure</strong> <code>spectrum.ieee.org</code></a> - <a href="https://news.ycombinator.com/item?id=43558182">37 comments 158 points</a></li>
<li><a href="https://www.smithsonianmag.com/science-nature/how-forgotten-bean-could-save-coffee-from-extinction-180986230/"><strong>Coffea stenophylla: A forgotten bean that could save coffee from extinction</strong> <code>www.smithsonianmag.com</code></a> - <a href="https://news.ycombinator.com/item?id=43555286">118 comments 153 points</a></li>
<li><a href="https://www.washingtonpost.com/technology/2025/03/31/immigration-h1b-fear-siliconvalley/"><strong>Tech companies are telling immigrant employees on visas not to leave the U.S.</strong> <code>www.washingtonpost.com</code></a> - <a href="https://news.ycombinator.com/item?id=43563918">130 comments 140 points</a></li>
<li><a href="https://blog.google/products/gemini/how-we-built-gemini-robotics/"><strong>How Google built its Gemini robotics models</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=43557310">52 comments 138 points</a></li>
<li><a href="https://www.ft.com/content/0ebcec51-2a5a-4820-99e8-1e500370fd68"><strong>Tesla suffers worst quarter since 2022 as deliveries tumble</strong> <code>www.ft.com</code></a> - <a href="https://news.ycombinator.com/item?id=43556443">112 comments 133 points</a></li>
<li><a href="https://togithub.com/juanfont/headscale"><strong>An open source, self-hosted implementation of the Tailscale control server</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43563396">23 comments 131 points</a></li>
<li><a href="https://pilledtexts.com/why-i-use-a-17-year-old-thinkpad/"><strong>I maintain a 17 year old ThinkPad</strong> <code>pilledtexts.com</code></a> - <a href="https://news.ycombinator.com/item?id=43564111">93 comments 129 points</a></li>
<li><a href="https://shwin.co/blog/why-i-dont-discuss-politics-with-friends"><strong>Why I don't discuss politics with friends</strong> <code>shwin.co</code></a> - <a href="https://news.ycombinator.com/item?id=43559605">288 comments 127 points</a></li>
<li><a href="https://apnews.com/article/el-salvador-deportation-maryland-man-trump-error-818a0fa1218de714448edcb5be1f7347"><strong>An 'administrative error' sent a Maryland man to an El Salvador prison</strong> <code>apnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=43555724">143 comments 126 points</a></li>
<li><a href="https://potter-yachters.org/stories/teplow_to_hawaii.htm"><strong>Sailing from Berkeley to Hawaii in a 19ft Sailboat</strong> <code>potter-yachters.org</code></a> - <a href="https://news.ycombinator.com/item?id=43558077">70 comments 119 points</a></li>
<li><a href="https://resobscura.substack.com/p/when-jorge-luis-borges-met-one-of"><strong>When Jorge Luis Borges met one of the founders of AI</strong> <code>resobscura.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43559122">33 comments 118 points</a></li>
<li><a href="https://phys.org/news/2025-04-einstein-webb.html"><strong>A dramatic Einstein ring seen by Webb</strong> <code>phys.org</code></a> - <a href="https://news.ycombinator.com/item?id=43557139">26 comments 117 points</a></li>
<li><a href="https://arstechnica.com/gaming/2025/04/nintendo-offers-new-details-on-switch-2-hardware-software/"><strong>Nintendo unveils Switch 2 ahead of June 5 launch</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43557524">152 comments 114 points</a></li>
<li><a href="https://evanconnelly.github.io/post/hacking-call-records/"><strong>Hacking the call records of millions of Americans</strong> <code>evanconnelly.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43558550">19 comments 108 points</a></li>
<li><a href="https://shd.mit.edu/home/"><strong>MIT 6.5950 Secure Hardware Design – An open-source course on hardware attacks</strong> <code>shd.mit.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43562109">7 comments 108 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-02]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/929</link>
<guid>929</guid>
<pubDate>Wed, 02 Apr 2025 06:17:54 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://pages.cs.wisc.edu/~kovar/hall.html"><strong>Electron band structure in germanium, my ass (2001)</strong> <code>pages.cs.wisc.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43545917">325 comments 778 points</a></li>
<li><a href="https://nuejs.org/blog/large-scale-apps/"><strong>Show HN: Nue – Apps lighter than a React button</strong> <code>nuejs.org</code></a> - <a href="https://news.ycombinator.com/item?id=43543241">505 comments 695 points</a></li>
<li><a href="http://oldvcr.blogspot.com/2025/04/the-april-fools-joke-that-might-have.html"><strong>The April Fools joke that might have got me fired</strong> <code>oldvcr.blogspot.com</code></a> - <a href="https://news.ycombinator.com/item?id=43543743">231 comments 480 points</a></li>
<li><a href="https://app.fluentsubs.com/exercises/daily"><strong>Show HN: Duolingo-style exercises but with real-world content like the news</strong> <code>app.fluentsubs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43543235">166 comments 438 points</a></li>
<li><a href="https://www.bbc.com/news/articles/c78jd30ywv8o"><strong>Bletchley code breaker Betty Webb dies aged 101</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43546236">64 comments 383 points</a></li>
<li><a href="https://secondlifestorage.com/index.php?threads/glubuxs-powerwall.126/"><strong>Glubux's Powerwall (2016)</strong> <code>secondlifestorage.com</code></a> - <a href="https://news.ycombinator.com/item?id=43548217">234 comments 364 points</a></li>
<li><a href="https://batsov.com/articles/2025/03/30/why-fsharp/"><strong>Why F#?</strong> <code>batsov.com</code></a> - <a href="https://news.ycombinator.com/item?id=43546004">278 comments 319 points</a></li>
<li><a href="https://home.cern/news/news/physics/cern-scientists-find-evidence-quantum-entanglement-sheep"><strong>CERN scientists find evidence of quantum entanglement in sheep</strong> <code>home.cern</code></a> - <a href="https://news.ycombinator.com/item?id=43545349">100 comments 308 points</a></li>
<li><a href="https://kiranet.org/self-hosting-like-its-2025/"><strong>Self-Hosting like it's 2025</strong> <code>kiranet.org</code></a> - <a href="https://news.ycombinator.com/item?id=43544979">213 comments 207 points</a></li>
<li><a href="https://www.independent.co.uk/news/world/americas/us-politics/trump-el-salvador-abrego-garcia-b2725002.html"><strong>US accidentally sent Maryland father to Salvadorian prison, can't get him back</strong> <code>www.independent.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43544534">130 comments 207 points</a></li>
<li><a href="https://libreqos.io/2025/04/01/in-loving-memory-of-dave/"><strong>Dave Täht has died</strong> <code>libreqos.io</code></a> - <a href="https://news.ycombinator.com/item?id=43550098">40 comments 200 points</a></li>
<li><a href="https://togithub.com/dfd-tud/deda"><strong>DEDA – Tracking Dots Extraction, Decoding and Anonymisation Toolkit</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43551397">63 comments 193 points</a></li>
<li><a href="https://togithub.com/getomni-ai/benchmark/blob/main/README.md"><strong>Show HN: Qwen-2.5-32B is now the best open source OCR model</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43549072">40 comments 192 points</a></li>
<li><a href="https://glthr.com/myst-graph-1"><strong>The Myst Graph: A New Perspective on Myst</strong> <code>glthr.com</code></a> - <a href="https://news.ycombinator.com/item?id=43549293">49 comments 188 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43547309"><strong>Ask HN: Why hasn’t AMD made a viable CUDA alternative?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43547309">163 comments 166 points</a></li>
<li><a href="https://queue.acm.org/detail.cfm?id=3712057"><strong>Systems Correctness Practices at AWS: Leveraging Formal and Semi-Formal Methods</strong> <code>queue.acm.org</code></a> - <a href="https://news.ycombinator.com/item?id=43547593">40 comments 144 points</a></li>
<li><a href="https://pudding.cool/2025/04/music-dna/"><strong>Shared DNA in Music</strong> <code>pudding.cool</code></a> - <a href="https://news.ycombinator.com/item?id=43551352">27 comments 144 points</a></li>
<li><a href="https://togithub.com/ruby-ui/ruby_ui"><strong>RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43548108">28 comments 136 points</a></li>
<li><a href="https://www.bbc.com/travel/article/20250328-the-people-boycotting-travel-to-the-us"><strong>'A hostile state': Why some travellers are avoiding the US</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43544293">93 comments 121 points</a></li>
<li><a href="https://jangafx.com/insights/linux-binary-compatibility"><strong>The state of binary compatibility on Linux and how to address it</strong> <code>jangafx.com</code></a> - <a href="https://news.ycombinator.com/item?id=43551934">71 comments 113 points</a></li>
<li><a href="https://www.scopeofwork.net/silica-gel/"><strong>How Silica Gel Took Over the World</strong> <code>www.scopeofwork.net</code></a> - <a href="https://news.ycombinator.com/item?id=43550556">80 comments 108 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43548589"><strong>Tell HN: Camelgate NPM Outage (Cloudflare)</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43548589">28 comments 107 points</a></li>
<li><a href="https://asteriskmag.com/issues/09/we-can-must-and-will-simulate-nematode-brains"><strong>We can, must, and will simulate nematode brains</strong> <code>asteriskmag.com</code></a> - <a href="https://news.ycombinator.com/item?id=43547813">100 comments 105 points</a></li>
<li><a href="https://www.nytimes.com/2025/04/01/movies/val-kilmer-dead.html"><strong>Val Kilmer has passed away</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43553573">29 comments 95 points</a></li>
<li><a href="https://togithub.com/williamw520/toposort"><strong>Show HN: Zig Topological Sort Library for Parallel Processing</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43549618">36 comments 93 points</a></li>
<li><a href="https://www.naveen.ing/cli-for-smartplugs/"><strong>Show HN: Terminal dashboard that throttles my PC during peak electricity rates</strong> <code>www.naveen.ing</code></a> - <a href="https://news.ycombinator.com/item?id=43547835">58 comments 89 points</a></li>
<li><a href="https://www.theguardian.com/technology/2025/apr/01/donkey-kong-champion-billy-mitchell-wins-defamation-case-australia-youtuber-karl-jobst-ntwnfb"><strong>Donkey Kong champion wins defamation case against Australian YouTuber Karl Jobst</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43547178">68 comments 85 points</a></li>
<li><a href="https://www.theregister.com/2025/03/31/llm_providers_extinction/"><strong>LLM providers on the cusp of an 'extinction' phase as capex realities bite</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=43543429">68 comments 84 points</a></li>
<li><a href="https://togithub.com/nizarmah/igatha"><strong>Show HN: Offline SOS signaling+recovery app for disasters/wars</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43551767">43 comments 84 points</a></li>
<li><a href="https://www.wired.com/story/doge-takes-control-usip-office-building/"><strong>Doge Is Trying to Gift Itself a $500M Building</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43546089">35 comments 82 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-04-01]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/928</link>
<guid>928</guid>
<pubDate>Tue, 01 Apr 2025 07:18:17 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://doublepulsar.com/oracle-attempt-to-hide-serious-cybersecurity-incident-from-customers-in-oracle-saas-service-9231c8daff4a"><strong>Oracle attempt to hide cybersecurity incident from customers?</strong> <code>doublepulsar.com</code></a> - <a href="https://news.ycombinator.com/item?id=43535953">114 comments 564 points</a></li>
<li><a href="https://www.goto80.com/the-demoscene-as-a-unesco-heritage-in-sweden"><strong>The demoscene as a UNESCO heritage in Sweden</strong> <code>www.goto80.com</code></a> - <a href="https://news.ycombinator.com/item?id=43533362">74 comments 546 points</a></li>
<li><a href="https://9to5google.com/2025/03/31/honey-extension-users-dropped-chrome-march-2025/"><strong>Honey has now lost 4M Chrome users after shady tactics were revealed</strong> <code>9to5google.com</code></a> - <a href="https://news.ycombinator.com/item?id=43538113">253 comments 511 points</a></li>
<li><a href="https://composio.dev/blog/gemini-2-5-pro-vs-claude-3-7-sonnet-coding-comparison/"><strong>Gemini 2.5 Pro vs. Claude 3.7 Sonnet: Coding Comparison</strong> <code>composio.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43534029">302 comments 426 points</a></li>
<li><a href="https://developer.chrome.com/blog/a-customizable-select"><strong>The <select> element can now be customized with CSS</strong> <code>developer.chrome.com</code></a> - <a href="https://news.ycombinator.com/item?id=43532830">154 comments 396 points</a></li>
<li><a href="https://www.sergey.fyi/articles/reliability-vs-capability"><strong>AI agents: Less capability, more reliability, please</strong> <code>www.sergey.fyi</code></a> - <a href="https://news.ycombinator.com/item?id=43535653">210 comments 339 points</a></li>
<li><a href="https://www.thephcheese.com/theres-white-stuff-growing-on-your-cheese-that-isnt-mold"><strong>It’s not mold, it’s calcium lactate (2018)</strong> <code>www.thephcheese.com</code></a> - <a href="https://news.ycombinator.com/item?id=43535688">204 comments 335 points</a></li>
<li><a href="https://www.smithsonianmag.com/smart-news/james-webb-space-telescope-reveals-that-most-galaxies-rotate-clockwise-180986224/"><strong>James Webb Space Telescope reveals that most galaxies rotate clockwise</strong> <code>www.smithsonianmag.com</code></a> - <a href="https://news.ycombinator.com/item?id=43533306">263 comments 312 points</a></li>
<li><a href="https://tosdr.org/en"><strong>ToS;DR</strong> <code>tosdr.org</code></a> - <a href="https://news.ycombinator.com/item?id=43533096">39 comments 271 points</a></li>
<li><a href="https://thelibertyline.com/2025/03/30/yankees-new-torpedo-bat/"><strong>MLB says Yankees’ new “torpedo bats” are legal and likely coming</strong> <code>thelibertyline.com</code></a> - <a href="https://news.ycombinator.com/item?id=43536146">365 comments 254 points</a></li>
<li><a href="https://sgnt.ai/p/hell-out-of-llms/"><strong>Don’t let an LLM make decisions or execute business logic</strong> <code>sgnt.ai</code></a> - <a href="https://news.ycombinator.com/item?id=43542259">118 comments 247 points</a></li>
<li><a href="https://www.science.org/content/blog-post/things-i-won-t-work-dioxygen-difluoride"><strong>Things I Won't Work With: Dioxygen Difluoride (2010)</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=43533496">103 comments 238 points</a></li>
<li><a href="https://arstechnica.com/tech-policy/2025/03/france-fines-apple-e150m-for-excessive-pop-ups-that-let-users-reject-tracking/"><strong>France fines Apple €150M for “excessive” pop-ups that let users reject tracking</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43537593">169 comments 231 points</a></li>
<li><a href="https://goperf.dev/"><strong>Go Optimization Guide</strong> <code>goperf.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43539585">39 comments 218 points</a></li>
<li><a href="https://togithub.com/lharries/whatsapp-mcp"><strong>Show HN: WhatsApp MCP Server</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43532967">130 comments 207 points</a></li>
<li><a href="https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html"><strong>Compiler Options Hardening Guide for C and C++</strong> <code>best.openssf.org</code></a> - <a href="https://news.ycombinator.com/item?id=43533516">48 comments 204 points</a></li>
<li><a href="https://www.galactanet.com/oneoff/theegg.html"><strong>The Egg (2009)</strong> <code>www.galactanet.com</code></a> - <a href="https://news.ycombinator.com/item?id=43533826">84 comments 189 points</a></li>
<li><a href="https://www.theguardian.com/world/live/2025/mar/31/france-marine-le-pen-embezzlement-verdict-europe-news-live"><strong>Marine Le Pen banned from running in 2027 and given four-year sentence</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43534140">277 comments 184 points</a></li>
<li><a href="https://turso.tech/blog/turso-offline-sync-public-beta"><strong>Turso SQLite Offline Sync Public Beta</strong> <code>turso.tech</code></a> - <a href="https://news.ycombinator.com/item?id=43535943">60 comments 181 points</a></li>
<li><a href="https://openjdk.org/jeps/8349536"><strong>JEP draft: Prepare to make final mean final</strong> <code>openjdk.org</code></a> - <a href="https://news.ycombinator.com/item?id=43538919">87 comments 176 points</a></li>
<li><a href="https://help.kagi.com/kagi/plans/family-plan.html#kidslogin"><strong>Kagi for Kids</strong> <code>help.kagi.com</code></a> - <a href="https://news.ycombinator.com/item?id=43538338">149 comments 172 points</a></li>
<li><a href="https://togithub.com/koreader/koreader"><strong>KOReader: Open-Source eBook Reader</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43539103">30 comments 161 points</a></li>
<li><a href="https://browsercraft.cheerpj.com/"><strong>Browsercraft: Java Minecraft in the browser</strong> <code>browsercraft.cheerpj.com</code></a> - <a href="https://news.ycombinator.com/item?id=43535769">88 comments 151 points</a></li>
<li><a href="https://aumont.fr/posts/FreeBSD-Home-Server/"><strong>Why I run FreeBSD for my home servers (2024)</strong> <code>aumont.fr</code></a> - <a href="https://news.ycombinator.com/item?id=43534533">163 comments 141 points</a></li>
<li><a href="https://netflixtechblog.com/globalizing-productions-with-netflixs-media-production-suite-fc3c108c0a22"><strong>Netflix's Media Production Suite</strong> <code>netflixtechblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=43541759">45 comments 133 points</a></li>
<li><a href="https://www.righto.com/2025/03/pentium-microcde-rom-circuitry.html"><strong>Notes on the Pentium's microcode circuitry</strong> <code>www.righto.com</code></a> - <a href="https://news.ycombinator.com/item?id=43538192">26 comments 129 points</a></li>
<li><a href="https://arxiv.org/abs/2503.21145"><strong>How to Secure Existing C and C++ Software Without Memory Safety [pdf]</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=43532220">71 comments 124 points</a></li>
<li><a href="https://openai.com/open-model-feedback/"><strong>OpenAI releasing new open model in coming months, seeks community feedback</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=43538783">73 comments 101 points</a></li>
<li><a href="https://togithub.com/astronomer/airflow-ai-sdk"><strong>LLM Workflows then Agents: Getting Started with Apache Airflow</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43538164">22 comments 100 points</a></li>
<li><a href="https://julian.digital/2025/03/27/the-case-against-conversational-interfaces/"><strong>The case against conversational interfaces</strong> <code>julian.digital</code></a> - <a href="https://news.ycombinator.com/item?id=43542131">25 comments 92 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-31]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/927</link>
<guid>927</guid>
<pubDate>Mon, 31 Mar 2025 06:18:40 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://krebsonsecurity.com/2025/03/how-each-pillar-of-the-1st-amendment-is-under-attack/"><strong>How each pillar of the First Amendment is under attack</strong> <code>krebsonsecurity.com</code></a> - <a href="https://news.ycombinator.com/item?id=43529707">600 comments 881 points</a></li>
<li><a href="https://arstechnica.com/security/2025/03/computer-scientist-goes-silent-after-fbi-raid-and-purging-from-university-website/"><strong>FBI raids home of prominent computer scientist who has gone incommunicado</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43527001">322 comments 794 points</a></li>
<li><a href="https://hilariusbookbinder.substack.com/p/the-average-college-student-today"><strong>The average college student today</strong> <code>hilariusbookbinder.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43522966">576 comments 459 points</a></li>
<li><a href="https://togithub.com/winblues/blue95"><strong>Blue95: a desktop for your childhood home's computer room</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43524937">229 comments 453 points</a></li>
<li><a href="https://www.praetorian.com/blog/codeqleaked-public-secrets-exposure-leads-to-supply-chain-attack-on-github-codeql/"><strong>Public secrets exposure leads to supply chain attack on GitHub CodeQL</strong> <code>www.praetorian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43527044">43 comments 223 points</a></li>
<li><a href="https://www.vox.com/2020/1/8/21051869/indoor-air-pollution-student-achievement"><strong>Installing air filters in classrooms has surprisingly large educational benefits (2020)</strong> <code>www.vox.com</code></a> - <a href="https://news.ycombinator.com/item?id=43529257">89 comments 191 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43527452"><strong>Ask HN: What are you working on? (March 2025)</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43527452">448 comments 188 points</a></li>
<li><a href="https://lucumr.pocoo.org/2025/3/27/any-upcast/"><strong>Rust Any part 3: we have upcasts</strong> <code>lucumr.pocoo.org</code></a> - <a href="https://news.ycombinator.com/item?id=43523238">71 comments 169 points</a></li>
<li><a href="https://www.thetimes.com/uk/society/article/met-smash-down-door-of-quaker-meeting-house-to-arrest-activists-jhhchrtlt"><strong>Met Police smash down door of Quaker meeting house to arrest activists</strong> <code>www.thetimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43525909">92 comments 146 points</a></li>
<li><a href="https://www.cs.tufts.edu/~nr/cs257/archive/mads-tofte/four-lectures.pdf"><strong>Four Lectures on Standard ML (1989) [pdf]</strong> <code>www.cs.tufts.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43522363">32 comments 141 points</a></li>
<li><a href="https://richardcocks.github.io/2025-03-30-FasterThanMemCmp.html"><strong>Span<T>.SequenceEquals is faster than memcmp</strong> <code>richardcocks.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43524665">66 comments 129 points</a></li>
<li><a href="https://marcelofern.com/posts/c/why-is-this-site-built-with-c/index.html"><strong>Why Is This Site Built with C</strong> <code>marcelofern.com</code></a> - <a href="https://news.ycombinator.com/item?id=43526058">108 comments 127 points</a></li>
<li><a href="https://www.latintimes.com/man-detained-ice-autism-awareness-tattoo-still-sent-prison-after-officers-declared-him-clean-579373"><strong>Man Detained by ICE for Autism Awareness Tattoo Sent to Prison</strong> <code>www.latintimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43527154">24 comments 126 points</a></li>
<li><a href="https://www.techdirt.com/2025/03/28/ice-arrested-and-detained-a-us-citizen-for-hours-because-he-looked-mexican/"><strong>ICE Arrested and Detained a US Citizen for Hours Because He Looked Mexican</strong> <code>www.techdirt.com</code></a> - <a href="https://news.ycombinator.com/item?id=43527275">12 comments 124 points</a></li>
<li><a href="https://www.postandcourier.com/news/special_reports/marine-fighter-jet-eject-north-charleston/article_80d55e4a-f600-11ef-8ef4-03f14319ce57.html"><strong>A decision to eject from a failing F-35B fighter and the betrayal in its wake</strong> <code>www.postandcourier.com</code></a> - <a href="https://news.ycombinator.com/item?id=43531013">36 comments 122 points</a></li>
<li><a href="https://hacker-laws.com/"><strong>Hacker Laws</strong> <code>hacker-laws.com</code></a> - <a href="https://news.ycombinator.com/item?id=43523974">16 comments 119 points</a></li>
<li><a href="https://www.joshuakennon.com/raising-kids-to-have-an-analogue-childhood-in-a-digital-world/"><strong>Raising Kids to Have an Analog Childhood in a Digital World</strong> <code>www.joshuakennon.com</code></a> - <a href="https://news.ycombinator.com/item?id=43527019">52 comments 113 points</a></li>
<li><a href="https://mastodon.social/@organicmaps/114233788700982882"><strong>Organic Maps migrates to Forgejo due to GitHub account blocked by Microsoft</strong> <code>mastodon.social</code></a> - <a href="https://news.ycombinator.com/item?id=43525395">34 comments 113 points</a></li>
<li><a href="https://nostarch.com/introduction-system-programming-linux"><strong>Introduction to System Programming in Linux (Early Access)</strong> <code>nostarch.com</code></a> - <a href="https://news.ycombinator.com/item?id=43526763">18 comments 113 points</a></li>
<li><a href="https://breezewiki.com/"><strong>BreezeWiki makes wiki pages on Fandom readable</strong> <code>breezewiki.com</code></a> - <a href="https://news.ycombinator.com/item?id=43529163">41 comments 107 points</a></li>
<li><a href="https://zeteo.com/p/ice-manually-revoking-university-students-residency-status-middle-east"><strong>ICE Revoking Students' Immigration Statuses Without Their or the Uni's Knowledge</strong> <code>zeteo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43528356">35 comments 104 points</a></li>
<li><a href="https://www.nature.com/articles/d41586-025-00847-0"><strong>Can Earth's rotation generate power? Physicists divided over controversial claim</strong> <code>www.nature.com</code></a> - <a href="https://news.ycombinator.com/item?id=43526443">191 comments 94 points</a></li>
<li><a href="https://www.nasaspaceflight.com/2025/03/isar-first-launch/"><strong>Isar Aerospace launches Spectrum, fails early in first stage flight</strong> <code>www.nasaspaceflight.com</code></a> - <a href="https://news.ycombinator.com/item?id=43524784">51 comments 92 points</a></li>
<li><a href="https://www.washingtonpost.com/travel/2025/03/28/air-france-lost-cellphone/"><strong>Why a plane turned around when a passenger lost a phone midflight</strong> <code>www.washingtonpost.com</code></a> - <a href="https://news.ycombinator.com/item?id=43523765">154 comments 91 points</a></li>
<li><a href="https://unlinkedlist.org/2023/03/19/tail-call-recursion-in-java-with-asm/"><strong>Tail Call Recursion in Java with ASM (2023)</strong> <code>unlinkedlist.org</code></a> - <a href="https://news.ycombinator.com/item?id=43523741">36 comments 91 points</a></li>
<li><a href="https://togithub.com/bittorf/kalua"><strong>Kalua: An OpenWrt extension for building large mesh-networks</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43522059">2 comments 87 points</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2025-03-25/retirement-saving-private-equity-comes-for-america-s-401-k"><strong>Private Equity Is Coming for America's $12T in Retirement Savings</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=43525418">97 comments 85 points</a></li>
<li><a href="https://www.mamedev.org/?p=549"><strong>MAME 0.276</strong> <code>www.mamedev.org</code></a> - <a href="https://news.ycombinator.com/item?id=43527552">23 comments 82 points</a></li>
<li><a href="https://www.johnirons.com/pdfs/shadowleguin.pdf"><strong>The Child and the Shadow (1975) [pdf]</strong> <code>www.johnirons.com</code></a> - <a href="https://news.ycombinator.com/item?id=43525079">19 comments 75 points</a></li>
<li><a href="https://www.reuters.com/world/us/trump-says-he-is-not-joking-about-third-presidential-term-2025-03-30/"><strong>Trump says he is not joking about third presidential term</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43525860">68 comments 74 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-30]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/926</link>
<guid>926</guid>
<pubDate>Sun, 30 Mar 2025 06:16:16 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://tedium.co/2025/03/29/severance-apple-remote-editing-weirdness/"><strong>Why Apple's Severance gets edited over remote desktop software</strong> <code>tedium.co</code></a> - <a href="https://news.ycombinator.com/item?id=43517301">250 comments 414 points</a></li>
<li><a href="https://peabee.substack.com/p/everyone-knows-what-apps-you-use"><strong>Everyone knows all the apps on your phone</strong> <code>peabee.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43518866">134 comments 358 points</a></li>
<li><a href="https://togithub.com/supabase-community/postgres-language-server"><strong>Postgres Language Server: Initial Release</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43513996">50 comments 301 points</a></li>
<li><a href="https://togithub.com/Rukenshia/pomodoro"><strong>Show HN: Physical Pomodoro Timer with ESP32 and e-paper screen</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43514383">63 comments 289 points</a></li>
<li><a href="https://veloren.net/"><strong>Veloren – voxel action-adventure role-playing</strong> <code>veloren.net</code></a> - <a href="https://news.ycombinator.com/item?id=43517337">67 comments 279 points</a></li>
<li><a href="https://support.vizio.com/s/article/Ambient-or-Scenic-Mode-showing-on-my-TV?language=en_US"><strong>My TV started playing a video in full screen by itself. What happened?</strong> <code>support.vizio.com</code></a> - <a href="https://news.ycombinator.com/item?id=43520074">155 comments 274 points</a></li>
<li><a href="https://dbushell.com/2025/03/29/et-tu-grammarly/"><strong>Et Tu, Grammarly?</strong> <code>dbushell.com</code></a> - <a href="https://news.ycombinator.com/item?id=43514308">69 comments 258 points</a></li>
<li><a href="https://www.theguardian.com/us-news/2025/mar/29/when-the-physicists-need-burner-phones-thats-when-you-know-americas-changed"><strong>When the physicists need burner phones, that's when you know America's changed</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43517590">225 comments 242 points</a></li>
<li><a href="https://cloudisland.nz/@rmi/114219847307106213"><strong>Today Google bricked my Chromebook by force-installing a hidden extension</strong> <code>cloudisland.nz</code></a> - <a href="https://news.ycombinator.com/item?id=43514087">63 comments 229 points</a></li>
<li><a href="https://christinapagel.substack.com/p/trumps-attacks-on-universities-get"><strong>Trump's attacks on universities get darker, with shadows reaching our shores</strong> <code>christinapagel.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43513811">149 comments 226 points</a></li>
<li><a href="https://togithub.com/misprit7/real-time-chess"><strong>Real Time Chess – A physical chess board without the concept of turns</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43514695">36 comments 224 points</a></li>
<li><a href="https://pagedout.institute/download/PagedOut_006.pdf"><strong>Paged Out #6 [pdf]</strong> <code>pagedout.institute</code></a> - <a href="https://news.ycombinator.com/item?id=43517375">17 comments 210 points</a></li>
<li><a href="https://buyoncesoftware.com/"><strong>Buy once, use forever A directory of one-time purchase software. Add yours</strong> <code>buyoncesoftware.com</code></a> - <a href="https://news.ycombinator.com/item?id=43519998">86 comments 202 points</a></li>
<li><a href="https://www.bbc.com/news/articles/c4gmggp2y99o"><strong>Utah becomes first US state to ban fluoride in its water</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=43517833">397 comments 194 points</a></li>
<li><a href="https://richardzach.org/2025/03/accessible-open-textbooks-in-math-heavy-disciplines/"><strong>Accessible open textbooks in math-heavy disciplines</strong> <code>richardzach.org</code></a> - <a href="https://news.ycombinator.com/item?id=43516733">55 comments 175 points</a></li>
<li><a href="https://koto.dev/"><strong>Koto Programming Language</strong> <code>koto.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43514915">124 comments 157 points</a></li>
<li><a href="https://philipbohun.com/blog/0007.html"><strong>Convert Linux to Windows</strong> <code>philipbohun.com</code></a> - <a href="https://news.ycombinator.com/item?id=43518917">163 comments 142 points</a></li>
<li><a href="https://ploum.net/2025-03-28-geeks-naivety.html"><strong>The Candid Naivety of Geeks</strong> <code>ploum.net</code></a> - <a href="https://news.ycombinator.com/item?id=43518087">68 comments 131 points</a></li>
<li><a href="https://www.cnn.com/2025/03/27/tech/apple-ai-artificial-intelligence/index.html"><strong>Apple's AI isn't a letdown. AI is the letdown</strong> <code>www.cnn.com</code></a> - <a href="https://news.ycombinator.com/item?id=43518576">133 comments 128 points</a></li>
<li><a href="https://openwall.com/lists/oss-security/2025/03/29/1"><strong>Atop 2.11 heap problems</strong> <code>openwall.com</code></a> - <a href="https://news.ycombinator.com/item?id=43518560">51 comments 125 points</a></li>
<li><a href="https://www.openculture.com/2018/07/watch-commercials-david-lynch-directed-big-30-minute-compilation.html"><strong>Commercials that David Lynch directed (2018)</strong> <code>www.openculture.com</code></a> - <a href="https://news.ycombinator.com/item?id=43518466">25 comments 115 points</a></li>
<li><a href="https://www.techdirt.com/2025/03/27/trumps-secret-police-are-now-disappearing-students-for-their-op-eds/"><strong>Trump's Police Are Now Disappearing Students for Their Op-Eds</strong> <code>www.techdirt.com</code></a> - <a href="https://news.ycombinator.com/item?id=43519864">25 comments 112 points</a></li>
<li><a href="https://blog.container-solutions.com/why-im-no-longer-talking-to-architects-about-microservices"><strong>Why I'm No Longer Talking to Architects About Microservices</strong> <code>blog.container-solutions.com</code></a> - <a href="https://news.ycombinator.com/item?id=43515563">89 comments 108 points</a></li>
<li><a href="https://togithub.com/lvgl/lvgl"><strong>Lvgl: Embedded graphics library to create beautiful UIs</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43517576">21 comments 103 points</a></li>
<li><a href="https://www.wired.com/video/watch/incognito-mode-romance-scams"><strong>Scammers Steal $1T a Year – Mostly from Americans</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43513850">90 comments 102 points</a></li>
<li><a href="https://hackread.com/twitter-x-of-2-8-billion-data-leak-an-insider-job/"><strong>Twitter (X) Hit by Data Leak of 2.8B Users – Allegedly an Insider Job</strong> <code>hackread.com</code></a> - <a href="https://news.ycombinator.com/item?id=43517318">14 comments 101 points</a></li>
<li><a href="https://arxiv.org/abs/2501.14787"><strong>Matrix Calculus (For Machine Learning and Beyond)</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=43518220">16 comments 100 points</a></li>
<li><a href="https://www.wsj.com/tech/ai/the-real-story-behind-sam-altman-firing-from-openai-efd51a5d"><strong>The Real Story Behind Sam Altman’s Firing From OpenAI</strong> <code>www.wsj.com</code></a> - <a href="https://news.ycombinator.com/item?id=43514717">104 comments 99 points</a></li>
<li><a href="https://togithub.com/Overv/vramfs"><strong>Vramfs: Vram Based Filesystem for Linux</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43517234">32 comments 95 points</a></li>
<li><a href="https://togithub.com/typedgrammar/typed-japanese"><strong>Typed Japanese</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43515426">31 comments 90 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-29]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/925</link>
<guid>925</guid>
<pubDate>Sat, 29 Mar 2025 06:15:59 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://cardinalnews.org/2025/03/28/i-drove-300-miles-in-rural-virginia-then-asked-police-to-send-me-their-public-surveillance-footage-of-my-car-heres-what-i-learned/"><strong>I asked police to send me their public surveillance footage of my car</strong> <code>cardinalnews.org</code></a> - <a href="https://news.ycombinator.com/item?id=43504413">433 comments 548 points</a></li>
<li><a href="https://twitter.com/elonmusk/status/1905731750275510312"><strong>xAI has acquired X, xAI now valued at $80B</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43509923">660 comments 530 points</a></li>
<li><a href="https://www.landh.tech/blog/20250327-we-hacked-gemini-source-code/"><strong>We hacked Gemini's Python sandbox and leaked its source code (at least some)</strong> <code>www.landh.tech</code></a> - <a href="https://news.ycombinator.com/item?id=43508418">97 comments 473 points</a></li>
<li><a href="https://www.cosmicpython.com/book/preface.html"><strong>Architecture Patterns with Python</strong> <code>www.cosmicpython.com</code></a> - <a href="https://news.ycombinator.com/item?id=43501989">109 comments 430 points</a></li>
<li><a href="https://refactoringenglish.com/chapters/write-blog-posts-developers-read/"><strong>How to write blog posts that developers read</strong> <code>refactoringenglish.com</code></a> - <a href="https://news.ycombinator.com/item?id=43503872">124 comments 380 points</a></li>
<li><a href="https://aeon.co/essays/how-did-kerala-go-from-poor-to-prosperous-among-indias-states"><strong>How Kerala got rich</strong> <code>aeon.co</code></a> - <a href="https://news.ycombinator.com/item?id=43507286">213 comments 341 points</a></li>
<li><a href="https://blog.startifact.com/posts/xee/"><strong>Xee: A Modern XPath and XSLT Engine in Rust</strong> <code>blog.startifact.com</code></a> - <a href="https://news.ycombinator.com/item?id=43502291">172 comments 310 points</a></li>
<li><a href="https://twitter.com/TaraBull808/status/1905534938558157139"><strong>7.7 magnitude earthquake hits Southeast Asia, affecting Myanmar and Thailand</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43503265">95 comments 262 points</a></li>
<li><a href="https://www.ditto.com/blog/cross-platform-p2p-wi-fi-how-the-eu-killed-awdl"><strong>Cross-Platform P2P Wi-Fi: How the EU Killed AWDL</strong> <code>www.ditto.com</code></a> - <a href="https://news.ycombinator.com/item?id=43505022">117 comments 192 points</a></li>
<li><a href="https://newatlas.com/materials/plastic-dissolves-ocean-overnight-no-microplastics/"><strong>Japanese scientists create new plastic that dissolves in saltwater overnight</strong> <code>newatlas.com</code></a> - <a href="https://news.ycombinator.com/item?id=43505626">103 comments 163 points</a></li>
<li><a href="https://www.pugetsystems.com/blog/2025/03/28/2025-tariff-impacts-at-puget-systems/"><strong>2025 Tariff Impacts at Puget Systems</strong> <code>www.pugetsystems.com</code></a> - <a href="https://news.ycombinator.com/item?id=43510870">121 comments 161 points</a></li>
<li><a href="https://kyrylo.org/software/2025/03/27/learn-to-code-ignore-ai-then-use-ai-to-code-even-better.html"><strong>Learn to code, ignore AI, then use AI to code even better</strong> <code>kyrylo.org</code></a> - <a href="https://news.ycombinator.com/item?id=43503295">140 comments 147 points</a></li>
<li><a href="https://www.theverge.com/news/638967/microsoft-windows-11-account-internet-bypass-blocked"><strong>Windows 11 is closing a loophole that let you skip making a Microsoft account</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=43511073">134 comments 147 points</a></li>
<li><a href="https://swift.org/blog/introducing-swiftly_10/"><strong>Swiftly 1.0</strong> <code>swift.org</code></a> - <a href="https://news.ycombinator.com/item?id=43509546">50 comments 145 points</a></li>
<li><a href="https://nymag.com/strategist/article/levis-amazon-jeans-testing.html"><strong>Are Levi's from Amazon different from Levi's from Levi's?</strong> <code>nymag.com</code></a> - <a href="https://news.ycombinator.com/item?id=43504451">131 comments 142 points</a></li>
<li><a href="https://www.caryinstitute.org/news-insights/press-release/getting-hit-lightning-good-some-tropical-trees"><strong>Getting hit by lightning is good for some tropical trees</strong> <code>www.caryinstitute.org</code></a> - <a href="https://news.ycombinator.com/item?id=43505447">61 comments 128 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43503720"><strong>Google is publishing the home addresses of developers without their consent</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43503720">75 comments 119 points</a></li>
<li><a href="https://www.mail-tester.com/test-p3tdhnk3o"><strong>iCloud Mail has DNS misconfigured?</strong> <code>www.mail-tester.com</code></a> - <a href="https://news.ycombinator.com/item?id=43511464">39 comments 119 points</a></li>
<li><a href="https://www.nytimes.com/2025/03/27/us/politics/pilots-signal-leak.html"><strong>Signal Chat Leak Angers U.S. Military Pilots</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43501821">72 comments 113 points</a></li>
<li><a href="https://www.chrbutler.com/digital-echoes-and-unquiet-minds"><strong>Digital Echoes and Unquiet Minds</strong> <code>www.chrbutler.com</code></a> - <a href="https://news.ycombinator.com/item?id=43509548">64 comments 112 points</a></li>
<li><a href="https://calabro.io/zig-cgo"><strong>Building Statically Linked Go Executables with CGO and Zig</strong> <code>calabro.io</code></a> - <a href="https://news.ycombinator.com/item?id=43505646">16 comments 112 points</a></li>
<li><a href="https://www.theverge.com/news/637228/madison-square-garden-james-dolan-facial-recognition-fan-ban"><strong>Madison Square Garden's surveillance banned this fan over his T-shirt design</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=43511340">36 comments 108 points</a></li>
<li><a href="https://terrytao.wordpress.com/2025/03/26/decomposing-a-factorial-into-large-factors/"><strong>Decomposing a Factorial into Large Factors</strong> <code>terrytao.wordpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=43506238">24 comments 106 points</a></li>
<li><a href="https://togithub.com/agsb/milliForth-6502"><strong>MilliForth-6502: The smallest Forth real programming language for 6502</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43503897">30 comments 104 points</a></li>
<li><a href="https://transformer-circuits.pub/2025/attribution-graphs/biology.html"><strong>The Biology of a Large Language Model</strong> <code>transformer-circuits.pub</code></a> - <a href="https://news.ycombinator.com/item?id=43505748">18 comments 103 points</a></li>
<li><a href="https://e360.yale.edu/digest/europe-russia-ukraine-war-natural-gas-2024"><strong>Despite Ukraine war, Europe imported even more Russian gas last year</strong> <code>e360.yale.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43505700">124 comments 102 points</a></li>
<li><a href="https://www.wired.com/story/doge-rebuild-social-security-administration-cobol-benefits/"><strong>Doge Plans to Rebuild SSA Codebase in Months</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43505659">109 comments 102 points</a></li>
<li><a href="https://99percentinvisible.org/episode/the-real-book/"><strong>The Real Book (2021)</strong> <code>99percentinvisible.org</code></a> - <a href="https://news.ycombinator.com/item?id=43507404">23 comments 102 points</a></li>
<li><a href="https://depot.dev/blog/uncovering-disk-io-bottlenecks-github-actions-ci"><strong>Disk I/O bottlenecks in GitHub Actions</strong> <code>depot.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43506574">68 comments 97 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43506068"><strong>Show HN: Cursor IDE now remembers your coding prefs using MCP</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43506068">33 comments 89 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-28]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/924</link>
<guid>924</guid>
<pubDate>Fri, 28 Mar 2025 06:18:14 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.anthropic.com/research/tracing-thoughts-language-model"><strong>Tracing the thoughts of a large language model</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43495617">260 comments 671 points</a></li>
<li><a href="https://reviews.ofb.biz/safari/article/1300.html"><strong>Apple needs a Snow Sequoia</strong> <code>reviews.ofb.biz</code></a> - <a href="https://news.ycombinator.com/item?id=43498984">349 comments 503 points</a></li>
<li><a href="https://medium.com/@brunopostle/piranesis-perspective-trick-6bcd7a754da9"><strong>Piranesi's Perspective Trick (2019)</strong> <code>medium.com</code></a> - <a href="https://news.ycombinator.com/item?id=43492562">72 comments 325 points</a></li>
<li><a href="https://victorpoughon.fr/i-tried-making-artificial-sunlight-at-home/"><strong>I tried making artificial sunlight at home</strong> <code>victorpoughon.fr</code></a> - <a href="https://news.ycombinator.com/item?id=43497394">158 comments 309 points</a></li>
<li><a href="https://twitter.com/skdh/status/1905132853672784121"><strong>I genuinely don't understand why some people are still bullish about LLMs</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43498338">553 comments 308 points</a></li>
<li><a href="https://www.merriam-webster.com/grammar/em-dash-en-dash-how-to-use"><strong>How to Use Em Dashes (–), En Dashes (–), and Hyphens (-)</strong> <code>www.merriam-webster.com</code></a> - <a href="https://news.ycombinator.com/item?id=43497719">247 comments 307 points</a></li>
<li><a href="https://www.science.org/content/article/ai-models-miss-disease-black-female-patients"><strong>AI models miss disease in Black and female patients</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=43496644">217 comments 285 points</a></li>
<li><a href="https://googleprojectzero.blogspot.com/2025/03/blasting-past-webp.html"><strong>Blasting Past WebP - An analysis of the NSO BLASTPASS iMessage exploit</strong> <code>googleprojectzero.blogspot.com</code></a> - <a href="https://news.ycombinator.com/item?id=43493056">99 comments 242 points</a></li>
<li><a href="https://kagi.com/stats?stat=leaderboard"><strong>Most promoted and blocked domains on Kagi</strong> <code>kagi.com</code></a> - <a href="https://news.ycombinator.com/item?id=43499045">108 comments 238 points</a></li>
<li><a href="https://inpractice.yimbyaction.org/p/abundance-isnt-going-to-happen-unless"><strong>Abundance isn't going to happen unless politicians are scared of the status quo</strong> <code>inpractice.yimbyaction.org</code></a> - <a href="https://news.ycombinator.com/item?id=43495644">304 comments 193 points</a></li>
<li><a href="https://www.theguardian.com/world/2025/mar/27/black-swan-denmark-documentary-mads-brugger-amira-smajic"><strong>A filmmaker and a crooked lawyer shattered Denmark's self-image</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43493159">154 comments 190 points</a></li>
<li><a href="https://togithub.com/rottytooth/Rivulet"><strong>Source code art in the Rivulet language</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43492652">29 comments 158 points</a></li>
<li><a href="https://hub.continue.dev/explore/assistants"><strong>Launch HN: Continue (YC S23) – Create custom AI code assistants</strong> <code>hub.continue.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43494427">99 comments 151 points</a></li>
<li><a href="https://www.scottsmitelli.com/articles/take-oncall-and-shove-it/"><strong>Take this on-call rotation and shove it</strong> <code>www.scottsmitelli.com</code></a> - <a href="https://news.ycombinator.com/item?id=43498213">108 comments 150 points</a></li>
<li><a href="https://devblogs.microsoft.com/oldnewthing/20250325-00/?p=110993"><strong>A note on the USB-to-PS/2 mouse adapter that came with Microsoft mouse devices</strong> <code>devblogs.microsoft.com</code></a> - <a href="https://news.ycombinator.com/item?id=43499823">21 comments 133 points</a></li>
<li><a href="https://www.thenewlede.org/2025/03/california-bill-aims-to-phase-out-harmful-ultra-processed-foods-in-schools/"><strong>California bill aims to phase out harmful ultra-processed foods in schools</strong> <code>www.thenewlede.org</code></a> - <a href="https://news.ycombinator.com/item?id=43495997">155 comments 125 points</a></li>
<li><a href="https://phys.org/news/2025-03-bias-social-tinny-video-conferences.html"><strong>Zoom bias: The social costs of having a 'tinny' sound during video conferences</strong> <code>phys.org</code></a> - <a href="https://news.ycombinator.com/item?id=43495465">134 comments 121 points</a></li>
<li><a href="https://blog.autorouting.com/p/13-things-i-would-have-told-myself"><strong>Things I would have told myself before building an autorouter</strong> <code>blog.autorouting.com</code></a> - <a href="https://news.ycombinator.com/item?id=43499992">22 comments 121 points</a></li>
<li><a href="https://gustedt.gitlabpages.inria.fr/modern-c/"><strong>Modern C</strong> <code>gustedt.gitlabpages.inria.fr</code></a> - <a href="https://news.ycombinator.com/item?id=43492211">22 comments 120 points</a></li>
<li><a href="https://www.di.ens.fr/~fbach/ltfp_book.pdf"><strong>Learning Theory from First Principles [pdf]</strong> <code>www.di.ens.fr</code></a> - <a href="https://news.ycombinator.com/item?id=43497954">13 comments 120 points</a></li>
<li><a href="https://www.wired.com/story/signalgate-is-driving-the-most-us-downloads-of-signal-ever/"><strong>SignalGate Is Driving the Most US Downloads of Signal Ever</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43497150">78 comments 115 points</a></li>
<li><a href="https://www.colino.net/wordpress/en/glider-for-apple-ii/"><strong>Glider for Apple II</strong> <code>www.colino.net</code></a> - <a href="https://news.ycombinator.com/item?id=43491977">22 comments 107 points</a></li>
<li><a href="https://newsletter.dancohen.org/archive/asking-good-questions-is-harder-than-giving-great-answers/"><strong>Asking good questions is harder than giving great answers</strong> <code>newsletter.dancohen.org</code></a> - <a href="https://news.ycombinator.com/item?id=43498570">15 comments 99 points</a></li>
<li><a href="https://www.computerworld.com/article/3840480/libreoffice-downloads-on-the-rise-as-users-look-to-avoid-subscription-costs.html"><strong>LibreOffice downloads on the rise as users look to avoid subscription costs</strong> <code>www.computerworld.com</code></a> - <a href="https://news.ycombinator.com/item?id=43499860">56 comments 98 points</a></li>
<li><a href="https://futurism.com/nasa-deletes-comic-women-astronauts"><strong>NASA Deletes Comic Book About How Women Can Be Astronauts</strong> <code>futurism.com</code></a> - <a href="https://news.ycombinator.com/item?id=43497033">25 comments 97 points</a></li>
<li><a href="https://citizenlab.ca/2024/11/analysis-of-censorship-on-amazon-com/"><strong>Banned Books: Analysis of Censorship on Amazon.com (2024)</strong> <code>citizenlab.ca</code></a> - <a href="https://news.ycombinator.com/item?id=43497264">40 comments 92 points</a></li>
<li><a href="https://nsidc.org/sea-ice-today/analyses/arctic-sea-ice-sets-record-low-maximum-2025"><strong>Arctic sea ice sets a record low maximum in 2025</strong> <code>nsidc.org</code></a> - <a href="https://news.ycombinator.com/item?id=43499966">49 comments 89 points</a></li>
<li><a href="https://www.netlify.com/blog/how-we-run-nextjs/"><strong>Netlify deploys hundreds of thousands of Next.js sites – here's what challenging</strong> <code>www.netlify.com</code></a> - <a href="https://news.ycombinator.com/item?id=43493552">24 comments 89 points</a></li>
<li><a href="https://thisdavej.com/share-python-scripts-like-a-pro-uv-and-pep-723-for-easy-deployment/"><strong>Using uv and PEP 723 for Self-Contained Python Scripts</strong> <code>thisdavej.com</code></a> - <a href="https://news.ycombinator.com/item?id=43500124">15 comments 86 points</a></li>
<li><a href="https://www.wired.com/story/inside-arxiv-most-transformative-code-science/"><strong>Inside arXiv–The Most Transformative Platform in All of Science</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43493022">1 comments 84 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-27]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/923</link>
<guid>923</guid>
<pubDate>Thu, 27 Mar 2025 06:17:44 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://elixir-lang.org/blog/2025/03/25/cyanview-elixir-case/"><strong>Coordinating the Superbowl's visual fidelity with Elixir</strong> <code>elixir-lang.org</code></a> - <a href="https://news.ycombinator.com/item?id=43479094">145 comments 610 points</a></li>
<li><a href="https://openai.github.io/openai-agents-python/mcp/"><strong>OpenAI adds MCP support to Agents SDK</strong> <code>openai.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43485566">163 comments 541 points</a></li>
<li><a href="https://lwn.net/Articles/1015402/"><strong>Debian bookworm live images now reproducible</strong> <code>lwn.net</code></a> - <a href="https://news.ycombinator.com/item?id=43484520">110 comments 521 points</a></li>
<li><a href="https://togithub.com/medialab/xan/blob/master/docs/LOVE_LETTER.md"><strong>A love letter to the CSV format</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43484382">389 comments 423 points</a></li>
<li><a href="https://www.blender.org/download/releases/4-4/"><strong>Blender releases their Oscar winning version tool</strong> <code>www.blender.org</code></a> - <a href="https://news.ycombinator.com/item?id=43489114">101 comments 392 points</a></li>
<li><a href="https://onemileatatime.com/news/airline-demand-canada-united-states-collapses/"><strong>Airline Demand Between Canada and United States Collapses, Down 70%+</strong> <code>onemileatatime.com</code></a> - <a href="https://news.ycombinator.com/item?id=43485649">384 comments 296 points</a></li>
<li><a href="https://9to5google.com/2025/03/26/google-android-aosp-developement-private/"><strong>Google will develop Android OS behind closed doors starting next week</strong> <code>9to5google.com</code></a> - <a href="https://news.ycombinator.com/item?id=43484927">191 comments 272 points</a></li>
<li><a href="https://spaceinafrica.com/2025/03/15/botswana-successfully-launches-first-satellite-botsat-1/"><strong>Botswana launches first satellite BOTSAT-1 aboard SpaceX Falcon 9</strong> <code>spaceinafrica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43483660">93 comments 265 points</a></li>
<li><a href="https://go.dev/blog/coretypes"><strong>Good-bye core types; Hello Go as we know and love it</strong> <code>go.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43483842">180 comments 263 points</a></li>
<li><a href="https://www.bleepingcomputer.com/news/security/oracle-customers-confirm-data-stolen-in-alleged-cloud-breach-is-valid/"><strong>Oracle customers confirm data stolen in alleged cloud breach is valid</strong> <code>www.bleepingcomputer.com</code></a> - <a href="https://news.ycombinator.com/item?id=43486945">53 comments 256 points</a></li>
<li><a href="https://eduardoboucas.com/posts/2025-03-25-you-should-know-this-before-choosing-nextjs/"><strong>You should know this before choosing Next.js</strong> <code>eduardoboucas.com</code></a> - <a href="https://news.ycombinator.com/item?id=43481295">110 comments 240 points</a></li>
<li><a href="https://opensource.microsoft.com/blog/2025/03/26/hyperlight-wasm-fast-secure-and-os-free/"><strong>Hyperlight WASM: Fast, secure, and OS-free</strong> <code>opensource.microsoft.com</code></a> - <a href="https://news.ycombinator.com/item?id=43482556">78 comments 211 points</a></li>
<li><a href="https://www.reversinglabs.com/blog/malicious-npm-patch-delivers-reverse-shell"><strong>Malware found on NPM infecting local package with reverse shell</strong> <code>www.reversinglabs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43484845">115 comments 202 points</a></li>
<li><a href="https://www.understandingai.org/p/human-drivers-keep-crashing-into"><strong>Waymos crash less than human drivers</strong> <code>www.understandingai.org</code></a> - <a href="https://news.ycombinator.com/item?id=43487231">177 comments 192 points</a></li>
<li><a href="https://www.eff.org/deeplinks/2025/03/how-delete-your-23andme-data"><strong>How to Delete Your 23andMe Data</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=43486236">97 comments 184 points</a></li>
<li><a href="https://arstechnica.com/gadgets/2025/03/google-makes-android-development-private-will-continue-open-source-releases/"><strong>Google makes Android development private, will continue open source releases</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43485950">72 comments 184 points</a></li>
<li><a href="https://www.microsoft.com/en-us/research/wp-content/uploads/2025/01/lee_2025_ai_critical_thinking_survey.pdf"><strong>The Impact of Generative AI on Critical Thinking [pdf]</strong> <code>www.microsoft.com</code></a> - <a href="https://news.ycombinator.com/item?id=43484224">118 comments 183 points</a></li>
<li><a href="https://www.zdnet.com/article/linux-kernel-6-14-is-a-big-leap-forward-in-performance-and-windows-compatibility/"><strong>Linux kernel 6.14 is a big leap forward in performance and Windows compatibility</strong> <code>www.zdnet.com</code></a> - <a href="https://news.ycombinator.com/item?id=43483567">114 comments 178 points</a></li>
<li><a href="http://collapseos.org/"><strong>Collapse OS</strong> <code>collapseos.org</code></a> - <a href="https://news.ycombinator.com/item?id=43482705">147 comments 173 points</a></li>
<li><a href="https://daringfireball.net/2025/03/the_website_hacker_news_is_afraid_to_discuss"><strong>The Website Hacker News Is Afraid to Discuss</strong> <code>daringfireball.net</code></a> - <a href="https://news.ycombinator.com/item?id=43489058">62 comments 173 points</a></li>
<li><a href="https://www.reuters.com/world/us/doge-staffer-big-balls-provided-tech-support-cybercrime-ring-records-show-2025-03-26/"><strong>DOGE staffer 'Big Balls' provided tech support to cybercrime ring, records show</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43480880">110 comments 167 points</a></li>
<li><a href="https://www.theatlantic.com/politics/archive/2025/03/signal-group-chat-attack-plans-hegseth-goldberg/682176/"><strong>Here are the Attack Plans That Trump's Advisers Shared on Signal</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43481521">50 comments 157 points</a></li>
<li><a href="https://togithub.com/microsoft/playwright-mcp"><strong>Playwright Tools for MCP</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43485740">28 comments 153 points</a></li>
<li><a href="https://www.bostonglobe.com/2025/03/26/metro/tufts-student-video-shows-arrest/"><strong>Tufts student: Video shows masked agents arresting Rumeysa Ozturk</strong> <code>www.bostonglobe.com</code></a> - <a href="https://news.ycombinator.com/item?id=43485577">30 comments 146 points</a></li>
<li><a href="https://rachelbythebay.com/w/2025/03/26/atop/"><strong>Problems with the heap</strong> <code>rachelbythebay.com</code></a> - <a href="https://news.ycombinator.com/item?id=43485980">32 comments 137 points</a></li>
<li><a href="https://martinfowler.com/articles/exploring-gen-ai.html#memo-13"><strong>The role of developer skills in agentic coding</strong> <code>martinfowler.com</code></a> - <a href="https://news.ycombinator.com/item?id=43480964">69 comments 136 points</a></li>
<li><a href="https://everything.intellectronica.net/p/negotiating-with-the-machine"><strong>Gemini 2.5 Pro reasons about task feasibility</strong> <code>everything.intellectronica.net</code></a> - <a href="https://news.ycombinator.com/item?id=43479985">63 comments 135 points</a></li>
<li><a href="https://www.berlin-partner.de/en/news/detail/europas-groesster-makerspace"><strong>Europe's Largest Makerspace</strong> <code>www.berlin-partner.de</code></a> - <a href="https://news.ycombinator.com/item?id=43480396">127 comments 129 points</a></li>
<li><a href="https://apnews.com/article/tufts-student-detained-massachusetts-immigration-6c3978da98a8d0f39ab311e092ffd892"><strong>Masked homeland security abducting foreign graduate student from Tufts</strong> <code>apnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=43487465">18 comments 123 points</a></li>
<li><a href="https://supernuclear.substack.com/p/the-long-awaited-friend-compound"><strong>The long-awaited Friend Compound laws in California</strong> <code>supernuclear.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43482005">154 comments 111 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-26]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/922</link>
<guid>922</guid>
<pubDate>Wed, 26 Mar 2025 06:17:47 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://supernuclear.substack.com/p/stoop-coffee-how-a-simple-idea-transformed"><strong>Stoop Coffee: A simple idea transformed my neighborhood</strong> <code>supernuclear.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43473618">334 comments 1007 points</a></li>
<li><a href="https://blog.google/technology/google-deepmind/gemini-model-thinking-updates-march-2025/"><strong>Gemini 2.5</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=43473489">329 comments 724 points</a></li>
<li><a href="https://openai.com/index/introducing-4o-image-generation/"><strong>4o Image Generation</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=43474112">366 comments 655 points</a></li>
<li><a href="https://toad.social/@grumpybozo/114213600922816869"><strong>Spammers are better at SPF, DKIM, and DMARC than everyone else</strong> <code>toad.social</code></a> - <a href="https://news.ycombinator.com/item?id=43468995">218 comments 393 points</a></li>
<li><a href="https://www.engadget.com/big-tech/samsung-ceo-jong-hee-han-has-died-120029286.html"><strong>Samsung CEO Jong-hee Han has died</strong> <code>www.engadget.com</code></a> - <a href="https://news.ycombinator.com/item?id=43470699">147 comments 249 points</a></li>
<li><a href="https://refactoringenglish.com/tools/hn-popularity/"><strong>The highest-ranking personal blogs of Hacker News</strong> <code>refactoringenglish.com</code></a> - <a href="https://news.ycombinator.com/item?id=43474505">80 comments 237 points</a></li>
<li><a href="https://rachelbythebay.com/w/2025/03/25/atop/"><strong>You might want to stop running atop</strong> <code>rachelbythebay.com</code></a> - <a href="https://news.ycombinator.com/item?id=43477057">101 comments 231 points</a></li>
<li><a href="https://arstechnica.com/ai/2025/03/devs-say-ai-crawlers-dominate-traffic-forcing-blocks-on-entire-countries/"><strong>Devs say AI crawlers dominate traffic, forcing blocks on entire countries</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43476337">152 comments 224 points</a></li>
<li><a href="https://blog.cloudflare.com/open-sourcing-openpubkey-ssh-opkssh-integrating-single-sign-on-with-ssh/"><strong>Open-sourcing OpenPubkey SSH (OPKSSH): integrating single sign-on with SSH</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=43470906">121 comments 200 points</a></li>
<li><a href="https://abcdinamo.com/news/german-bold-italic"><strong>Kylie Minogue song about a typeface</strong> <code>abcdinamo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43473358">62 comments 194 points</a></li>
<li><a href="https://runningshoescore.com/blog/barefoot-running-hysteria-of-2010"><strong>The Great Barefoot Running Hysteria of 2010</strong> <code>runningshoescore.com</code></a> - <a href="https://news.ycombinator.com/item?id=43469690">192 comments 182 points</a></li>
<li><a href="https://electrek.co/2025/03/25/tesla-tsla-deliveries-down-43-in-europe-while-evs-are-up-28/"><strong>Tesla deliveries down 43% in Europe while EVs are up 31%</strong> <code>electrek.co</code></a> - <a href="https://news.ycombinator.com/item?id=43470763">242 comments 176 points</a></li>
<li><a href="https://www.solipsys.co.uk/new/SellYourselfSellYourWork.html?yc25hn"><strong>Sell yourself, sell your work</strong> <code>www.solipsys.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43476249">66 comments 170 points</a></li>
<li><a href="https://togithub.com/facebookresearch/vggt"><strong>VGGT: Visual Geometry Grounded Transformer</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43470651">37 comments 155 points</a></li>
<li><a href="https://www.aizk.sh/posts/reflecting-on-wikitok"><strong>Reflecting on WikiTok</strong> <code>www.aizk.sh</code></a> - <a href="https://news.ycombinator.com/item?id=43468491">44 comments 150 points</a></li>
<li><a href="https://www.socallinuxexpo.org/scale/22x/presentations/closing-keynote-leslie-lamport"><strong>Coding Isn't Programming</strong> <code>www.socallinuxexpo.org</code></a> - <a href="https://news.ycombinator.com/item?id=43469711">190 comments 149 points</a></li>
<li><a href="https://utcc.utoronto.ca/~cks/space/blog/sysadmin/RunMoreExtraNetworkFiber"><strong>If you get the chance, always run more extra network fiber cabling</strong> <code>utcc.utoronto.ca</code></a> - <a href="https://news.ycombinator.com/item?id=43471177">156 comments 146 points</a></li>
<li><a href="https://alexwlchan.net/2025/github-actions-audit/"><strong>Whose code am I running in GitHub Actions?</strong> <code>alexwlchan.net</code></a> - <a href="https://news.ycombinator.com/item?id=43473623">52 comments 146 points</a></li>
<li><a href="https://nibblestew.blogspot.com/2025/03/writing-your-own-c-standard-library.html"><strong>Writing your own C++ standard library from scratch</strong> <code>nibblestew.blogspot.com</code></a> - <a href="https://news.ycombinator.com/item?id=43468976">124 comments 141 points</a></li>
<li><a href="https://prospect.org/power/2025-03-25-bubble-trouble-ai-threat/"><strong>An AI bubble threatens Silicon Valley, and all of us</strong> <code>prospect.org</code></a> - <a href="https://news.ycombinator.com/item?id=43470786">125 comments 137 points</a></li>
<li><a href="https://math.ucr.edu/home/baez/physics/Relativity/SpeedOfLight/c.html"><strong>Why is C the symbol for the speed of light? (2004)</strong> <code>math.ucr.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43472663">100 comments 129 points</a></li>
<li><a href="https://www.nytimes.com/2025/03/25/us/maverick-county-texas-court-system.html"><strong>In Jail Without a Lawyer: How a Texas Town Fails Poor Defendants</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43474593">100 comments 115 points</a></li>
<li><a href="https://www.theverge.com/twitter/634833/x-head-engineering-leaves-elon-musk"><strong>X’s director of engineering, Haofei Wang, has left the company</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=43470613">190 comments 113 points</a></li>
<li><a href="https://www.troyhunt.com/a-sneaky-phish-just-grabbed-my-mailchimp-mailing-list/"><strong>A Sneaky Phish Just Grabbed My Mailchimp Mailing List</strong> <code>www.troyhunt.com</code></a> - <a href="https://news.ycombinator.com/item?id=43468959">71 comments 105 points</a></li>
<li><a href="https://beej.us/guide/bgc/pdf/bgc_a4_c_1.pdf"><strong>Beej's Guide to C Programming [pdf]</strong> <code>beej.us</code></a> - <a href="https://news.ycombinator.com/item?id=43471393">17 comments 103 points</a></li>
<li><a href="https://www.shirleywu.studio/notebook/2025-02-innovation-killer"><strong>What Killed Innovation?</strong> <code>www.shirleywu.studio</code></a> - <a href="https://news.ycombinator.com/item?id=43470971">91 comments 101 points</a></li>
<li><a href="https://theintercept.com/2025/03/25/signal-chat-encryption-hegseth-cia/"><strong>CIA Director Reveals Signal Comes Installed on Agency Computers</strong> <code>theintercept.com</code></a> - <a href="https://news.ycombinator.com/item?id=43478091">69 comments 97 points</a></li>
<li><a href="https://danilafe.com/blog/chapel_x_macros/"><strong>My Favorite C++ Pattern: X Macros (2023)</strong> <code>danilafe.com</code></a> - <a href="https://news.ycombinator.com/item?id=43472143">63 comments 96 points</a></li>
<li><a href="https://medicalxpress.com/news/2025-03-highdose-vitamin-d-significantly-disease.html"><strong>High‑dose Vitamin D reduces disease activity in early multiple sclerosis onset</strong> <code>medicalxpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=43469661">47 comments 86 points</a></li>
<li><a href="https://togithub.com/habedi/hann"><strong>Hann: A Fast Approximate Nearest Neighbor Search Library for Go</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43470162">8 comments 86 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-25]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/921</link>
<guid>921</guid>
<pubDate>Tue, 25 Mar 2025 06:17:59 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.theatlantic.com/politics/archive/2025/03/trump-administration-accidentally-texted-me-its-war-plans/682151/"><strong>The Trump administration accidentally texted me its war plans</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43462783">270 comments 886 points</a></li>
<li><a href="https://togithub.com/chadmed/triforce"><strong>Triforce – a beamformer for Apple Silicon laptops</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43461701">185 comments 487 points</a></li>
<li><a href="https://www.jeffgeerling.com/blog/2025/i-wont-connect-my-dishwasher-your-stupid-cloud"><strong>I won't connect my dishwasher to your cloud</strong> <code>www.jeffgeerling.com</code></a> - <a href="https://news.ycombinator.com/item?id=43463200">315 comments 471 points</a></li>
<li><a href="https://plausible.io/blog/european-alternatives-trends-privacy-tech"><strong>Millions are visiting the European Alternatives site. What trends are we seeing?</strong> <code>plausible.io</code></a> - <a href="https://news.ycombinator.com/item?id=43458509">553 comments 461 points</a></li>
<li><a href="https://qwenlm.github.io/blog/qwen2.5-vl-32b/"><strong>Qwen2.5-VL-32B: Smarter and Lighter</strong> <code>qwenlm.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43464068">206 comments 415 points</a></li>
<li><a href="https://goblin.tools/"><strong>Goblin.tools: simple, single-task tools to help neurodivergent people with tasks</strong> <code>goblin.tools</code></a> - <a href="https://news.ycombinator.com/item?id=43461375">190 comments 304 points</a></li>
<li><a href="https://upcloud.com/blog/european-cloud-global-reach"><strong>European Cloud, Global Reach</strong> <code>upcloud.com</code></a> - <a href="https://news.ycombinator.com/item?id=43458717">157 comments 239 points</a></li>
<li><a href="https://medicalxpress.com/news/2025-03-japanese-scientists-stem-cell-treatment.html"><strong>Japanese scientists use stem cell treatment to restore movement in spinal injury</strong> <code>medicalxpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=43459264">37 comments 233 points</a></li>
<li><a href="https://abstimmung.eu/git/2024"><strong>German parliament votes as a Git contribution graph</strong> <code>abstimmung.eu</code></a> - <a href="https://news.ycombinator.com/item?id=43466509">62 comments 190 points</a></li>
<li><a href="https://blog.marcocantu.com/blog/2025-march-mastering-delphi5-annotated-complete.html"><strong>Mastering Delphi 5 2025 Annotated Edition Is Now Complete</strong> <code>blog.marcocantu.com</code></a> - <a href="https://news.ycombinator.com/item?id=43462299">86 comments 167 points</a></li>
<li><a href="https://arcprize.org/blog/announcing-arc-agi-2-and-arc-prize-2025"><strong>Arc-AGI-2 and ARC Prize 2025</strong> <code>arcprize.org</code></a> - <a href="https://news.ycombinator.com/item?id=43465147">63 comments 145 points</a></li>
<li><a href="https://www.newyorker.com/culture/persons-of-interest/the-game-designer-playing-through-his-own-psyche"><strong>The game designer playing through his own psyche</strong> <code>www.newyorker.com</code></a> - <a href="https://news.ycombinator.com/item?id=43459361">88 comments 137 points</a></li>
<li><a href="https://www.internetarchive.eu/"><strong>Internet Archive Europe – Bringing Collections to Life</strong> <code>www.internetarchive.eu</code></a> - <a href="https://news.ycombinator.com/item?id=43464230">26 comments 130 points</a></li>
<li><a href="https://fox5sandiego.com/news/business/tesla-sales-drop-35-in-san-diego-county/"><strong>Tesla sales drop 35% in San Diego County</strong> <code>fox5sandiego.com</code></a> - <a href="https://news.ycombinator.com/item?id=43458758">130 comments 115 points</a></li>
<li><a href="https://arstechnica.com/gadgets/2025/03/hp-avoids-monetary-damages-over-bricked-printers-in-class-action-settlement/"><strong>HP avoids monetary damages over printers in class-action settlement</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43458759">84 comments 108 points</a></li>
<li><a href="https://togithub.com/hippiiee/osgint"><strong>Osgint – OSINT tool to find information about GitHub user</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43458033">23 comments 107 points</a></li>
<li><a href="https://www.theatlantic.com/newsletters/archive/2025/03/jeffrey-goldberg-group-chat-military-houthi-yemen/682160/"><strong>Jeffrey Goldberg on being added to the group chat by Trump Administration</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43466983">8 comments 106 points</a></li>
<li><a href="https://scholarworks.lib.csusb.edu/cgi/viewcontent.cgi?article=1201&context=history-in-the-making"><strong>Project Operation Whitecoat (2010)</strong> <code>scholarworks.lib.csusb.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43462882">76 comments 101 points</a></li>
<li><a href="https://www.npmjs.com/package/apidog-mcp-server"><strong>Show HN: We made an MCP Server so Cursor can build things from REST API docs</strong> <code>www.npmjs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43459240">69 comments 97 points</a></li>
<li><a href="https://tjmorley.com/blogposts/cottagecoreprogrammers.html"><strong>Cottagecore Programmers</strong> <code>tjmorley.com</code></a> - <a href="https://news.ycombinator.com/item?id=43464914">135 comments 95 points</a></li>
<li><a href="https://www.wsj.com/business/dna-testing-company-23andme-files-for-bankruptcy-announces-ceo-resignation-82ad1c45"><strong>23andMe Files for Bankruptcy, as CEO Anne Wojcicki Resigns</strong> <code>www.wsj.com</code></a> - <a href="https://news.ycombinator.com/item?id=43464054">29 comments 94 points</a></li>
<li><a href="https://visdeurbel.nl/en/"><strong>Did you spot a fish? Press the Fish Doorbell</strong> <code>visdeurbel.nl</code></a> - <a href="https://news.ycombinator.com/item?id=43458409">28 comments 84 points</a></li>
<li><a href="https://www.mattkeeter.com/projects/prospero/"><strong>The Prospero Challenge</strong> <code>www.mattkeeter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43458780">29 comments 77 points</a></li>
<li><a href="https://principlesofcryptography.com/number-theory-primer-an-axiomatic-study-of-natural-numbers-peano-axioms/"><strong>Peano's Axioms</strong> <code>principlesofcryptography.com</code></a> - <a href="https://news.ycombinator.com/item?id=43464541">26 comments 74 points</a></li>
<li><a href="https://seanobannon.substack.com/p/renewable-energy-adoption-and-the"><strong>Deregulated energy markets accelerate solar adoption</strong> <code>seanobannon.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43462593">163 comments 69 points</a></li>
<li><a href="https://www.platformer.news/openai-chatgpt-mental-health-well-being/"><strong>Chatbots could spark the next big mental health crisis</strong> <code>www.platformer.news</code></a> - <a href="https://news.ycombinator.com/item?id=43467681">50 comments 61 points</a></li>
<li><a href="https://www.planet.com/pulse/aircraft-detection-at-planetary-scale/"><strong>Aircraft detection at planetary scale</strong> <code>www.planet.com</code></a> - <a href="https://news.ycombinator.com/item?id=43465189">53 comments 58 points</a></li>
<li><a href="https://groups.google.com/g/kubernetes-security-announce/c/2qa9DFtN0cQ"><strong>Multiple vulnerabilities in ingress-Nginx (Score 9.8)</strong> <code>groups.google.com</code></a> - <a href="https://news.ycombinator.com/item?id=43465424">9 comments 57 points</a></li>
<li><a href="https://togithub.com/thepartly/gatehouse"><strong>Gatehouse – a composable, async-friendly authorization policy framework in Rust</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43466221">26 comments 56 points</a></li>
<li><a href="https://www.quantamagazine.org/three-hundred-years-later-a-tool-from-isaac-newton-gets-an-update-20250324/"><strong>Three Hundred Years Later, a Tool from Isaac Newton Gets an Update</strong> <code>www.quantamagazine.org</code></a> - <a href="https://news.ycombinator.com/item?id=43465971">10 comments 56 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-24]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/920</link>
<guid>920</guid>
<pubDate>Mon, 24 Mar 2025 06:18:33 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://dannorth.net/the-worst-programmer/"><strong>The Worst Programmer I Know (2023)</strong> <code>dannorth.net</code></a> - <a href="https://news.ycombinator.com/item?id=43452649">264 comments 376 points</a></li>
<li><a href="http://drumpatterns.onether.com"><strong>Show HN: I built website for sharing Drum Patterns</strong> <code>drumpatterns.onether.com</code></a> - <a href="https://news.ycombinator.com/item?id=43452629">93 comments 267 points</a></li>
<li><a href="https://www.righto.com/2025/03/mother-of-all-demos-usb-keyset-interface.html"><strong>A USB Interface to the "Mother of All Demos" Keyset</strong> <code>www.righto.com</code></a> - <a href="https://news.ycombinator.com/item?id=43453582">62 comments 233 points</a></li>
<li><a href="https://sel4.systems/About/seL4-whitepaper.pdf"><strong>The SeL4 Microkernel: An Introduction [pdf]</strong> <code>sel4.systems</code></a> - <a href="https://news.ycombinator.com/item?id=43452185">106 comments 202 points</a></li>
<li><a href="https://www.economist.com/science-and-technology/2025/03/17/do-viruses-trigger-alzheimers"><strong>Do viruses trigger Alzheimer's?</strong> <code>www.economist.com</code></a> - <a href="https://news.ycombinator.com/item?id=43451397">135 comments 182 points</a></li>
<li><a href="https://apps.apple.com/us/app/notes-sight-reading-trainer/id874386416"><strong>Show HN: My iOS app to practice sight reading (10 years in the App Store)</strong> <code>apps.apple.com</code></a> - <a href="https://news.ycombinator.com/item?id=43456030">69 comments 182 points</a></li>
<li><a href="https://www.theverge.com/policy/634264/customs-border-protection-search-phone-airport-rights"><strong>Is it safe to travel to the United States with your phone?</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=43452474">151 comments 161 points</a></li>
<li><a href="https://simonschreibt.de/gat/homeworld-2-backgrounds/"><strong>Technicalities of Homeworld 2 Backgrounds</strong> <code>simonschreibt.de</code></a> - <a href="https://news.ycombinator.com/item?id=43452688">45 comments 156 points</a></li>
<li><a href="https://togithub.com/tdewolff/argp"><strong>argp: GNU-style command line argument parser for Go</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43452525">65 comments 153 points</a></li>
<li><a href="https://heyopenspot.com/"><strong>Show HN: LinkedIn sucks, so I built a better one</strong> <code>heyopenspot.com</code></a> - <a href="https://news.ycombinator.com/item?id=43454915">130 comments 143 points</a></li>
<li><a href="https://www.turing.ac.uk/blog/project-aardvark-reimagining-ai-weather-prediction"><strong>Project Aardvark: reimagining AI weather prediction</strong> <code>www.turing.ac.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43456723">45 comments 142 points</a></li>
<li><a href="https://www.reuters.com/business/healthcare-pharmaceuticals/dna-testing-firm-23andme-files-chapter-11-bankruptcy-sell-itself-2025-03-24/"><strong>DNA testing firm 23andMe files for bankruptcy to sell itself</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43457666">71 comments 131 points</a></li>
<li><a href="https://ankitmaloo.com/bitter-lesson/"><strong>Bitter Lesson is about AI agents</strong> <code>ankitmaloo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43451742">73 comments 117 points</a></li>
<li><a href="https://chipsandcheese.com/p/rdna-4s-out-of-order-memory-accesses"><strong>RDNA 4's “Out-of-Order” Memory Accesses</strong> <code>chipsandcheese.com</code></a> - <a href="https://news.ycombinator.com/item?id=43456341">9 comments 117 points</a></li>
<li><a href="https://devblogs.microsoft.com/oldnewthing/20250321-00/?p=110984"><strong>The case of the critical section that let multiple threads enter a block of code</strong> <code>devblogs.microsoft.com</code></a> - <a href="https://news.ycombinator.com/item?id=43451525">82 comments 113 points</a></li>
<li><a href="https://matanabudy.com/achieving-great-privacy-with-safari/"><strong>Achieving Great Privacy with Safari</strong> <code>matanabudy.com</code></a> - <a href="https://news.ycombinator.com/item?id=43453350">53 comments 105 points</a></li>
<li><a href="https://www.nytimes.com/2025/03/23/world/asia/cambodia-money-laundering-huione.html"><strong>How one of the world’s major money laundering networks operates</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=43454411">64 comments 95 points</a></li>
<li><a href="https://www.theatlantic.com/magazine/archive/2025/05/trump-executive-order-lawlessness-constitutional-crisis/682112/"><strong>America Is Watching the Rise of a Dual State</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43454004">35 comments 95 points</a></li>
<li><a href="https://www.orgelstadt-hamburg.de/play-arp/"><strong>Play the Virtual Organ from Arp Schnitger</strong> <code>www.orgelstadt-hamburg.de</code></a> - <a href="https://news.ycombinator.com/item?id=43454785">14 comments 92 points</a></li>
<li><a href="https://zhero-web-sec.github.io/research-and-things/nextjs-and-the-corrupt-middleware"><strong>Next.js and the corrupt middleware: the authorizing artifact</strong> <code>zhero-web-sec.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43451485">34 comments 88 points</a></li>
<li><a href="https://www.cnn.com/2025/03/23/europe/germany-military-investment-intl/index.html"><strong>Germany is unlocking billions to supercharge its military at a seismic moment</strong> <code>www.cnn.com</code></a> - <a href="https://news.ycombinator.com/item?id=43454383">186 comments 82 points</a></li>
<li><a href="https://togithub.com/attilatorda/Shift-To-Middle_Array"><strong>Shift-to-Middle Array: A Faster Alternative to Std:Deque?</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43456669">54 comments 77 points</a></li>
<li><a href="https://mo8it.com/blog/quadlet/"><strong>Quadlet: Running Podman containers under systemd</strong> <code>mo8it.com</code></a> - <a href="https://news.ycombinator.com/item?id=43456934">18 comments 72 points</a></li>
<li><a href="https://www.scotthyoung.com/blog/2025/03/18/8-books-on-making-friends/"><strong>Books on Making and Maintaining Friendships</strong> <code>www.scotthyoung.com</code></a> - <a href="https://news.ycombinator.com/item?id=43454898">34 comments 71 points</a></li>
<li><a href="https://biblioracle.substack.com/p/chatgpt-cant-kill-anything-worth"><strong>ChatGPT can't kill anything worth preserving</strong> <code>biblioracle.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43451166">74 comments 65 points</a></li>
<li><a href="https://annievella.com/posts/the-software-engineering-identity-crisis/"><strong>The Software Engineering Identity Crisis</strong> <code>annievella.com</code></a> - <a href="https://news.ycombinator.com/item?id=43454816">46 comments 65 points</a></li>
<li><a href="https://www.asimov.press/p/miracle-bacterium"><strong>A Brief History of the Miracle Bacterium</strong> <code>www.asimov.press</code></a> - <a href="https://news.ycombinator.com/item?id=43453769">5 comments 58 points</a></li>
<li><a href="https://chinesecookingdemystified.substack.com/p/63-chinese-cuisines-the-complete"><strong>63 Chinese Cuisines: The Complete Guide (2024)</strong> <code>chinesecookingdemystified.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43457180">11 comments 55 points</a></li>
<li><a href="https://techcrunch.com/2025/03/11/ibms-ceo-doesnt-think-ai-will-replace-programmers-anytime-soon/"><strong>IBM's CEO doesn't think AI will replace programmers anytime soon</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=43452421">74 comments 54 points</a></li>
<li><a href="https://writer.oliphant.social/oliphant/a-canadians-perspective-on-us-behavior-since-the-trump-regime-was-installed"><strong>A Canadian's Perspective on US Behavior Since the Trump Regime Was Installed</strong> <code>writer.oliphant.social</code></a> - <a href="https://news.ycombinator.com/item?id=43452174">25 comments 54 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-23]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/919</link>
<guid>919</guid>
<pubDate>Sun, 23 Mar 2025 06:15:54 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://oag.ca.gov/news/press-releases/attorney-general-bonta-urgently-issues-consumer-alert-23andme-customers"><strong>California Attorney General issues consumer alert for 23andMe customers</strong> <code>oag.ca.gov</code></a> - <a href="https://news.ycombinator.com/item?id=43447421">244 comments 354 points</a></li>
<li><a href="https://blog.ezyang.com/2019/05/pytorch-internals/"><strong>PyTorch Internals: Ezyang's Blog</strong> <code>blog.ezyang.com</code></a> - <a href="https://news.ycombinator.com/item?id=43445931">21 comments 300 points</a></li>
<li><a href="https://togithub.com/Zouuup/landrun"><strong>Landrun: Sandbox any Linux process using Landlock, no root or containers</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43445662">99 comments 296 points</a></li>
<li><a href="https://luj.fr/blog/how-nixos-could-have-detected-xz.html"><strong>NixOS and reproducible builds could have detected the xz backdoor</strong> <code>luj.fr</code></a> - <a href="https://news.ycombinator.com/item?id=43448075">79 comments 227 points</a></li>
<li><a href="https://blog.mozilla.ai/map-features-in-openstreetmap-with-computer-vision/"><strong>Map Features in OpenStreetMap with Computer Vision</strong> <code>blog.mozilla.ai</code></a> - <a href="https://news.ycombinator.com/item?id=43447335">46 comments 210 points</a></li>
<li><a href="https://www.climate.gov/news-features/blogs/polar-vortex/polar-vortex-hitting-brakes"><strong>The polar vortex is hitting the brakes</strong> <code>www.climate.gov</code></a> - <a href="https://news.ycombinator.com/item?id=43448023">186 comments 199 points</a></li>
<li><a href="https://cendyne.dev/posts/2025-03-19-vibe-coding-vs-reality.html"><strong>“Vibe Coding” vs. Reality</strong> <code>cendyne.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43448432">233 comments 188 points</a></li>
<li><a href="https://llm.hunyuan.tencent.com/#/blog/hy-t1?lang=en"><strong>Tencent's 'Hunyuan-T1'–The First Mamba-Powered Ultra-Large Model</strong> <code>llm.hunyuan.tencent.com</code></a> - <a href="https://news.ycombinator.com/item?id=43447254">88 comments 179 points</a></li>
<li><a href="https://arstechnica.com/gadgets/2025/03/ceo-of-ai-ad-tech-firm-pledging-world-free-of-fraud-sentenced-for-fraud/"><strong>CEO of Kubient sentenced for fraud</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43448606">48 comments 156 points</a></li>
<li><a href="https://www.washingtonpost.com/technology/2025/03/21/amazon-product-safety-regulators-trump/"><strong>Amazon wants a product safety regulator declared unconstitutional</strong> <code>www.washingtonpost.com</code></a> - <a href="https://news.ycombinator.com/item?id=43446103">105 comments 149 points</a></li>
<li><a href="https://arstechnica.com/gadgets/2025/03/italian-court-orders-google-to-block-iptv-pirate-sites-at-dns-level/"><strong>Italy demands Google poison DNS under strict Piracy Shield law</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=43448112">103 comments 148 points</a></li>
<li><a href="https://tinyhack.com/2022/09/16/when-you-deleted-lib-on-linux-while-still-connected-via-ssh/"><strong>When you deleted /lib on Linux while still connected via SSH (2022)</strong> <code>tinyhack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43444160">80 comments 137 points</a></li>
<li><a href="https://nextjs.org/blog/cve-2025-29927"><strong>Next.js version 15.2.3 has been released to address a security vulnerability</strong> <code>nextjs.org</code></a> - <a href="https://news.ycombinator.com/item?id=43448723">107 comments 134 points</a></li>
<li><a href="https://www.bbc.co.uk/news/articles/c1en1yjv4dpo"><strong>Facebook to stop targeting ads at UK woman after legal fight</strong> <code>www.bbc.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43446821">98 comments 128 points</a></li>
<li><a href="https://math.franklin.uga.edu/sites/default/files/users/user317/ShifrinDiffGeo.pdf"><strong>Differential Geometry: A First Course in Curves and Surfaces [pdf]</strong> <code>math.franklin.uga.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43445614">6 comments 128 points</a></li>
<li><a href="https://togithub.com/mr-fatalyst/fastopenapi"><strong>Show HN: FastOpenAPI – automated docs for many Python frameworks</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43445720">56 comments 116 points</a></li>
<li><a href="https://togithub.com/sail-sg/understand-r1-zero"><strong>Understanding R1-Zero-Like Training: A Critical Perspective</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43445894">13 comments 108 points</a></li>
<li><a href="https://www.youtube.com/watch?v=xJzrU38pGWc"><strong>Paul A. M. Dirac, Interview by Friedrich Hund (1982) [video]</strong> <code>www.youtube.com</code></a> - <a href="https://news.ycombinator.com/item?id=43446442">20 comments 94 points</a></li>
<li><a href="https://www.ma.imperial.ac.uk/~dturaev/Mathematical_Methods2021.pdf"><strong>Mathematical Methods for Physics [pdf]</strong> <code>www.ma.imperial.ac.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43448193">36 comments 91 points</a></li>
<li><a href="https://epoch.ai/gradient-updates/most-ai-value-will-come-from-broad-automation-not-from-r-d"><strong>Most AI value will come from broad automation, not from R&D</strong> <code>epoch.ai</code></a> - <a href="https://news.ycombinator.com/item?id=43447616">105 comments 88 points</a></li>
<li><a href="https://www.npmjs.com/package/@hyperdrive-eng/mcp-nodejs-debugger"><strong>Show HN: We made an MCP server so Cursor can debug Node.js on its own</strong> <code>www.npmjs.com</code></a> - <a href="https://news.ycombinator.com/item?id=43446659">30 comments 83 points</a></li>
<li><a href="https://electrek.co/2025/03/21/elon-tells-tesla-employees-not-to-sell-tsla-stocks-board-execs-are-dumping/"><strong>Elon tells Tesla employees not to sell TSLA stock as board and execs are dumping</strong> <code>electrek.co</code></a> - <a href="https://news.ycombinator.com/item?id=43445557">28 comments 81 points</a></li>
<li><a href="https://www.theatlantic.com/technology/archive/2025/03/libgen-meta-openai/682093/"><strong>Meta pirated books to train its AI</strong> <code>www.theatlantic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43445616">71 comments 79 points</a></li>
<li><a href="https://togithub.com/gco/xee/blob/4fa3a6d609dd72b8493e52a68f316f7a02903276/XeePhotoshopLoader.m"><strong>I'd like to take a moment to speak to you about the Adobe PSD format (2009)</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43444558">22 comments 78 points</a></li>
<li><a href="https://www.marginalia.nu/log/a_115_rude_crawler/"><strong>Improved ways to operate a rude crawler</strong> <code>www.marginalia.nu</code></a> - <a href="https://news.ycombinator.com/item?id=43445682">12 comments 72 points</a></li>
<li><a href="https://halobates.de/blog/p/446"><strong>Quitting an Intel x86 Hypervisor</strong> <code>halobates.de</code></a> - <a href="https://news.ycombinator.com/item?id=43448457">3 comments 59 points</a></li>
<li><a href="https://newrepublic.com/post/193015/elon-musk-doge-library-musem-imls"><strong>Elon Musk's Doge Moves to Gut Local Libraries While No One Is Looking</strong> <code>newrepublic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43445571">10 comments 57 points</a></li>
<li><a href="https://www.datagubbe.se/braket/"><strong>Bra and KET: String Interpolation in AmigaDOS</strong> <code>www.datagubbe.se</code></a> - <a href="https://news.ycombinator.com/item?id=43447126">1 comments 57 points</a></li>
<li><a href="https://interestingengineering.com/energy/france-worlds-largest-hydrogen-deposit"><strong>France hits hydrogen jackpot: largest reserve valued $92B found</strong> <code>interestingengineering.com</code></a> - <a href="https://news.ycombinator.com/item?id=43445454">5 comments 55 points</a></li>
<li><a href="https://www.tomshardware.com/tech-industry/artificial-intelligence/amd-launches-gaia-open-source-project-for-running-llms-locally-on-any-pc"><strong>AMD launches Gaia open source project for running LLMs locally on any PC</strong> <code>www.tomshardware.com</code></a> - <a href="https://news.ycombinator.com/item?id=43444091">18 comments 51 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-22]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/918</link>
<guid>918</guid>
<pubDate>Sat, 22 Mar 2025 06:15:51 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.eff.org/deeplinks/2025/03/win-encryption-france-rejects-backdoor-mandate"><strong>France rejects backdoor mandate</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=43440513">134 comments 541 points</a></li>
<li><a href="https://kellblog.com/2015/03/08/career-development-what-it-really-means-to-be-a-manager-director-or-vp/"><strong>Career Development: What It Means to Be a Manager, Director, or VP (2015)</strong> <code>kellblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=43434093">209 comments 434 points</a></li>
<li><a href="https://togithub.com/Devolutions/IronRDP"><strong>IronRDP: a Rust implementation of Microsoft's RDP protocol</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43436894">187 comments 404 points</a></li>
<li><a href="https://calibre-ebook.com/whats-new"><strong>Calibre 8.0</strong> <code>calibre-ebook.com</code></a> - <a href="https://news.ycombinator.com/item?id=43432890">137 comments 277 points</a></li>
<li><a href="https://arxiv.org/abs/2206.13446"><strong>Pen and Paper Exercises in Machine Learning (2022)</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=43440267">32 comments 275 points</a></li>
<li><a href="https://littleosbook.github.io/"><strong>The little book about OS development</strong> <code>littleosbook.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43440473">28 comments 269 points</a></li>
<li><a href="https://reason.com/2025/03/20/the-fbi-seized-this-womans-life-savings-without-telling-her-why/"><strong>The FBI Seized This Woman's Life Savings–Without Telling Her Why</strong> <code>reason.com</code></a> - <a href="https://news.ycombinator.com/item?id=43433694">110 comments 239 points</a></li>
<li><a href="https://www.eff.org/deeplinks/2025/03/new-uspto-memo-makes-fighting-patent-trolls-even-harder"><strong>New USPTO Memo Makes Fighting Patent Trolls Even Harder</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=43439610">84 comments 238 points</a></li>
<li><a href="https://tobloef.com/blog/wheel-reinventors-principles/"><strong>Wheel Reinventor’s Principles (2024)</strong> <code>tobloef.com</code></a> - <a href="https://news.ycombinator.com/item?id=43434730">97 comments 197 points</a></li>
<li><a href="https://variety.com/2025/tv/news/george-foreman-boxer-infomercial-star-dies-1236345523/"><strong>George Foreman has died</strong> <code>variety.com</code></a> - <a href="https://news.ycombinator.com/item?id=43442917">65 comments 185 points</a></li>
<li><a href="https://www.notetimeapp.com"><strong>Notetime: Minimalistic notes where everything is timestamped</strong> <code>www.notetimeapp.com</code></a> - <a href="https://news.ycombinator.com/item?id=43434152">116 comments 179 points</a></li>
<li><a href="https://www.euronews.com/my-europe/2025/03/19/germany-tightens-travel-advice-to-us-after-three-citizens-detained"><strong>Germany tightens travel advice to US after three citizens detained</strong> <code>www.euronews.com</code></a> - <a href="https://news.ycombinator.com/item?id=43433071">163 comments 176 points</a></li>
<li><a href="https://www.oncontracts.com/monster-cables-picked-the-wrong-guy-to-threaten/"><strong>Monster Cables picked the wrong guy to threaten (2008)</strong> <code>www.oncontracts.com</code></a> - <a href="https://news.ycombinator.com/item?id=43442178">66 comments 170 points</a></li>
<li><a href="https://bettercities.substack.com/p/congestion-pricing-is-a-policy-miracle"><strong>Congestion Pricing Is a Policy Miracle</strong> <code>bettercities.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43436315">304 comments 165 points</a></li>
<li><a href="https://old.reddit.com/r/webdev/comments/1jged6g/imagine_telling_2010_devs_that_in_2025_collapsing/"><strong>Imagine telling 2010 devs that in 2025, collapsing a div would require $8/ month</strong> <code>old.reddit.com</code></a> - <a href="https://news.ycombinator.com/item?id=43434466">138 comments 160 points</a></li>
<li><a href="https://victorpoughon.github.io/torchlensmaker/"><strong>Show HN: Torch Lens Maker – Differentiable Geometric Optics in PyTorch</strong> <code>victorpoughon.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43435438">38 comments 152 points</a></li>
<li><a href="https://togithub.com/soloterm/screen"><strong>Show HN: A terminal emulator in pure PHP</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43438797">65 comments 139 points</a></li>
<li><a href="https://umich-curly.github.io/DHAL/"><strong>Legged Locomotion Meets Skateboarding</strong> <code>umich-curly.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43434910">30 comments 121 points</a></li>
<li><a href="https://raphlinus.github.io/gpu/2025/03/21/good-parallel-computer.html"><strong>I want a good parallel computer</strong> <code>raphlinus.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43440174">100 comments 119 points</a></li>
<li><a href="https://www.bigscreenvr.com/"><strong>Bigscreen Beyond 2</strong> <code>www.bigscreenvr.com</code></a> - <a href="https://news.ycombinator.com/item?id=43438206">112 comments 114 points</a></li>
<li><a href="https://www.eff.org/document/eff-border-search-pocket-guide"><strong>EFF Border Search Pocket Guide</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=43441895">28 comments 105 points</a></li>
<li><a href="https://blog.codinghorror.com/the-road-not-taken-is-guaranteed-minimum-income/"><strong>The Road Not Taken Is Guaranteed Minimum Income</strong> <code>blog.codinghorror.com</code></a> - <a href="https://news.ycombinator.com/item?id=43436454">190 comments 102 points</a></li>
<li><a href="https://newatlas.com/ai-humanoids/boston-dynamics-atlas-athletic/"><strong>Boston Dynamics shows off another major leap in humanoid mobility</strong> <code>newatlas.com</code></a> - <a href="https://news.ycombinator.com/item?id=43434040">75 comments 101 points</a></li>
<li><a href="https://aicode.danvoronov.com/tools/"><strong>Show HN: My Attempt to Organize the World of AI Dev Tools</strong> <code>aicode.danvoronov.com</code></a> - <a href="https://news.ycombinator.com/item?id=43434325">29 comments 97 points</a></li>
<li><a href="https://www.historytoday.com/archive/review/celts-modern-history-ian-stewart-review"><strong>‘The Celts: A Modern History’ by Ian Stewart Review</strong> <code>www.historytoday.com</code></a> - <a href="https://news.ycombinator.com/item?id=43432291">31 comments 94 points</a></li>
<li><a href="https://mathup.xyz/"><strong>Mathup: Easy MathML authoring tool with a quick to write syntax</strong> <code>mathup.xyz</code></a> - <a href="https://news.ycombinator.com/item?id=43438192">22 comments 94 points</a></li>
<li><a href="https://www.cs.utexas.edu/~EWD/transcriptions/EWD08xx/EWD831.html"><strong>Numbering should start at zero (1982)</strong> <code>www.cs.utexas.edu</code></a> - <a href="https://news.ycombinator.com/item?id=43433599">260 comments 93 points</a></li>
<li><a href="https://www.fastmail.com/blog/not-ok-cupid/"><strong>Not OK Cupid – A story of poor email address validation</strong> <code>www.fastmail.com</code></a> - <a href="https://news.ycombinator.com/item?id=43441961">80 comments 91 points</a></li>
<li><a href="https://www.daemonology.net/blog/chunking-attacks.pdf"><strong>Chunking Attacks on File Backup Services Using Content-Defined Chunking [pdf]</strong> <code>www.daemonology.net</code></a> - <a href="https://news.ycombinator.com/item?id=43438601">19 comments 88 points</a></li>
<li><a href="https://frinklang.org/"><strong>Frink</strong> <code>frinklang.org</code></a> - <a href="https://news.ycombinator.com/item?id=43440046">13 comments 85 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-21]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/917</link>
<guid>917</guid>
<pubDate>Fri, 21 Mar 2025 06:19:03 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://thelibre.news/foss-infrastructure-is-under-attack-by-ai-companies/"><strong>FOSS infrastructure is under attack by AI companies</strong> <code>thelibre.news</code></a> - <a href="https://news.ycombinator.com/item?id=43422413">569 comments 901 points</a></li>
<li><a href="https://www.anthropic.com/news/web-search"><strong>Claude can now search the web</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=43425655">464 comments 871 points</a></li>
<li><a href="https://unionize.fyi"><strong>The Burnout Machine</strong> <code>unionize.fyi</code></a> - <a href="https://news.ycombinator.com/item?id=43427002">419 comments 533 points</a></li>
<li><a href="https://polotek.net/posts/the-frontend-treadmill/"><strong>The Frontend Treadmill</strong> <code>polotek.net</code></a> - <a href="https://news.ycombinator.com/item?id=43422162">503 comments 499 points</a></li>
<li><a href="https://www.openai.fm/"><strong>OpenAI Audio Models</strong> <code>www.openai.fm</code></a> - <a href="https://news.ycombinator.com/item?id=43426022">236 comments 482 points</a></li>
<li><a href="https://www.theregister.com/2025/03/19/dutch_parliament_us_tech/"><strong>Dutch Parliament: Time to ditch US tech for homegrown options</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=43421902">269 comments 321 points</a></li>
<li><a href="https://wts.dev/posts/password-leak/"><strong>Leaking Passwords and more on macOS</strong> <code>wts.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43425605">55 comments 299 points</a></li>
<li><a href="https://blogs.windows.com/msedgedev/2025/03/19/minding-the-gaps-a-new-way-to-draw-separators-in-css/"><strong>Minding the gaps: A new way to draw separators in CSS</strong> <code>blogs.windows.com</code></a> - <a href="https://news.ycombinator.com/item?id=43420683">92 comments 262 points</a></li>
<li><a href="https://fastcall.dev/posts/genai-genesis-firebase/"><strong>How I accepted myself into Canada's largest AI hackathon</strong> <code>fastcall.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43420152">89 comments 255 points</a></li>
<li><a href="https://oeis.org/A068994"><strong>Powers of 2 with all even digits</strong> <code>oeis.org</code></a> - <a href="https://news.ycombinator.com/item?id=43421934">106 comments 235 points</a></li>
<li><a href="https://www.construction-physics.com/p/understanding-solar-energy"><strong>Understanding Solar Energy</strong> <code>www.construction-physics.com</code></a> - <a href="https://news.ycombinator.com/item?id=43422033">129 comments 197 points</a></li>
<li><a href="https://www.eso.org/public/news/eso2507/"><strong>Oxygen discovered in most distant known galaxy</strong> <code>www.eso.org</code></a> - <a href="https://news.ycombinator.com/item?id=43422909">148 comments 193 points</a></li>
<li><a href="https://acarsdrama.com/"><strong>ACARS Drama</strong> <code>acarsdrama.com</code></a> - <a href="https://news.ycombinator.com/item?id=43424065">85 comments 184 points</a></li>
<li><a href="https://mexicocitywater.longlead.com"><strong>The Last Drops of Mexico City</strong> <code>mexicocitywater.longlead.com</code></a> - <a href="https://news.ycombinator.com/item?id=43423032">181 comments 175 points</a></li>
<li><a href="https://www.bbc.co.uk/news/articles/cly67j35y99o"><strong>Tourist in US chained 'like Hannibal Lecter'</strong> <code>www.bbc.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=43422551">154 comments 172 points</a></li>
<li><a href="https://boycott-ietf127.org/"><strong>Boycott IETF 127</strong> <code>boycott-ietf127.org</code></a> - <a href="https://news.ycombinator.com/item?id=43431780">25 comments 170 points</a></li>
<li><a href="https://togithub.com/smparsons/retroboy"><strong>Retro Boy: simple Game Boy emulator written in Rust, can be played on the web</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43429417">43 comments 169 points</a></li>
<li><a href="https://washingtonstatestandard.com/2025/03/17/british-columbia-introduces-toll-measure-to-counter-tariffs/"><strong>Canada considering charging for road access from USA to Alaska</strong> <code>washingtonstatestandard.com</code></a> - <a href="https://news.ycombinator.com/item?id=43425464">298 comments 161 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43422350"><strong>Ask HN: Are you afraid to travel to US to tech conferences?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43422350">188 comments 147 points</a></li>
<li><a href="https://www.reuters.com/world/french-scientist-denied-entry-into-us-french-government-says-2025-03-20/"><strong>French scientist denied entry into the U.S., French government says</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43425841">101 comments 147 points</a></li>
<li><a href="https://www.axios.com/2025/03/20/tesla-musk-lutnick"><strong>Tesla falls after Commerce secretary recommends buying stock</strong> <code>www.axios.com</code></a> - <a href="https://news.ycombinator.com/item?id=43423201">127 comments 135 points</a></li>
<li><a href="https://www.cnn.com/2025/03/20/business/tesla-cybertruck-recall/index.html"><strong>Tesla to recall more than 46,000 Cybertrucks due to exterior panel issue</strong> <code>www.cnn.com</code></a> - <a href="https://news.ycombinator.com/item?id=43422396">92 comments 127 points</a></li>
<li><a href="https://www.theverge.com/ai-artificial-intelligence/627968/google-gemma-3-open-ai-model"><strong>Google calls Gemma 3 the most powerful AI model you can run on one GPU</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=43427115">86 comments 114 points</a></li>
<li><a href="https://sethmlarson.dev/i-fear-for-the-unauthenticated-web"><strong>I fear for the unauthenticated web</strong> <code>sethmlarson.dev</code></a> - <a href="https://news.ycombinator.com/item?id=43424340">110 comments 113 points</a></li>
<li><a href="https://techcrunch.com/2025/03/19/eu-sends-apple-first-dma-interoperability-instructions-for-apps-and-connected-devices/"><strong>EU sends Apple first DMA interoperability instructions for apps and devices</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=43421740">138 comments 109 points</a></li>
<li><a href="https://togithub.com/tonypan2/minesweeper-mcp-server"><strong>Show HN: I built a MCP server so Claude can play Minesweeper</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43420678">32 comments 106 points</a></li>
<li><a href="https://techcrunch.com/2025/03/19/chatgpt-hit-with-privacy-complaint-over-defamatory-hallucinations/"><strong>ChatGPT hit with privacy complaint over defamatory hallucinations</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=43425561">117 comments 100 points</a></li>
<li><a href="https://www.galois.com/articles/introducing-grease"><strong>Grease: An Open-Source Tool for Uncovering Hidden Vulnerabilities in Binary Code</strong> <code>www.galois.com</code></a> - <a href="https://news.ycombinator.com/item?id=43423523">10 comments 95 points</a></li>
<li><a href="https://xxtomcooperxx.substack.com/p/the-f-35-as-a-subscription-service"><strong>The F-35 as a Subscription Service</strong> <code>xxtomcooperxx.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43426468">132 comments 90 points</a></li>
<li><a href="https://apnews.com/article/greenpeace-dakota-access-pipeline-lawsuit-verdict-5036944c1d2e7d3d7b704437e8110fbb"><strong>Greenpeace must pay over $660M in case over Dakota Access protest activities</strong> <code>apnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=43422556">69 comments 89 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-20]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/916</link>
<guid>916</guid>
<pubDate>Thu, 20 Mar 2025 06:17:42 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.theguardian.com/us-news/2025/mar/19/canadian-detained-us-immigration-jasmine-mooney"><strong>I'm the Canadian who was detained by ICE for two weeks</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43410548">710 comments 839 points</a></li>
<li><a href="https://togithub.com/sharkdp/fd"><strong>fd: A simple, fast and user-friendly alternative to 'find'</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43410692">253 comments 599 points</a></li>
<li><a href="https://joe-antognini.github.io/astronomy/daylight"><strong>How fast the days are getting longer (2023)</strong> <code>joe-antognini.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43413935">164 comments 481 points</a></li>
<li><a href="https://kasurian.com/p/research-as-leisure"><strong>The Lost Art of Research as Leisure</strong> <code>kasurian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43410061">249 comments 463 points</a></li>
<li><a href="https://www.spacex.com/launches/mission/?missionId=crew-9-return"><strong>Crew-9 Returns to Earth</strong> <code>www.spacex.com</code></a> - <a href="https://news.ycombinator.com/item?id=43408540">596 comments 430 points</a></li>
<li><a href="https://ezyang.github.io/ai-blindspots/"><strong>AI Blindspots – Blindspots in LLMs I've noticed while AI coding</strong> <code>ezyang.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43414393">151 comments 379 points</a></li>
<li><a href="https://www.engadget.com/big-tech/video-game-workers-in-north-america-now-have-an-industry-wide-union-130024730.html"><strong>Video game workers in North America now have an industry-wide union</strong> <code>www.engadget.com</code></a> - <a href="https://news.ycombinator.com/item?id=43411934">137 comments 356 points</a></li>
<li><a href="https://developer.chrome.com/blog/memory-safety-fonts"><strong>Memory safety for web fonts</strong> <code>developer.chrome.com</code></a> - <a href="https://news.ycombinator.com/item?id=43413125">188 comments 280 points</a></li>
<li><a href="https://archaeology.org/issues/march-april-2025/letters-from/on-the-origin-of-the-pork-taboo/"><strong>The Origin of the Pork Taboo</strong> <code>archaeology.org</code></a> - <a href="https://news.ycombinator.com/item?id=43410885">260 comments 250 points</a></li>
<li><a href="https://konvajs.org/"><strong>Konva.js - Declarative 2D Canvas for React, Vue, and Svelte</strong> <code>konvajs.org</code></a> - <a href="https://news.ycombinator.com/item?id=43410988">65 comments 228 points</a></li>
<li><a href="https://mastersplinter.work/research/passkey/"><strong>CVE-2024-9956 – PassKey Account Takeover in All Mobile Browsers</strong> <code>mastersplinter.work</code></a> - <a href="https://news.ycombinator.com/item?id=43408674">99 comments 202 points</a></li>
<li><a href="https://www.fourmilab.ch/documents/netslum/"><strong>The Internet Slum: is abandoning the Internet the next big thing? (2004)</strong> <code>www.fourmilab.ch</code></a> - <a href="https://news.ycombinator.com/item?id=43409028">211 comments 172 points</a></li>
<li><a href="https://www.nber.org/papers/w33576"><strong>Supply constraints do not explain house price, quantity growth across US cities</strong> <code>www.nber.org</code></a> - <a href="https://news.ycombinator.com/item?id=43411258">260 comments 167 points</a></li>
<li><a href="https://unsloth.ai/blog/gemma3"><strong>Fine-tune Google's Gemma 3</strong> <code>unsloth.ai</code></a> - <a href="https://news.ycombinator.com/item?id=43414235">61 comments 166 points</a></li>
<li><a href="https://szymanowiczs.github.io/bolt3d"><strong>Bolt3D: Generating 3D Scenes in Seconds</strong> <code>szymanowiczs.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=43417932">20 comments 147 points</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2025-03-18/apple-loses-top-court-fight-against-german-antitrust-crackdown"><strong>Apple Loses Top Court Fight Over German Antitrust Crackdown</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=43410247">42 comments 135 points</a></li>
<li><a href="https://zacharyhuang.substack.com/p/llm-agent-internal-as-a-graph-tutorial"><strong>LLM Agents Are Simply Graph – Tutorial for Dummies</strong> <code>zacharyhuang.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43417511">48 comments 132 points</a></li>
<li><a href="https://www.esa.int/Science_Exploration/Human_and_Robotic_Exploration/Pierogi_in_space"><strong>Pierogi in Space</strong> <code>www.esa.int</code></a> - <a href="https://news.ycombinator.com/item?id=43416302">38 comments 129 points</a></li>
<li><a href="https://restofworld.org/2025/tesla-loses-ground-chinese-ev-dominate-global-markets/"><strong>Tesla loses ground as Chinese EVs dominate global markets</strong> <code>restofworld.org</code></a> - <a href="https://news.ycombinator.com/item?id=43410579">130 comments 122 points</a></li>
<li><a href="https://fauna.com/blog/the-future-of-fauna"><strong>Fauna Service Winding Down</strong> <code>fauna.com</code></a> - <a href="https://news.ycombinator.com/item?id=43414742">83 comments 117 points</a></li>
<li><a href="https://www.feldera.com/blog/the-pain-that-is-github-actions"><strong>The Pain That Is GitHub Actions</strong> <code>www.feldera.com</code></a> - <a href="https://news.ycombinator.com/item?id=43419701">63 comments 104 points</a></li>
<li><a href="https://platform.openai.com/docs/models/o1-pro"><strong>OpenAI's o1-pro now available via API</strong> <code>platform.openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=43417885">105 comments 103 points</a></li>
<li><a href="https://www.theguardian.com/technology/2025/mar/19/google-pay-settle-claims-favoured-white-asian-employees"><strong>Google to pay $28M to settle claims it favoured white and Asian employees</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43413333">132 comments 101 points</a></li>
<li><a href="https://marimo.io/blog/python-not-json"><strong>Notebooks as reusable Python programs</strong> <code>marimo.io</code></a> - <a href="https://news.ycombinator.com/item?id=43415477">51 comments 100 points</a></li>
<li><a href="https://nuage.quimerch.com/-/ewen/articles/chrome-disabling-ublock-origin-is-a-serious-security-threat"><strong>Chrome disabling uBlock Origin is a serious security threat</strong> <code>nuage.quimerch.com</code></a> - <a href="https://news.ycombinator.com/item?id=43409838">81 comments 96 points</a></li>
<li><a href="https://www.science.org/content/blog-post/continuing-crisis-part-ix-inside-nih-now"><strong>The Continuing Crisis, Part IX: Inside the NIH Now</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=43418192">102 comments 95 points</a></li>
<li><a href="https://twitter.com/ArtemR/status/1902446906640605657"><strong>Stripe adds yet another additional $15 dispute fee, unless you use their AI</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=43416525">26 comments 95 points</a></li>
<li><a href="https://www.reuters.com/technology/apple-ordered-by-eu-antitrust-regulators-open-up-rivals-2025-03-19/"><strong>Apple ordered by EU antitrust regulators to open up to rivals</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43416451">121 comments 93 points</a></li>
<li><a href="https://togithub.com/ikemen-engine/Ikemen-GO"><strong>Ikemen-GO: open-source reimplementation of MUGEN</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43411755">13 comments 93 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43414405"><strong>Launch HN: Modernbanc (YC W20) – Modern and fast accounting software</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43414405">86 comments 92 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-19]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/915</link>
<guid>915</guid>
<pubDate>Wed, 19 Mar 2025 06:17:59 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://ericmigi.com/blog/apple-restricts-pebble-from-being-awesome-with-iphones/"><strong>Apple restricts Pebble from being awesome with iPhones</strong> <code>ericmigi.com</code></a> - <a href="https://news.ycombinator.com/item?id=43401245">805 comments 1320 points</a></li>
<li><a href="https://ericmigi.com/blog/introducing-two-new-pebbleos-watches/"><strong>Two new PebbleOS watches</strong> <code>ericmigi.com</code></a> - <a href="https://news.ycombinator.com/item?id=43400989">386 comments 1217 points</a></li>
<li><a href="https://ericdraken.com/pfsense-decrypt-ad-traffic/"><strong>Block YouTube ads on AppleTV by decrypting and stripping ads from Profobuf (2022)</strong> <code>ericdraken.com</code></a> - <a href="https://news.ycombinator.com/item?id=43396735">404 comments 671 points</a></li>
<li><a href="https://martijnhols.nl/blog/moving-away-from-us-cloud-services"><strong>Moving away from US cloud services</strong> <code>martijnhols.nl</code></a> - <a href="https://news.ycombinator.com/item?id=43396795">355 comments 556 points</a></li>
<li><a href="https://www.reuters.com/world/us/us-appeals-court-rejects-copyrights-ai-generated-art-lacking-human-creator-2025-03-18/"><strong>US appeals court rules AI generated art cannot be copyrighted</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43402790">364 comments 536 points</a></li>
<li><a href="https://www.reuters.com/technology/cybersecurity/google-agrees-buy-cybersecurity-startup-wiz-32-bln-ft-reports-2025-03-18/"><strong>Google to buy Wiz for $32B</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43398518">647 comments 450 points</a></li>
<li><a href="https://www.theregister.com/2025/03/17/amazon_kills_on_device_alexa/"><strong>Amazon to kill off local Alexa processing, all voice requests shipped to cloud</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=43402115">116 comments 434 points</a></li>
<li><a href="https://freedom.press/issues/wired-is-dropping-paywalls-for-foia-based-reporting-others-should-follow/"><strong>Wired is dropping paywalls for FOIA-based reporting. Others should follow</strong> <code>freedom.press</code></a> - <a href="https://news.ycombinator.com/item?id=43399138">66 comments 433 points</a></li>
<li><a href="https://www.reuters.com/world/asia-pacific/istanbul-university-annuls-istanbul-mayor-imamoglus-diploma-over-irregularities-2025-03-18/"><strong>Turkish university annuls Erdogan rival's degree, preventing run for president</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=43404679">253 comments 429 points</a></li>
<li><a href="https://bluemigrate.com"><strong>Show HN: I made a tool to port tweets to Bluesky mantaining their original date</strong> <code>bluemigrate.com</code></a> - <a href="https://news.ycombinator.com/item?id=43401855">130 comments 342 points</a></li>
<li><a href="https://www.wired.com/story/federal-trade-commission-removed-blogs-critical-of-ai-amazon-microsoft/"><strong>FTC Removes Posts Critical of Amazon, Microsoft, and AI Companies</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43402957">99 comments 284 points</a></li>
<li><a href="https://gist.github.com/jwbee/7e8b27e298de8bbbf8abfa4c232db097"><strong>Make Ubuntu packages 90% faster by rebuilding them</strong> <code>gist.github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43406710">155 comments 259 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=43402315"><strong>Ask HN: How Do I Escape Homelessness After Rebuilding My Mental Health?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=43402315">134 comments 222 points</a></li>
<li><a href="https://blog.google/inside-google/company-announcements/google-agreement-acquire-wiz/"><strong>Google announces agreement to acquire Wiz</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=43398780">4 comments 220 points</a></li>
<li><a href="https://vintagedata.org/blog/posts/model-is-the-product"><strong>The model is the product</strong> <code>vintagedata.org</code></a> - <a href="https://news.ycombinator.com/item?id=43397474">80 comments 219 points</a></li>
<li><a href="https://drewdevault.com/2025/03/17/2025-03-17-Stop-externalizing-your-costs-on-me.html"><strong>Please stop externalizing your costs directly into my face</strong> <code>drewdevault.com</code></a> - <a href="https://news.ycombinator.com/item?id=43397361">107 comments 202 points</a></li>
<li><a href="https://www.hscott.net/designing-electronics-that-work/"><strong>Designing Electronics That Work</strong> <code>www.hscott.net</code></a> - <a href="https://news.ycombinator.com/item?id=43401179">69 comments 182 points</a></li>
<li><a href="https://kupajo.com/stamina-is-a-quiet-advantage/"><strong>Stamina Is a Quiet Advantage</strong> <code>kupajo.com</code></a> - <a href="https://news.ycombinator.com/item?id=43398589">85 comments 180 points</a></li>
<li><a href="https://www.minesweeperpro.com/"><strong>Show HN: I made a live multiplayer Minesweeper game</strong> <code>www.minesweeperpro.com</code></a> - <a href="https://news.ycombinator.com/item?id=43398081">66 comments 178 points</a></li>
<li><a href="https://www.redhat.com/en/blog/fedora-42-beta-now-available"><strong>Fedora 42 Beta</strong> <code>www.redhat.com</code></a> - <a href="https://news.ycombinator.com/item?id=43401595">88 comments 170 points</a></li>
<li><a href="https://joinpeertube.org/news/release-7.1"><strong>PeerTube v7.1 Is Out</strong> <code>joinpeertube.org</code></a> - <a href="https://news.ycombinator.com/item?id=43403377">42 comments 164 points</a></li>
<li><a href="https://togithub.com/sinclairtarget/git-who"><strong>Show HN: "Git who" – A new CLI tool for industrial-scale Git blaming</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=43404548">80 comments 154 points</a></li>
<li><a href="https://duckdb.org/2025/03/14/preview-amazon-s3-tables.html"><strong>Preview: Amazon S3 Tables and Lakehouse in DuckDB</strong> <code>duckdb.org</code></a> - <a href="https://news.ycombinator.com/item?id=43401421">39 comments 149 points</a></li>
<li><a href="https://www.httrack.com/"><strong>HTTrack Website Copier</strong> <code>www.httrack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43402149">40 comments 141 points</a></li>
<li><a href="https://store.steampowered.com/app/2477290/HalfLife_2_RTX/"><strong>Half-Life 2 RTX</strong> <code>store.steampowered.com</code></a> - <a href="https://news.ycombinator.com/item?id=43399168">80 comments 134 points</a></li>
<li><a href="https://www.coindesk.com/policy/2025/03/07/here-s-how-north-korea-launders-billions-of-stolen-crypto"><strong>North Korea Launders Billions in Stolen Crypto</strong> <code>www.coindesk.com</code></a> - <a href="https://news.ycombinator.com/item?id=43399190">55 comments 134 points</a></li>
<li><a href="https://jdk.java.net/24/"><strong>Java 24</strong> <code>jdk.java.net</code></a> - <a href="https://news.ycombinator.com/item?id=43398999">91 comments 120 points</a></li>
<li><a href="https://www.wired.com/story/federal-auditors-doge-elon-musk/"><strong>'It's a Heist': Real Federal Auditors Are Horrified by Doge</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43404586">63 comments 114 points</a></li>
<li><a href="https://www.theguardian.com/technology/2025/mar/18/byd-ev-fast-charging-system-petrol-fuel-speed"><strong>BYD says new fast-charging system could be as quick as filling up a tank</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=43396853">184 comments 108 points</a></li>
<li><a href="https://utopianengineeringsociety.substack.com/p/new-series-underrated-soft-skills"><strong>Underrated Soft Skills: Charisma</strong> <code>utopianengineeringsociety.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=43401378">96 comments 106 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2025-03-18]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/914</link>
<guid>914</guid>
<pubDate>Tue, 18 Mar 2025 06:17:41 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://testing.gimp.org/news/2025/03/16/gimp-3-0-released/"><strong>GIMP 3.0</strong> <code>testing.gimp.org</code></a> - <a href="https://news.ycombinator.com/item?id=43393822">282 comments 806 points</a></li>
<li><a href="https://arxiv.org/abs/2503.02113"><strong>Deep Learning Is Not So Mysterious or Different</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=43390400">81 comments 349 points</a></li>
<li><a href="https://blog.cloudflare.com/chaos-in-cloudflare-lisbon-office-securing-the-internet-with-wave-motion/"><strong>Chaos in the Cloudflare Lisbon Office</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=43389064">119 comments 265 points</a></li>
<li><a href="https://blog.dshr.org/2025/03/archival-storage.html"><strong>Archival Storage</strong> <code>blog.dshr.org</code></a> - <a href="https://news.ycombinator.com/item?id=43391459">130 comments 256 points</a></li>
<li><a href="https://techstartups.com/2025/03/17/amazon-to-lay-off-14000-managerial-positions-to-save-3-5-billion-annually/"><strong>Amazon plans to lay off 14,000 managerial positions to save $3.5B yearly</strong> <code>techstartups.com</code></a> - <a href="https://news.ycombinator.com/item?id=43393079">219 comments 236 points</a></li>
<li><a href="https://www.wired.com/story/undergraduate-upends-a-40-year-old-data-science-conjecture/"><strong>Undergraduate Disproves 40-Year-Old Conjecture, Invents New Kind of Hash Table</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=43388296">106 comments 224 points</a></li>
<li><a href="https://wagtail.org/blog/uv-overtakes-poetry/"><strong>uv downloads overtake Poetry for Wagtail users</strong> <code>wagtail.org</code></a> - <a href="https://news.ycombinator.com/item?id=43386357">191 comments 218 points</a></li>
<li><a href="https://theintercept.com/2025/03/17/lapd-surveillance-gaza-palestine-protests-dataminr/"><strong>Dataminr tracked Gaza-related protests</strong> <code>theintercept.com</code></a> - <a href="https://news.ycombinator.com/item?id=43390747">159 comments 194 points</a></li>
<li><a href="https://x.company/blog/posts/taara-graduation/"><strong>Alphabet spins out Taara – Internet over lasers</strong> <code>x.company</code></a> - <a href="https://news.ycombinator.com/item?id=43390467">193 comments 186 points</a></li>
<li><a href="https://makerworld.com/en/models/783010-underware-2-0-infinite-cable-management"><strong>Underware 2.0 – Open Source Infinite Cable Management</strong> <code>makerworld.com</code></a> - <a href="https://news.ycombinator.com/item?id=43386578">52 comments 184 points</a></li>