-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrss2.xml
More file actions
1181 lines (1181 loc) · 252 KB
/
rss2.xml
File metadata and controls
1181 lines (1181 loc) · 252 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?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>Thu, 30 Apr 2026 07:05:14 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 @2026-04-29]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1322</link>
<guid isPermaLink="false">1322</guid>
<pubDate>Wed, 29 Apr 2026 07:20:20 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://mitchellh.com/writing/ghostty-leaving-github"><strong>Ghostty is leaving GitHub</strong> <code>mitchellh.com</code></a> - <a href="https://news.ycombinator.com/item?id=47939579">685 comments 2301 points</a></li>
<li><a href="https://keepandroidopen.org/en/"><strong>Your phone is about to stop being yours</strong> <code>keepandroidopen.org</code></a> - <a href="https://news.ycombinator.com/item?id=47935853">575 comments 1254 points</a></li>
<li><a href="https://redirect.github.com/localsend/localsend"><strong>Localsend: An open-source cross-platform alternative to AirDrop</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47933208">244 comments 797 points</a></li>
<li><a href="https://lucumr.pocoo.org/2026/4/28/before-github/"><strong>Before GitHub</strong> <code>lucumr.pocoo.org</code></a> - <a href="https://news.ycombinator.com/item?id=47940921">120 comments 399 points</a></li>
<li><a href="https://www.ft.com/content/8c354f2d-3e66-47f1-aad4-9b4aa30e386d"><strong>UAE to leave OPEC</strong> <code>www.ft.com</code></a> - <a href="https://news.ycombinator.com/item?id=47933983">539 comments 398 points</a></li>
<li><a href="https://github.blog/news-insights/company-news/an-update-on-github-availability/"><strong>An update on GitHub availability</strong> <code>github.blog</code></a> - <a href="https://news.ycombinator.com/item?id=47932422">228 comments 357 points</a></li>
<li><a href="https://gtfobins.org/"><strong>GTFOBins</strong> <code>gtfobins.org</code></a> - <a href="https://news.ycombinator.com/item?id=47931035">87 comments 350 points</a></li>
<li><a href="https://legallayer.substack.com/p/who-owns-the-claude-code-wrote"><strong>Who owns the code Claude Code wrote?</strong> <code>legallayer.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47932937">352 comments 348 points</a></li>
<li><a href="https://redirect.github.com/microsoft/VibeVoice"><strong>VibeVoice: Open-source frontier voice AI</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47933236">169 comments 348 points</a></li>
<li><a href="https://femtechdesigndesk.substack.com/p/your-period-tracking-app-has-been"><strong>Period tracking app, Flo, found to be selling user data to Meta</strong> <code>femtechdesigndesk.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47932990">230 comments 345 points</a></li>
<li><a href="https://www.wiz.io/blog/github-rce-vulnerability-cve-2026-3854"><strong>GitHub RCE Vulnerability: CVE-2026-3854 Breakdown</strong> <code>www.wiz.io</code></a> - <a href="https://news.ycombinator.com/item?id=47936479">74 comments 317 points</a></li>
<li><a href="https://www.reuters.com/markets/commodities/uae-says-it-quits-opec-opec-statement-2026-04-28/"><strong>UAE Leaves OPEC</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47934120">2 comments 314 points</a></li>
<li><a href="https://www.theverge.com/ai-artificial-intelligence/919494/google-pentagon-classified-ai-deal"><strong>Google and Pentagon reportedly agree on deal for 'any lawful' use of AI</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=47936156">264 comments 288 points</a></li>
<li><a href="https://status.claude.com/incidents/9l93x2ht4s5w"><strong>Claude.ai unavailable and elevated errors on the API</strong> <code>status.claude.com</code></a> - <a href="https://news.ycombinator.com/item?id=47938097">242 comments 282 points</a></li>
<li><a href="https://www.vice.com/en/article/openai-ceo-identity-verification-company-fake-bruno-mars-partnership-mistaken-identity/"><strong>OpenAI CEO's Identity Verification Company Announced Fake Bruno Mars Partnership</strong> <code>www.vice.com</code></a> - <a href="https://news.ycombinator.com/item?id=47934269">106 comments 280 points</a></li>
<li><a href="https://www.buchodi.com/how-chatgpt-serves-ads-heres-the-full-attribution-loop/"><strong>How ChatGPT serves ads</strong> <code>www.buchodi.com</code></a> - <a href="https://news.ycombinator.com/item?id=47942437">181 comments 273 points</a></li>
<li><a href="https://github.blog/changelog/2026-04-27-github-copilot-code-review-will-start-consuming-github-actions-minutes-on-june-1-2026/"><strong>GitHub Copilot code review will start consuming GitHub Actions minutes</strong> <code>github.blog</code></a> - <a href="https://news.ycombinator.com/item?id=47932028">186 comments 269 points</a></li>
<li><a href="https://waymo.com/blog/shorts/waymo-in-portland/"><strong>Waymo in Portland</strong> <code>waymo.com</code></a> - <a href="https://news.ycombinator.com/item?id=47938184">466 comments 265 points</a></li>
<li><a href="https://www.blender.org/press/anthropic-joins-the-blender-development-fund-as-corporate-patron/"><strong>Anthropic Joins the Blender Development Fund as Corporate Patron</strong> <code>www.blender.org</code></a> - <a href="https://news.ycombinator.com/item?id=47936370">198 comments 247 points</a></li>
<li><a href="https://www.warp.dev/blog/warp-is-now-open-source"><strong>Warp is now open-source</strong> <code>www.warp.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47936264">68 comments 236 points</a></li>
<li><a href="https://redirect.github.com/warpdotdev/warp"><strong>Warp is now open-source</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47937349">157 comments 231 points</a></li>
<li><a href="https://stratechery.com/2026/an-interview-with-openai-ceo-sam-altman-and-aws-ceo-matt-garman-about-bedrock-managed-agents/"><strong>OpenAI models coming to Amazon Bedrock: Interview with OpenAI and AWS CEOs</strong> <code>stratechery.com</code></a> - <a href="https://news.ycombinator.com/item?id=47939320">80 comments 229 points</a></li>
<li><a href="https://nesbitt.io/2026/04/28/github-actions-is-the-weakest-link.html"><strong>GitHub Actions is the weakest link</strong> <code>nesbitt.io</code></a> - <a href="https://news.ycombinator.com/item?id=47933257">78 comments 227 points</a></li>
<li><a href="https://deadline.com/2026/04/paramount-fcc-request-wbd-merger-middle-east-1236873732/"><strong>FCC Funding Application Notes Paramount Will Be 49.5% Foreign-Owned Post-Merger</strong> <code>deadline.com</code></a> - <a href="https://news.ycombinator.com/item?id=47936210">146 comments 217 points</a></li>
<li><a href="https://arstechnica.com/gadgets/2026/04/no-fly-zones-around-moving-ice-vehicles-this-drone-pilot-fought-back-and-won/"><strong>Drone pilot makes US rescind no-fly zones around unmarked, moving ICE vehicles</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=47940271">71 comments 215 points</a></li>
<li><a href="https://www.wheresyoured.at/ais-economics-dont-make-sense/"><strong>AI's economics don't make sense</strong> <code>www.wheresyoured.at</code></a> - <a href="https://news.ycombinator.com/item?id=47936867">168 comments 211 points</a></li>
<li><a href="https://redirect.github.com/anthropics/claude-code/issues/49363"><strong>Regression: malware reminder on every read still causes subagent refusals</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47942492">94 comments 197 points</a></li>
<li><a href="https://www.uscourts.gov/data-news/judiciary-news/2026/04/23/bankruptcies-increase-119-percent"><strong>Bankruptcies increase 11.9 percent</strong> <code>www.uscourts.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47938756">113 comments 182 points</a></li>
<li><a href="https://corrode.dev/blog/bugs-rust-wont-catch/"><strong>Bugs Rust won't catch</strong> <code>corrode.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47943499">55 comments 179 points</a></li>
<li><a href="https://www.lumara-space.app/"><strong>Show HN: Live Sun and Moon Dashboard with NASA Footage</strong> <code>www.lumara-space.app</code></a> - <a href="https://news.ycombinator.com/item?id=47934261">60 comments 176 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-28]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1321</link>
<guid isPermaLink="false">1321</guid>
<pubDate>Tue, 28 Apr 2026 07:28:48 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.bloomberg.com/news/articles/2026-04-27/microsoft-to-stop-sharing-revenue-with-main-ai-partner-openai"><strong>Microsoft and OpenAI end their exclusive and revenue-sharing deal</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47921248">727 comments 851 points</a></li>
<li><a href="https://github.blog/news-insights/company-news/github-copilot-is-moving-to-usage-based-billing/"><strong>GitHub Copilot is moving to usage-based billing</strong> <code>github.blog</code></a> - <a href="https://news.ycombinator.com/item?id=47923357">460 comments 631 points</a></li>
<li><a href="https://www.alexselimov.com/posts/men_who_stare_at_walls/"><strong>Men who stare at walls</strong> <code>www.alexselimov.com</code></a> - <a href="https://news.ycombinator.com/item?id=47920074">245 comments 544 points</a></li>
<li><a href="https://app.oravys.com/blog/mercor-breach-2026"><strong>4TB of voice samples just stolen from 40k AI contractors at Mercor</strong> <code>app.oravys.com</code></a> - <a href="https://news.ycombinator.com/item?id=47919630">183 comments 511 points</a></li>
<li><a href="https://ismy.blue/"><strong>Is my blue your blue?</strong> <code>ismy.blue</code></a> - <a href="https://news.ycombinator.com/item?id=47926861">323 comments 481 points</a></li>
<li><a href="https://redirect.github.com/pgbackrest/pgbackrest"><strong>Pgbackrest is no longer being maintained</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47919997">219 comments 416 points</a></li>
<li><a href="https://www.cnbc.com/2026/04/27/meta-manus-china-blocks-acquisition-ai-startup.html"><strong>China blocks Meta's acquisition of AI startup Manus</strong> <code>www.cnbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47920315">260 comments 365 points</a></li>
<li><a href="https://redirect.github.com/dirac-run/dirac"><strong>Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47920787">125 comments 336 points</a></li>
<li><a href="https://www.techzine.eu/news/infrastructure/140634/dutch-central-bank-chooses-lidl-for-european-cloud/"><strong>Dutch central bank ditches AWS and chooses Lidl for European Cloud</strong> <code>www.techzine.eu</code></a> - <a href="https://news.ycombinator.com/item?id=47922712">135 comments 327 points</a></li>
<li><a href="https://www.githubstatus.com"><strong>GitHub is having issues now</strong> <code>www.githubstatus.com</code></a> - <a href="https://news.ycombinator.com/item?id=47924775">113 comments 313 points</a></li>
<li><a href="https://talkie-lm.com/introducing-talkie"><strong>Talkie: a 13B vintage language model from 1930</strong> <code>talkie-lm.com</code></a> - <a href="https://news.ycombinator.com/item?id=47927903">98 comments 301 points</a></li>
<li><a href="https://quarkdown.com/"><strong>Quarkdown – Markdown with Superpowers</strong> <code>quarkdown.com</code></a> - <a href="https://news.ycombinator.com/item?id=47919240">103 comments 297 points</a></li>
<li><a href="http://ozark.hendrix.edu/~yorgey/forest/00FD/index.xml"><strong>To my students</strong> <code>ozark.hendrix.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47928828">178 comments 285 points</a></li>
<li><a href="https://zsnes.com/"><strong>Super ZSNES – GPU Powered SNES Emulator</strong> <code>zsnes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47924877">84 comments 284 points</a></li>
<li><a href="https://lawrencecpaulson.github.io//2026/04/23/Why_not_Lean.html"><strong>“Why not just use Lean?”</strong> <code>lawrencecpaulson.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47922079">193 comments 277 points</a></li>
<li><a href="https://www.nytimes.com/2026/04/27/us/politics/supreme-court-cell-data-geofence.html"><strong>US Supreme Court reviews police use of cell location data</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47922940">143 comments 239 points</a></li>
<li><a href="https://www.fda.gov/news-events/press-announcements/fda-approves-first-ever-gene-therapy-treatment-genetic-hearing-loss-under-national-priority-voucher"><strong>FDA approves first gene therapy for treatment of genetic hearing loss</strong> <code>www.fda.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47919733">86 comments 237 points</a></li>
<li><a href="https://eclecticlight.co/2026/04/23/networking-changes-coming-in-macos-27/"><strong>Networking changes coming in macOS 27</strong> <code>eclecticlight.co</code></a> - <a href="https://news.ycombinator.com/item?id=47923010">196 comments 224 points</a></li>
<li><a href="https://unitedwizardsofthecoast.com/news/announcing-united-wizards-coast-cwa"><strong>United Wizards of the Coast</strong> <code>unitedwizardsofthecoast.com</code></a> - <a href="https://news.ycombinator.com/item?id=47925425">207 comments 223 points</a></li>
<li><a href="https://www.forbes.com/sites/iainmartin/2026/04/16/how-frances-mistral-built-a-14-billion-ai-empire-by-not-being-american/"><strong>Mistral built a $14B AI empire by not being American</strong> <code>www.forbes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47919725">166 comments 212 points</a></li>
<li><a href="https://muffin.ink/blog/scratch-svg-sanitization/"><strong>The woes of sanitizing SVGs</strong> <code>muffin.ink</code></a> - <a href="https://news.ycombinator.com/item?id=47922957">87 comments 209 points</a></li>
<li><a href="https://redirect.github.com/Hanqaqa/Easyduino"><strong>Easyduino: Open Source PCB Devboards for KiCad</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47924813">31 comments 200 points</a></li>
<li><a href="https://robbowen.digital/wrote-about/abandoned-side-projects/"><strong>It's OK to abandon your side-project (2024)</strong> <code>robbowen.digital</code></a> - <a href="https://news.ycombinator.com/item?id=47918961">86 comments 184 points</a></li>
<li><a href="https://www.tps.ca/media-centre/stories/unprecedented-sms-blaster-arrests/"><strong>Three men are facing charges in Toronto SMS Blaster arrests</strong> <code>www.tps.ca</code></a> - <a href="https://news.ycombinator.com/item?id=47927070">67 comments 147 points</a></li>
<li><a href="https://www.nytimes.com/2026/04/26/climate/supreme-court-bayer-monsanto-roundup-glyphosate.html"><strong>Supreme Court to hear arguments in landmark Roundup weedkiller case</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47923121">184 comments 140 points</a></li>
<li><a href="https://www.cbc.ca/news/politics/sovereign-wealth-fund-carney-major-projects-9.7178238"><strong>Canada's first sovereign wealth fund</strong> <code>www.cbc.ca</code></a> - <a href="https://news.ycombinator.com/item?id=47924188">99 comments 140 points</a></li>
<li><a href="https://restofworld.org/2026/sam-altman-worldcoin-zoom-tinder-partnerships/"><strong>U.S. companies back Sam Altman's World ID even as much of the world pushes back</strong> <code>restofworld.org</code></a> - <a href="https://news.ycombinator.com/item?id=47926259">92 comments 139 points</a></li>
<li><a href="https://www.vice.com/en/article/meet-the-mushroom-that-make-people-have-the-exact-same-hallucination/"><strong>A mushroom that makes people have the exact same hallucination</strong> <code>www.vice.com</code></a> - <a href="https://news.ycombinator.com/item?id=47918657">81 comments 124 points</a></li>
<li><a href="https://status.npmjs.org"><strong>NPM website was down</strong> <code>status.npmjs.org</code></a> - <a href="https://news.ycombinator.com/item?id=47927526">56 comments 121 points</a></li>
<li><a href="https://deploy.live/blog/running-local-llms-offline-on-a-ten-hour-flight/"><strong>Running local LLMs offline on a ten-hour flight</strong> <code>deploy.live</code></a> - <a href="https://news.ycombinator.com/item?id=47921064">91 comments 118 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-27]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1320</link>
<guid isPermaLink="false">1320</guid>
<pubDate>Mon, 27 Apr 2026 07:31:40 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://ca98am79.medium.com/i-bought-friendster-for-30k-heres-what-i-m-doing-with-it-d5e8ddb3991d"><strong>I bought Friendster for $30k – Here's what I'm doing with it</strong> <code>ca98am79.medium.com</code></a> - <a href="https://news.ycombinator.com/item?id=47914165">368 comments 699 points</a></li>
<li><a href="https://twitter.com/lifeof_jer/status/2048103471019434248"><strong>An AI agent deleted our production database. The agent's confession is below</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47911524">785 comments 626 points</a></li>
<li><a href="https://asahilinux.org/2026/04/progress-report-7-0/"><strong>Asahi Linux Progress Linux 7.0</strong> <code>asahilinux.org</code></a> - <a href="https://news.ycombinator.com/item?id=47909226">311 comments 613 points</a></li>
<li><a href="https://anchor.host/godaddy-gave-a-domain-to-a-stranger-without-any-documentation/"><strong>GoDaddy gave a domain to a stranger without any documentation</strong> <code>anchor.host</code></a> - <a href="https://news.ycombinator.com/item?id=47911780">231 comments 588 points</a></li>
<li><a href="https://www.koshyjohn.com/blog/ai-should-elevate-your-thinking-not-replace-it/"><strong>AI should elevate your thinking, not replace it</strong> <code>www.koshyjohn.com</code></a> - <a href="https://news.ycombinator.com/item?id=47913650">321 comments 431 points</a></li>
<li><a href="https://www.bbc.com/sport/athletics/articles/crm1m7e0zwzo"><strong>Sawe becomes first athlete to run a sub-two-hour marathon in a competitive race</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47914350">244 comments 354 points</a></li>
<li><a href="https://statecharts.dev/"><strong>Statecharts: hierarchical state machines</strong> <code>statecharts.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47908833">80 comments 296 points</a></li>
<li><a href="https://openai.com/index/why-we-no-longer-evaluate-swe-bench-verified/"><strong>SWE-bench Verified no longer measures frontier coding capabilities</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47910388">160 comments 291 points</a></li>
<li><a href="https://interblah.net/self-updating-screenshots"><strong>Self-updating screenshots</strong> <code>interblah.net</code></a> - <a href="https://news.ycombinator.com/item?id=47908051">36 comments 243 points</a></li>
<li><a href="https://redirect.github.com/orgs/community/discussions/192666"><strong>Issue links now open in a popup</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47910546">124 comments 234 points</a></li>
<li><a href="https://www.sentinelone.com/labs/fast16-mystery-shadowbrokers-reference-reveals-high-precision-software-sabotage-5-years-before-stuxnet/"><strong>Fast16: High-precision software sabotage 5 years before Stuxnet</strong> <code>www.sentinelone.com</code></a> - <a href="https://news.ycombinator.com/item?id=47913855">49 comments 227 points</a></li>
<li><a href="https://road.cc/news/driverless-taxis-veering-into-cycle-lanes-normal-practice-says-waymo"><strong>Waymo says can't avoid bike lanes because riders want to be dropped off in them</strong> <code>road.cc</code></a> - <a href="https://news.ycombinator.com/item?id=47912645">351 comments 222 points</a></li>
<li><a href="https://feministhackerspaces.cargo.site/Clay-PCB-Tutorial"><strong>Clay PCB Tutorial</strong> <code>feministhackerspaces.cargo.site</code></a> - <a href="https://news.ycombinator.com/item?id=47911350">129 comments 217 points</a></li>
<li><a href="https://www.smithsonianmag.com/science-nature/butterflies-are-in-dramatic-decline-across-north-america-a-close-look-at-the-western-monarch-shows-why-180988582/"><strong>Butterflies are in decline across North America, a look at the Western Monarch</strong> <code>www.smithsonianmag.com</code></a> - <a href="https://news.ycombinator.com/item?id=47914677">57 comments 194 points</a></li>
<li><a href="https://dillo-browser.org/release/3.3.0/"><strong>Dillo Browser Release 3.3.0</strong> <code>dillo-browser.org</code></a> - <a href="https://news.ycombinator.com/item?id=47911977">26 comments 170 points</a></li>
<li><a href="https://www.barwypowstania.pl/"><strong>The 1944 Warsaw Uprising, in Color</strong> <code>www.barwypowstania.pl</code></a> - <a href="https://news.ycombinator.com/item?id=47913406">56 comments 132 points</a></li>
<li><a href="https://thermodynamicsbook.com/"><strong>Show HN: Free textbook on engineering thermodynamics</strong> <code>thermodynamicsbook.com</code></a> - <a href="https://news.ycombinator.com/item?id=47911013">34 comments 132 points</a></li>
<li><a href="https://www.edenai.co"><strong>Eden AI – European Alternative to OpenRouter</strong> <code>www.edenai.co</code></a> - <a href="https://news.ycombinator.com/item?id=47908433">67 comments 128 points</a></li>
<li><a href="https://eblong.com/infocom/visi/zork1/"><strong>The Visible Zorker: Zork 1</strong> <code>eblong.com</code></a> - <a href="https://news.ycombinator.com/item?id=47911644">23 comments 125 points</a></li>
<li><a href="https://www.cnn.com/2026/04/21/us/deaths-disappearances-scientists-investigation"><strong>At least 10 people tied to sensitive US research have died or disappeared</strong> <code>www.cnn.com</code></a> - <a href="https://news.ycombinator.com/item?id=47909942">78 comments 116 points</a></li>
<li><a href="https://arkaung.github.io/interactive-turboquant/"><strong>TurboQuant: A first-principles walkthrough</strong> <code>arkaung.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47916890">13 comments 110 points</a></li>
<li><a href="https://evalcode.com/posts/if-you-stop-hiring-juniors-your-seniors-own-you/"><strong>If you stop hiring juniors, your senior engineers own you</strong> <code>evalcode.com</code></a> - <a href="https://news.ycombinator.com/item?id=47913641">73 comments 98 points</a></li>
<li><a href="https://www.ft.com/content/2429f0f0-b685-4747-b425-bf8001a2e94c"><strong>Google banks on AI edge to catch up to cloud rivals Amazon and Microsoft</strong> <code>www.ft.com</code></a> - <a href="https://news.ycombinator.com/item?id=47916410">81 comments 96 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47913561"><strong>Have you tried Clean Architecture as foundation for your AI project?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47913561">1 comments 94 points</a></li>
<li><a href="https://www.bbc.com/future/article/20260424-chernobyl-wildlife-forty-years-on"><strong>Chernobyl wildlife forty years on</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47913382">15 comments 89 points</a></li>
<li><a href="https://redirect.github.com/sachitrafa/YourMemory"><strong>Show HN: AI memory with biological decay (52% recall)</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47914367">37 comments 86 points</a></li>
<li><a href="https://news.mit.edu/2026/plants-can-sense-sound-rain-new-study-finds-0422"><strong>Plants can sense the sound of rain, a new study finds</strong> <code>news.mit.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47912513">15 comments 85 points</a></li>
<li><a href="https://developer.chrome.com/docs/ai/prompt-api"><strong>The Prompt API</strong> <code>developer.chrome.com</code></a> - <a href="https://news.ycombinator.com/item?id=47917026">58 comments 82 points</a></li>
<li><a href="https://ciechanow.ski/exposing-floating-point/"><strong>Exposing Floating Point – Bartosz Ciechanowski (2019)</strong> <code>ciechanow.ski</code></a> - <a href="https://news.ycombinator.com/item?id=47908139">11 comments 82 points</a></li>
<li><a href="https://news.adidas.com/running/two-adidas-athletes-sabastian-sawe-and-yomif-kejelcha-break-the-sub-2-hour-marathon-barrier-in-the-r/s/d4be4eac-a3b8-47d5-835f-9cbd685638ca"><strong>Two Athletes Break Sub-2-HR Marathon in Adizero Adios Pro Evo 3</strong> <code>news.adidas.com</code></a> - <a href="https://news.ycombinator.com/item?id=47914438">1 comments 75 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-26]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1319</link>
<guid isPermaLink="false">1319</guid>
<pubDate>Sun, 26 Apr 2026 06:56:55 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.science.org/content/article/trump-fires-nsf-s-oversight-board"><strong>Trump fires NSF's oversight board</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=47905283">228 comments 432 points</a></li>
<li><a href="https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-problem/"><strong>Amateur armed with ChatGPT solves an Erdős problem</strong> <code>www.scientificamerican.com</code></a> - <a href="https://news.ycombinator.com/item?id=47903126">180 comments 285 points</a></li>
<li><a href="https://fabiensanglard.net/usbcheat/index.html"><strong>USB Cheat Sheet (2022)</strong> <code>fabiensanglard.net</code></a> - <a href="https://news.ycombinator.com/item?id=47904876">54 comments 259 points</a></li>
<li><a href="https://blog.matthewbrunelle.com/its-ok-to-use-coding-assistance-tools-to-revive-the-projects-you-never-were-going-to-finish/"><strong>Using coding assistance tools to revive projects you never were going to finish</strong> <code>blog.matthewbrunelle.com</code></a> - <a href="https://news.ycombinator.com/item?id=47902525">141 comments 249 points</a></li>
<li><a href="https://redirect.github.com/niri-wm/niri/releases/tag/v26.04"><strong>Niri 26.04: Scrollable-tiling Wayland compositor</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47902416">73 comments 230 points</a></li>
<li><a href="https://redirect.github.com/nex-crm/wuphf"><strong>Show HN: A Karpathy-style LLM wiki your agents maintain (Markdown and Git)</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47899844">106 comments 229 points</a></li>
<li><a href="https://newrepublic.com/article/209163/ai-industry-discovering-public-backlash"><strong>The AI industry is discovering that the public hates it</strong> <code>newrepublic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47904568">307 comments 228 points</a></li>
<li><a href="https://freakonomics.com/podcast/why-has-there-been-so-little-progress-on-alzheimers-disease/"><strong>Why has there been so little progress on Alzheimer's disease?</strong> <code>freakonomics.com</code></a> - <a href="https://news.ycombinator.com/item?id=47905984">92 comments 191 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47906253"><strong>Tell HN: An app is silently installing itself on my iPhone every day</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47906253">85 comments 181 points</a></li>
<li><a href="https://redirect.github.com/MartinGalway/C64_music"><strong>Martin Galway's music source files from 1980's Commodore 64 games</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47900398">25 comments 170 points</a></li>
<li><a href="https://fabiensanglard.net/discret11/"><strong>Discret 11, the French TV encryption of the 80s (2020)</strong> <code>fabiensanglard.net</code></a> - <a href="https://news.ycombinator.com/item?id=47900478">29 comments 158 points</a></li>
<li><a href="https://boilingsteam.com/framework-laptop-13-pro-announced/"><strong>Framework Laptop 13 Pro: Major Upgrades and Linux Front and Center</strong> <code>boilingsteam.com</code></a> - <a href="https://news.ycombinator.com/item?id=47902816">119 comments 149 points</a></li>
<li><a href="https://openai.com/index/gpt-5-5-bio-bug-bounty/"><strong>GPT‑5.5 Bio Bug Bounty</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47901734">101 comments 143 points</a></li>
<li><a href="https://blog.happyfellow.dev/simulacrum-of-knowledge-work/"><strong>Simulacrum of Knowledge Work</strong> <code>blog.happyfellow.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47902987">55 comments 136 points</a></li>
<li><a href="https://www.seriouseats.com/how-to-reduce-bean-gas-tested-11883862"><strong>Can you stop beans from making you gassy?</strong> <code>www.seriouseats.com</code></a> - <a href="https://news.ycombinator.com/item?id=47904224">114 comments 135 points</a></li>
<li><a href="https://victortaelin.github.io/lambench/"><strong>Lambda Calculus Benchmark for AI</strong> <code>victortaelin.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47900506">40 comments 135 points</a></li>
<li><a href="https://redirect.github.com/nakagami/grdpwasm"><strong>A web-based RDP client built with Go WebAssembly and grdp</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47900440">45 comments 124 points</a></li>
<li><a href="https://www.nbcnews.com/world/iran/iran-caused-extensive-damage-us-military-bases-publicly-known-rcna331853"><strong>Iran caused more extensive damage to U.S. military bases than publicly known</strong> <code>www.nbcnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=47902746">159 comments 120 points</a></li>
<li><a href="https://oilprice.com/Alternative-Energy/Geothermal-Energy/Americas-Geothermal-Breakthrough-Could-Unlock-a-150-Gigawatt-Energy-Revolution.html"><strong>America's Geothermal Breakthrough</strong> <code>oilprice.com</code></a> - <a href="https://news.ycombinator.com/item?id=47903945">119 comments 104 points</a></li>
<li><a href="https://dl.ndl.go.jp/pid/1899550/1/11/"><strong>Hokusai and Tesselations</strong> <code>dl.ndl.go.jp</code></a> - <a href="https://news.ycombinator.com/item?id=47902993">14 comments 99 points</a></li>
<li><a href="https://juraj.bednar.io/en/blog-en/2026/04/17/eu-age-control-the-trojan-horse-for-digital-ids/"><strong>EU Age Control: The trojan horse for digital IDs</strong> <code>juraj.bednar.io</code></a> - <a href="https://news.ycombinator.com/item?id=47907130">25 comments 97 points</a></li>
<li><a href="https://fosstodon.org/@carlrichell/116460505717380644"><strong>Colorado Adds Open-Source Exemption to Age-Verification Bill</strong> <code>fosstodon.org</code></a> - <a href="https://news.ycombinator.com/item?id=47905304">31 comments 93 points</a></li>
<li><a href="https://coalton-lang.github.io/mine/"><strong>Mine, an IDE for Coalton and Common Lisp</strong> <code>coalton-lang.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47903173">39 comments 90 points</a></li>
<li><a href="https://jorgenmelau.substack.com/p/the-first-sixty-seconds"><strong>Jumping into cold water can stop your heart</strong> <code>jorgenmelau.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47901884">36 comments 86 points</a></li>
<li><a href="https://blisscast.wordpress.com/2026/04/21/windows-2-gui-wonderland-12a/"><strong>Only one side will be the true successor to MS-DOS – Windows 2.x</strong> <code>blisscast.wordpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=47900451">61 comments 76 points</a></li>
<li><a href="https://www.youtube.com/shorts/y4DnsCzJTRQ"><strong>Behind-the-Scenes of MacBook Neo Introduction Video</strong> <code>www.youtube.com</code></a> - <a href="https://news.ycombinator.com/item?id=47901037">7 comments 74 points</a></li>
<li><a href="https://allbrainsbelong.org/wp-content/uploads/2023/08/CLINICIAN-GUIDE-Everything-is-Connected-to-Everything-Project-All-Brains-Belong-VT-8.15.23.pdf"><strong>A Collection of Chronic Medical Conditions Common in Autistic and ADHD Adults [pdf] (2023)</strong> <code>allbrainsbelong.org</code></a> - <a href="https://news.ycombinator.com/item?id=47901469">64 comments 65 points</a></li>
<li><a href="https://www.mnot.net/blog/2026/04/24/agents_as_collective_bargains"><strong>What's missing in the 'agentic' story: a well-defined user agent role</strong> <code>www.mnot.net</code></a> - <a href="https://news.ycombinator.com/item?id=47902339">61 comments 58 points</a></li>
<li><a href="https://www.nytimes.com/2026/04/25/your-money/fidelity-investments-fraud-alert.html"><strong>Her life savings mysteriously disappeared after a systems glitch</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47905681">43 comments 56 points</a></li>
<li><a href="https://en.wikipedia.org/wiki/HEALPix"><strong>HEALPix</strong> <code>en.wikipedia.org</code></a> - <a href="https://news.ycombinator.com/item?id=47901312">6 comments 52 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-25]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1318</link>
<guid isPermaLink="false">1318</guid>
<pubDate>Sat, 25 Apr 2026 06:18:28 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://nickyreinert.de/en/2026/2026-04-24-claude-critics/"><strong>I cancelled Claude: Token issues, declining quality, and poor support</strong> <code>nickyreinert.de</code></a> - <a href="https://news.ycombinator.com/item?id=47892019">500 comments 848 points</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2026-04-24/google-plans-to-invest-up-to-40-billion-in-anthropic"><strong>Google plans to invest up to $40B in Anthropic</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47892074">484 comments 489 points</a></li>
<li><a href="https://kevinlynagh.com/newsletter/2026_04_overthinking/"><strong>Sabotaging projects by overthinking, scope creep, and structural diffing</strong> <code>kevinlynagh.com</code></a> - <a href="https://news.ycombinator.com/item?id=47890799">104 comments 397 points</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2026-04-24/norway-wants-kids-to-be-kids-with-social-media-ban-for-under-16s"><strong>Norway set to become latest country to ban social media for under 16s</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47891019">440 comments 382 points</a></li>
<li><a href="https://nate.leaflet.pub/3mk4xkaxobc2p"><strong>How to be anti-social – a guide to incoherent and isolating social experiences</strong> <code>nate.leaflet.pub</code></a> - <a href="https://news.ycombinator.com/item?id=47888372">312 comments 337 points</a></li>
<li><a href="https://redirect.github.com/matz/spinel"><strong>Spinel: Ruby AOT Native Compiler</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47887334">86 comments 319 points</a></li>
<li><a href="https://redirect.github.com/libsdl-org/SDL/pull/15377"><strong>SDL Now Supports DOS</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47892291">99 comments 244 points</a></li>
<li><a href="https://ynarwal.github.io/how-llms-work/"><strong>Show HN: How LLMs Work – Interactive visual guide based on Karpathy's lecture</strong> <code>ynarwal.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47886517">53 comments 234 points</a></li>
<li><a href="https://developers.openai.com/api/docs/changelog"><strong>OpenAI releases GPT-5.5 and GPT-5.5 Pro in the API</strong> <code>developers.openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47894000">125 comments 230 points</a></li>
<li><a href="https://www.bbc.com/news/articles/c4gx1n0dl9no"><strong>South Korea police arrest man for posting AI photo of runaway wolf</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47887683">149 comments 222 points</a></li>
<li><a href="https://techcrunch.com/2026/04/24/google-to-invest-up-to-40b-in-anthropic-in-cash-and-compute/"><strong>Google to invest up to $40B in Anthropic in cash and compute</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47895080">7 comments 206 points</a></li>
<li><a href="https://hhh.hn/rodecaster-duo-fw/"><strong>My audio interface has SSH enabled by default</strong> <code>hhh.hn</code></a> - <a href="https://news.ycombinator.com/item?id=47894747">68 comments 204 points</a></li>
<li><a href="https://blogs.loc.gov/picturethis/2026/04/the-classic-american-diner/"><strong>The Classic American Diner</strong> <code>blogs.loc.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47894435">120 comments 197 points</a></li>
<li><a href="https://arxiv.org/abs/2604.21691"><strong>There Will Be a Scientific Theory of Deep Learning</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=47893779">76 comments 196 points</a></li>
<li><a href="https://redirect.github.com/AndrewVos/endless-toil"><strong>Hear your agent suffer through your code</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47888465">84 comments 186 points</a></li>
<li><a href="https://www.bmj.com/content/393/bmj.s781"><strong>UK Biobank leak: Health details of 500k people offered for sale on Alibaba</strong> <code>www.bmj.com</code></a> - <a href="https://news.ycombinator.com/item?id=47888557">79 comments 186 points</a></li>
<li><a href="https://www.kalzumeus.com/2009/09/05/desktop-aps-versus-web-apps/"><strong>I'm done making desktop applications (2009)</strong> <code>www.kalzumeus.com</code></a> - <a href="https://news.ycombinator.com/item?id=47891801">182 comments 160 points</a></li>
<li><a href="https://www.nytimes.com/2026/04/24/us/politics/companies-consumers-tariff-refunds.html"><strong>Tariffs Raised Consumers' Prices, but the Refunds Go Only to Businesses</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47893060">57 comments 153 points</a></li>
<li><a href="https://buttondown.com/maiht3k/archive/why-you-should-refuse-to-let-your-doctor-record/"><strong>Refuse to let your doctor record you</strong> <code>buttondown.com</code></a> - <a href="https://news.ycombinator.com/item?id=47891872">196 comments 150 points</a></li>
<li><a href="https://viewfromthewing.com/san-francisco-airport-removed-90-minutes-of-daily-noise-travelers-say-it-changed-everything/"><strong>SFO Quiet Airport (2025)</strong> <code>viewfromthewing.com</code></a> - <a href="https://news.ycombinator.com/item?id=47894081">81 comments 141 points</a></li>
<li><a href="https://itsfoss.com/news/firefox-ships-brave-adblock-engine/"><strong>Firefox Has Integrated Brave's Adblock Engine</strong> <code>itsfoss.com</code></a> - <a href="https://news.ycombinator.com/item?id=47897891">53 comments 130 points</a></li>
<li><a href="https://www.flowmusic.app/"><strong>Google Flow Music</strong> <code>www.flowmusic.app</code></a> - <a href="https://news.ycombinator.com/item?id=47895765">123 comments 126 points</a></li>
<li><a href="https://orchidfiles.com/stigma-is-a-tax-on-every-operational-decision/"><strong>The operating cost of adult and gambling startups</strong> <code>orchidfiles.com</code></a> - <a href="https://news.ycombinator.com/item?id=47889279">191 comments 119 points</a></li>
<li><a href="https://dynomight.net/aspartame/"><strong>Aspartame is not that bad? (2022)</strong> <code>dynomight.net</code></a> - <a href="https://news.ycombinator.com/item?id=47889030">243 comments 118 points</a></li>
<li><a href="https://www.cambra.dev/blog/announcement/"><strong>Composition shouldn't be this hard</strong> <code>www.cambra.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47886773">72 comments 118 points</a></li>
<li><a href="https://redirect.github.com/NV404/gova"><strong>Show HN: Gova – The declarative GUI framework for Go</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47886272">26 comments 118 points</a></li>
<li><a href="https://jeroen.github.io/notes/webassembly-tar/"><strong>Mounting tar archives as a filesystem in WebAssembly</strong> <code>jeroen.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47888124">37 comments 116 points</a></li>
<li><a href="https://gigazine.net/gsc_news/en/20260424-filco-diatec/"><strong>Diatec, known for its mechanical keyboard brand FILCO, has ceased operations</strong> <code>gigazine.net</code></a> - <a href="https://news.ycombinator.com/item?id=47892236">39 comments 109 points</a></li>
<li><a href="https://hostednowhere.com/"><strong>nowhere: an entire website encoded in a URL</strong> <code>hostednowhere.com</code></a> - <a href="https://news.ycombinator.com/item?id=47888337">62 comments 101 points</a></li>
<li><a href="https://redirect.github.com/yuvadm/quantumslop/blob/25ad2e76ae58baa96f6219742459407db9dd17f5/URANDOM_DEMO.md"><strong>Replace IBM Quantum back end with /dev/urandom</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47897647">13 comments 99 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-24]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1317</link>
<guid isPermaLink="false">1317</guid>
<pubDate>Fri, 24 Apr 2026 07:02:38 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://openai.com/index/introducing-gpt-5-5/"><strong>GPT-5.5</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47879092">861 comments 1289 points</a></li>
<li><a href="https://www.wired.com/story/palantir-employees-are-starting-to-wonder-if-theyre-the-bad-guys/"><strong>Palantir employees are starting to wonder if they're the bad guys</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=47878633">581 comments 827 points</a></li>
<li><a href="https://socket.dev/blog/bitwarden-cli-compromised"><strong>Bitwarden CLI compromised in ongoing Checkmarx supply chain campaign</strong> <code>socket.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47876043">357 comments 727 points</a></li>
<li><a href="https://www.anthropic.com/engineering/april-23-postmortem"><strong>An update on recent Claude Code quality reports</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47878905">508 comments 668 points</a></li>
<li><a href="https://api-docs.deepseek.com/"><strong>DeepSeek v4</strong> <code>api-docs.deepseek.com</code></a> - <a href="https://news.ycombinator.com/item?id=47884971">296 comments 611 points</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2026-04-23/meta-tells-staff-it-will-cut-10-of-jobs-in-push-for-efficiency"><strong>Meta tells staff it will cut 10% of jobs</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47879986">526 comments 553 points</a></li>
<li><a href="https://www.derekthompson.org/p/if-americas-so-rich-howd-it-get-so"><strong>If America's so rich, how'd it get so sad?</strong> <code>www.derekthompson.org</code></a> - <a href="https://news.ycombinator.com/item?id=47877429">908 comments 479 points</a></li>
<li><a href="https://techcrunch.com/2026/04/23/surveillance-vendors-caught-abusing-access-to-telcos-to-track-peoples-phone-locations-researchers-say/"><strong>Investigation uncovers two sophisticated telecom surveillance campaigns</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47874814">130 comments 379 points</a></li>
<li><a href="https://www.bleepingcomputer.com/news/security/french-govt-agency-confirms-breach-as-hacker-offers-to-sell-data/"><strong>French government agency confirms breach as hacker offers to sell data</strong> <code>www.bleepingcomputer.com</code></a> - <a href="https://news.ycombinator.com/item?id=47877366">128 comments 374 points</a></li>
<li><a href="https://redirect.github.com/russellromney/honker"><strong>Show HN: Honker – Postgres NOTIFY/LISTEN Semantics for SQLite</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47874647">61 comments 251 points</a></li>
<li><a href="https://www.justice.gov/usao-sdny/pr/us-soldier-charged-using-classified-information-profit-prediction-market-bets?bm-verify=AAQAAAAN_____y6To7sZYZ502biZwIHXlr-7zXZUqV4H0xLTfW__wDA3SjNLqifXRaQwsikyuz6IJknyuL8xfVYRkesxcDk5V10m-HoXl2K93f17rygBphL77WVFoQ_XvlmUo922IwM_DQ66137X6wWMtpdHslcEjpJG7KbBmUw9Su4kDENpDt_yv2spThQZehgv-X1Adk5U2VHfp41co2s_QJGjRj4y0KmL1mhSCyVaE7MC1LHG0mtP-xYmD0xBOQwn6PlHkPiP5Nt46h5ZIjLGXgCZDEVD42i7rIEM379DKLPUPX0PDNmOAwFSuTqcTDVnT_UUV8vxpHLRMb7rUxPxKUPcIB23iZTRJddWDDtPHMXadpwv67xr-f1sKDLZT9NgHCO4iuC2EthmAt0"><strong>U.S. soldier charged with using classified info to profit from prediction market</strong> <code>www.justice.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47883108">2 comments 249 points</a></li>
<li><a href="https://www.telegraph.co.uk/business/2026/04/23/hairdryer-used-trick-weather-sensor-34000-polymarket-bet/"><strong>'Hairdryer used to trick weather sensor' to win Polymarket bet</strong> <code>www.telegraph.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=47878208">233 comments 239 points</a></li>
<li><a href="https://www.githubstatus.com/incidents/myrbk7jvvs6p"><strong>Incident with multple GitHub services</strong> <code>www.githubstatus.com</code></a> - <a href="https://news.ycombinator.com/item?id=47877644">115 comments 236 points</a></li>
<li><a href="https://redirect.github.com/raysan5/raylib/releases/tag/6.0"><strong>Raylib v6.0</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47874854">34 comments 209 points</a></li>
<li><a href="https://blog.meshcore.io/2026/04/23/the-split"><strong>MeshCore development team splits over trademark dispute and AI-generated code</strong> <code>blog.meshcore.io</code></a> - <a href="https://news.ycombinator.com/item?id=47878117">105 comments 203 points</a></li>
<li><a href="https://www.bbc.com/news/articles/c9d4zgnqpqeo"><strong>Girl, 10, finds rare Mexican axolotl under Welsh bridge</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47880189">163 comments 202 points</a></li>
<li><a href="https://nyc.streetsblog.org/2026/04/23/to-protect-and-swerve-nypd-cop-has-527-speeding-tickets-yet-remains-on-the-force"><strong>To Protect and Swerve: NYPD Cop Has 547 Speeding Tickets</strong> <code>nyc.streetsblog.org</code></a> - <a href="https://news.ycombinator.com/item?id=47876647">136 comments 196 points</a></li>
<li><a href="https://redirect.github.com/refactoringhq/tolaria"><strong>Show HN: Tolaria – Open-source macOS app to manage Markdown knowledge bases</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47882697">64 comments 172 points</a></li>
<li><a href="https://www.cnn.com/2026/04/23/politics/us-special-forces-soldier-arrested-maduro-raid-trade"><strong>US special forces soldier arrested after allegedly winning $400k on Maduro raid</strong> <code>www.cnn.com</code></a> - <a href="https://news.ycombinator.com/item?id=47882645">212 comments 161 points</a></li>
<li><a href="https://ar-ms.me/thoughts/c-compiler-1-zig/"><strong>Writing a C Compiler, in Zig (2025)</strong> <code>ar-ms.me</code></a> - <a href="https://news.ycombinator.com/item?id=47873694">43 comments 157 points</a></li>
<li><a href="https://www.bbc.com/news/articles/cdxd0xxp0jko"><strong>US Department of Justice has officially reclassified cannabis as less dangerous</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47875629">197 comments 153 points</a></li>
<li><a href="https://huggingface.co/deepseek-ai/DeepSeek-V4-Pro"><strong>DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence</strong> <code>huggingface.co</code></a> - <a href="https://news.ycombinator.com/item?id=47885014">14 comments 147 points</a></li>
<li><a href="https://joshblais.com/blog/using-the-internet-like-its-1999/"><strong>Using the internet like it's 1999</strong> <code>joshblais.com</code></a> - <a href="https://news.ycombinator.com/item?id=47881198">92 comments 137 points</a></li>
<li><a href="https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/why-i-write/"><strong>Why I Write (1946)</strong> <code>www.orwellfoundation.com</code></a> - <a href="https://news.ycombinator.com/item?id=47884768">26 comments 129 points</a></li>
<li><a href="https://lwn.net/Articles/1069399/"><strong>Ubuntu 26.04</strong> <code>lwn.net</code></a> - <a href="https://news.ycombinator.com/item?id=47885596">54 comments 127 points</a></li>
<li><a href="https://drobinin.com/posts/my-phone-replaced-a-brass-plug/"><strong>My phone replaced a brass plug</strong> <code>drobinin.com</code></a> - <a href="https://news.ycombinator.com/item?id=47877715">23 comments 118 points</a></li>
<li><a href="https://developers.googleblog.com/torchtpu-running-pytorch-natively-on-tpus-at-google-scale/"><strong>TorchTPU: Running PyTorch Natively on TPUs at Google Scale</strong> <code>developers.googleblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=47881786">5 comments 116 points</a></li>
<li><a href="https://skyandtelescope.org/astronomy-news/astronomers-find-the-edge-of-the-milky-way/"><strong>Astronomers find the edge of the Milky Way</strong> <code>skyandtelescope.org</code></a> - <a href="https://news.ycombinator.com/item?id=47879239">25 comments 110 points</a></li>
<li><a href="https://biobank.rocher.lc"><strong>UK Biobank health data keeps ending up on GitHub</strong> <code>biobank.rocher.lc</code></a> - <a href="https://news.ycombinator.com/item?id=47875843">26 comments 107 points</a></li>
<li><a href="https://www.nature.com/articles/s41467-026-71264-8"><strong>Habitual coffee intake shapes the microbiome, modifies physiology and cognition</strong> <code>www.nature.com</code></a> - <a href="https://news.ycombinator.com/item?id=47885377">38 comments 103 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-23]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1316</link>
<guid isPermaLink="false">1316</guid>
<pubDate>Thu, 23 Apr 2026 06:59:18 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/"><strong>Alberta startup sells no-tech tractors for half price</strong> <code>wheelfront.com</code></a> - <a href="https://news.ycombinator.com/item?id=47865868">527 comments 1633 points</a></li>
<li><a href="https://social.hails.org/@hailey/116446826733136456"><strong>Windows 9x Subsystem for Linux</strong> <code>social.hails.org</code></a> - <a href="https://news.ycombinator.com/item?id=47861270">218 comments 935 points</a></li>
<li><a href="https://qwen.ai/blog?id=qwen3.6-27b"><strong>Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model</strong> <code>qwen.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47863217">377 comments 807 points</a></li>
<li><a href="https://fingerprint.com/blog/firefox-tor-indexeddb-privacy-vulnerability/"><strong>We found a stable Firefox identifier linking all your private Tor identities</strong> <code>fingerprint.com</code></a> - <a href="https://news.ycombinator.com/item?id=47866697">167 comments 615 points</a></li>
<li><a href="https://techcrunch.com/2026/04/22/apple-fixes-bug-that-cops-used-to-extract-deleted-chat-messages-from-iphones/"><strong>Apple fixes bug that cops used to extract deleted chat messages from iPhones</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47868867">132 comments 529 points</a></li>
<li><a href="https://cli.github.com/telemetry"><strong>GitHub CLI now collects pseudoanonymous telemetry</strong> <code>cli.github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47862331">318 comments 435 points</a></li>
<li><a href="https://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu-agentic-era/"><strong>Our eighth generation TPUs: two chips for the agentic era</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=47862497">211 comments 429 points</a></li>
<li><a href="https://nrehiew.github.io/blog/minimal_editing/"><strong>Over-editing refers to a model modifying code beyond what is necessary</strong> <code>nrehiew.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47866913">193 comments 343 points</a></li>
<li><a href="https://tech.marksblogg.com/american-solar-farms-v2.html"><strong>3.4M Solar Panels</strong> <code>tech.marksblogg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47862386">234 comments 306 points</a></li>
<li><a href="https://www.adriankrebs.ch/blog/design-slop/"><strong>Scoring Show HN submissions for AI design patterns</strong> <code>www.adriankrebs.ch</code></a> - <a href="https://news.ycombinator.com/item?id=47864393">214 comments 301 points</a></li>
<li><a href="https://martinfowler.com/fragments/2026-04-02.html"><strong>Technical, cognitive, and intent debt</strong> <code>martinfowler.com</code></a> - <a href="https://news.ycombinator.com/item?id=47865661">62 comments 251 points</a></li>
<li><a href="https://flipbook.page/"><strong>Website streamed live directly from a model</strong> <code>flipbook.page</code></a> - <a href="https://news.ycombinator.com/item?id=47867048">68 comments 238 points</a></li>
<li><a href="https://perthirtysix.com/how-the-heck-does-gps-work"><strong>How does GPS work?</strong> <code>perthirtysix.com</code></a> - <a href="https://news.ycombinator.com/item?id=47861087">49 comments 230 points</a></li>
<li><a href="https://www.psu.edu/news/earth-and-mineral-sciences/story/treetops-glowing-during-storms-captured-film-first-time"><strong>Ultraviolet corona discharges on treetops during storms</strong> <code>www.psu.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47863324">64 comments 224 points</a></li>
<li><a href="https://www.theregister.com/2026/04/22/meta_employee_surveillance_software/"><strong>Irony as Meta staff unhappy about running surveillance software on work PCs</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=47860742">169 comments 220 points</a></li>
<li><a href="https://www.nytimes.com/2026/04/22/science/988-youth-suicides-decline.html"><strong>Youth Suicides Declined After Creation of National Hotline</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47865622">136 comments 212 points</a></li>
<li><a href="https://zed.dev/blog/parallel-agents"><strong>Parallel agents in Zed</strong> <code>zed.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47866750">116 comments 212 points</a></li>
<li><a href="https://devblogs.microsoft.com/oldnewthing/20260421-00/?p=112247"><strong>XOR'ing a register with itself is the idiom for zeroing it out. Why not sub?</strong> <code>devblogs.microsoft.com</code></a> - <a href="https://news.ycombinator.com/item?id=47859861">205 comments 208 points</a></li>
<li><a href="https://www.nationsreportcard.gov/highlights/ltt/2023/"><strong>Scores decline again for 13-year-old students in reading and mathematics</strong> <code>www.nationsreportcard.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47867755">264 comments 192 points</a></li>
<li><a href="https://crawshaw.io/blog/building-a-cloud"><strong>I am building a cloud</strong> <code>crawshaw.io</code></a> - <a href="https://news.ycombinator.com/item?id=47872324">44 comments 158 points</a></li>
<li><a href="https://duckdb.org/2026/04/13/announcing-duckdb-152"><strong>DuckDB 1.5.2 – SQL database that runs on laptop, server, in the browser</strong> <code>duckdb.org</code></a> - <a href="https://news.ycombinator.com/item?id=47864454">49 comments 151 points</a></li>
<li><a href="https://arstechnica.com/cars/2026/04/catls-new-lfp-battery-can-charge-from-10-to-98-in-less-than-7-minutes/"><strong>CATL's new LFP battery can charge from 10 to 98% in less than 7 minutes</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=47861703">90 comments 134 points</a></li>
<li><a href="https://openai.com/index/introducing-workspace-agents-in-chatgpt/"><strong>Workspace Agents in ChatGPT</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47866860">49 comments 132 points</a></li>
<li><a href="https://news.alvaroduran.com/p/nobody-got-fired-for-ubers-8-million"><strong>Nobody got fired for Uber's $8M ledger mistake?</strong> <code>news.alvaroduran.com</code></a> - <a href="https://news.ycombinator.com/item?id=47861731">81 comments 123 points</a></li>
<li><a href="https://twitter.com/orsonscottcard/status/2046702294406680751"><strong>You don't need advice from editors on rejected manuscripts</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47860682">72 comments 123 points</a></li>
<li><a href="https://lwn.net/Articles/1068928/"><strong>Kernel code removals driven by LLM-created security reports</strong> <code>lwn.net</code></a> - <a href="https://news.ycombinator.com/item?id=47862230">94 comments 112 points</a></li>
<li><a href="https://www.businessinsider.com/meta-new-ai-tool-tracks-staff-activity-sparks-concern-2026-4"><strong>Meta employees are up in arms over a mandatory program to train AI on their</strong> <code>www.businessinsider.com</code></a> - <a href="https://news.ycombinator.com/item?id=47860961">87 comments 111 points</a></li>
<li><a href="https://lpeproject.org/blog/surveillance-pricing-exploiting-information-asymmetries/"><strong>Surveillance Pricing: Exploiting Information Asymmetries</strong> <code>lpeproject.org</code></a> - <a href="https://news.ycombinator.com/item?id=47866395">46 comments 110 points</a></li>
<li><a href="https://www.reuters.com/sports/ping-pong-robot-ace-makes-history-by-beating-top-level-human-players-2026-04-22/"><strong>Ping-pong robot beats top-level human players</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47864785">113 comments 108 points</a></li>
<li><a href="https://buttondown.com/jaffray/archive/columnar-storage-is-normalization/"><strong>Columnar Storage Is Normalization</strong> <code>buttondown.com</code></a> - <a href="https://news.ycombinator.com/item?id=47862626">37 comments 108 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-22]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1315</link>
<guid isPermaLink="false">1315</guid>
<pubDate>Wed, 22 Apr 2026 06:56:02 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://frame.work/laptop13pro"><strong>Framework Laptop 13 Pro</strong> <code>frame.work</code></a> - <a href="https://news.ycombinator.com/item?id=47852177">583 comments 1148 points</a></li>
<li><a href="https://lawsofsoftwareengineering.com"><strong>Laws of Software Engineering</strong> <code>lawsofsoftwareengineering.com</code></a> - <a href="https://news.ycombinator.com/item?id=47847179">451 comments 929 points</a></li>
<li><a href="https://openai.com/index/introducing-chatgpt-images-2-0/"><strong>ChatGPT Images 2.0</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47852835">543 comments 709 points</a></li>
<li><a href="https://twitter.com/spacex/status/2046713419978453374"><strong>SpaceX says it has agreement to acquire Cursor for $60B</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47855293">617 comments 511 points</a></li>
<li><a href="https://bsky.app/profile/edzitron.com/post/3mjzxwfx3qs2a"><strong>Claude Code to be removed from Anthropic's Pro plan?</strong> <code>bsky.app</code></a> - <a href="https://news.ycombinator.com/item?id=47854477">486 comments 500 points</a></li>
<li><a href="https://www.reuters.com/sustainability/boards-policy-regulation/meta-start-capturing-employee-mouse-movements-keystrokes-ai-training-data-2026-04-21/"><strong>Meta to start capturing employee mouse movements, keystrokes for AI training</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47851948">356 comments 479 points</a></li>
<li><a href="https://stratechery.com/2026/tim-cooks-impeccable-timing/"><strong>Tim Cook's Impeccable Timing</strong> <code>stratechery.com</code></a> - <a href="https://news.ycombinator.com/item?id=47847324">390 comments 324 points</a></li>
<li><a href="https://www.trendmicro.com/en_us/research/26/d/vercel-breach-oauth-supply-chain.html"><strong>The Vercel breach: OAuth attack exposes risk in platform environment variables</strong> <code>www.trendmicro.com</code></a> - <a href="https://news.ycombinator.com/item?id=47851634">105 comments 302 points</a></li>
<li><a href="https://techcrunch.com/2026/04/20/anthropic-takes-5b-from-amazon-and-pledges-100b-in-cloud-spending-in-return/"><strong>Anthropic takes $5B from Amazon and pledges $100B in cloud spending in return</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47848276">280 comments 269 points</a></li>
<li><a href="https://britannica11.org/"><strong>Britannica11.org – a structured edition of the 1911 Encyclopædia Britannica</strong> <code>britannica11.org</code></a> - <a href="https://news.ycombinator.com/item?id=47851885">94 comments 269 points</a></li>
<li><a href="https://vidstudio.app/video-editor"><strong>Show HN: VidStudio, a browser based video editor that doesn't upload your files</strong> <code>vidstudio.app</code></a> - <a href="https://news.ycombinator.com/item?id=47847558">86 comments 266 points</a></li>
<li><a href="https://bsky.app/profile/edzitron.com/post/3mjzxwfx3qs2a"><strong>Claude Code to be removed from Pro Tier?</strong> <code>bsky.app</code></a> - <a href="https://news.ycombinator.com/item?id=47855565">2 comments 263 points</a></li>
<li><a href="https://discuss.grapheneos.org/d/34369-original-grapheneos-responses-to-wired-fact-checker"><strong>Original GrapheneOS responses to WIRED fact checker</strong> <code>discuss.grapheneos.org</code></a> - <a href="https://news.ycombinator.com/item?id=47849854">205 comments 252 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47857461"><strong>Tell HN: I'm sick of AI everything</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47857461">129 comments 239 points</a></li>
<li><a href="https://fsfe.org/news/2026/news-20260420-01.html"><strong>Apple ignores DMA interoperability requests and contradicts own documentation</strong> <code>fsfe.org</code></a> - <a href="https://news.ycombinator.com/item?id=47847124">54 comments 226 points</a></li>
<li><a href="https://dpc.pw/posts/i-dont-want-your-prs-anymore/"><strong>I don't want your PRs anymore</strong> <code>dpc.pw</code></a> - <a href="https://news.ycombinator.com/item?id=47854051">129 comments 217 points</a></li>
<li><a href="https://www.worseonpurpose.com/p/your-favorite-brands-got-worse-on-purpose"><strong>Brands got worse on purpose</strong> <code>www.worseonpurpose.com</code></a> - <a href="https://news.ycombinator.com/item?id=47849221">163 comments 214 points</a></li>
<li><a href="https://redirect.github.com/calcom/cal.diy"><strong>Cal.diy: open-source community edition of cal.com</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47852155">47 comments 185 points</a></li>
<li><a href="https://www.kpbs.org/news/economy/2026/03/27/san-diego-rents-declined-more-than-19-of-nations-top-20-markets-following-surge-in-supply"><strong>San Diego rents declined following surge in supply</strong> <code>www.kpbs.org</code></a> - <a href="https://news.ycombinator.com/item?id=47857477">138 comments 174 points</a></li>
<li><a href="https://redirect.github.com/ENTERPILOT/GOModel/"><strong>Show HN: GoModel – an open-source AI gateway in Go</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47849097">63 comments 172 points</a></li>
<li><a href="https://cheesemap.netlify.app/"><strong>A Periodic Map of Cheese</strong> <code>cheesemap.netlify.app</code></a> - <a href="https://news.ycombinator.com/item?id=47851077">73 comments 157 points</a></li>
<li><a href="https://codemix.com/graph"><strong>A type-safe, realtime collaborative Graph Database in a CRDT</strong> <code>codemix.com</code></a> - <a href="https://news.ycombinator.com/item?id=47846946">44 comments 157 points</a></li>
<li><a href="https://www.bbc.co.uk/news/articles/cn08jy6w0l5o"><strong>Smoking ban for people born after 2008 in the UK agreed</strong> <code>www.bbc.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=47847240">361 comments 152 points</a></li>
<li><a href="https://www.fusionenergybase.com/fusion-power-plant-simulator"><strong>Fusion Power Plant Simulator</strong> <code>www.fusionenergybase.com</code></a> - <a href="https://news.ycombinator.com/item?id=47849315">92 comments 145 points</a></li>
<li><a href="https://openai.com/index/introducing-chatgpt-images-2-0/"><strong>ChatGPT Images 2.0</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47853000">1 comments 144 points</a></li>
<li><a href="https://nial.se/blog/less-human-ai-agents-please/"><strong>Less human AI agents, please</strong> <code>nial.se</code></a> - <a href="https://news.ycombinator.com/item?id=47845429">152 comments 142 points</a></li>
<li><a href="https://e360.yale.edu/digest/great-white-sharks-climate"><strong>As oceans warm, great white sharks are overheating</strong> <code>e360.yale.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47849592">130 comments 124 points</a></li>
<li><a href="https://icv2.com/articles/news/view/62176/r-i-p-louis-zocchi-the-godfather-dice"><strong>Louis Zocchi, games industry pioneer, has died</strong> <code>icv2.com</code></a> - <a href="https://news.ycombinator.com/item?id=47845231">52 comments 124 points</a></li>
<li><a href="https://luminousmen.substack.com/p/drunk-post-things-ive-learned-as"><strong>Drunk post: Things I've learned as a senior engineer (2021)</strong> <code>luminousmen.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47856535">67 comments 115 points</a></li>
<li><a href="https://respublica.media/en/en-sudan-abandoned-war-genocide-no-one-stopping/"><strong>The abandoned war: Why no one is stopping the genocide in Sudan</strong> <code>respublica.media</code></a> - <a href="https://news.ycombinator.com/item?id=47847928">155 comments 113 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-21]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1314</link>
<guid isPermaLink="false">1314</guid>
<pubDate>Tue, 21 Apr 2026 06:56:33 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.apple.com/newsroom/2026/04/tim-cook-to-become-apple-executive-chairman-john-ternus-to-become-apple-ceo/"><strong>John Ternus to become Apple CEO</strong> <code>www.apple.com</code></a> - <a href="https://news.ycombinator.com/item?id=47840219">788 comments 1607 points</a></li>
<li><a href="https://www.theolivepress.es/spain-news/2026/04/20/eu-to-force-replaceable-batteries-in-phones-and-tablets-from-2027/"><strong>All phones sold in the EU to have replaceable batteries from 2027</strong> <code>www.theolivepress.es</code></a> - <a href="https://news.ycombinator.com/item?id=47834195">964 comments 1153 points</a></li>
<li><a href="https://awesomeagents.ai/news/github-fake-stars-investigation/"><strong>GitHub's fake star economy</strong> <code>awesomeagents.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47831621">360 comments 764 points</a></li>
<li><a href="https://www.kimi.com/blog/kimi-k2-6"><strong>Kimi K2.6: Advancing open-source coding</strong> <code>www.kimi.com</code></a> - <a href="https://news.ycombinator.com/item?id=47835735">329 comments 631 points</a></li>
<li><a href="https://qwen.ai/blog?id=qwen3.6-max-preview"><strong>Qwen3.6-Max-Preview: Smarter, Sharper, Still Evolving</strong> <code>qwen.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47834565">320 comments 600 points</a></li>
<li><a href="https://theonion.com/at-long-last-infowars-is-ours/"><strong>At long last, InfoWars is ours</strong> <code>theonion.com</code></a> - <a href="https://news.ycombinator.com/item?id=47837611">281 comments 571 points</a></li>
<li><a href="https://letsdatascience.com/news/atlassian-enables-default-data-collection-to-train-ai-f71343d8"><strong>Atlassian enables default data collection to train AI</strong> <code>letsdatascience.com</code></a> - <a href="https://news.ycombinator.com/item?id=47833247">124 comments 559 points</a></li>
<li><a href="https://www.axios.com/2026/04/19/nsa-anthropic-mythos-pentagon"><strong>NSA is using Anthropic's Mythos despite blacklist</strong> <code>www.axios.com</code></a> - <a href="https://news.ycombinator.com/item?id=47832222">319 comments 455 points</a></li>
<li><a href="https://tryterra.co/research/sauna-effect-on-heart-rate"><strong>Sauna effect on heart rate</strong> <code>tryterra.co</code></a> - <a href="https://news.ycombinator.com/item?id=47834184">214 comments 408 points</a></li>
<li><a href="https://opensource.posit.co/blog/2026-04-20_ggsql_alpha_release/"><strong>ggsql: A Grammar of Graphics for SQL</strong> <code>opensource.posit.co</code></a> - <a href="https://news.ycombinator.com/item?id=47833558">78 comments 395 points</a></li>
<li><a href="https://stephvee.ca/blog/artificial%20intelligence/ai-resistance-is-growing/"><strong>AI Resistance: some recent anti-AI stuff that’s worth discussing</strong> <code>stephvee.ca</code></a> - <a href="https://news.ycombinator.com/item?id=47839951">339 comments 348 points</a></li>
<li><a href="https://techcrunch.com/2026/04/20/deezer-says-44-of-songs-uploaded-to-its-platform-daily-are-ai-generated/"><strong>Deezer says 44% of songs uploaded to its platform daily are AI-generated</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47835928">334 comments 335 points</a></li>
<li><a href="https://www.rts.ch/info/monde/2026/article/tesla-dissimule-des-milliers-d-incidents-de-conduite-autonome-mortels-29214161.html"><strong>Tesla concealed fatal accidents to continue testing autonomous driving</strong> <code>www.rts.ch</code></a> - <a href="https://news.ycombinator.com/item?id=47833156">189 comments 313 points</a></li>
<li><a href="https://vivianvoss.net/blog/why-we-accepted-surveillance"><strong>We accepted surveillance as default</strong> <code>vivianvoss.net</code></a> - <a href="https://news.ycombinator.com/item?id=47836730">132 comments 301 points</a></li>
<li><a href="https://www.androidauthority.com/amazon-kindle-2026-3657863/"><strong>Not buying another Kindle</strong> <code>www.androidauthority.com</code></a> - <a href="https://news.ycombinator.com/item?id=47835775">233 comments 299 points</a></li>
<li><a href="https://www.flyingpenguin.com/build-an-openclaw-free-secure-always-on-local-ai-agent/"><strong>OpenClaw isn't fooling me. I remember MS-DOS</strong> <code>www.flyingpenguin.com</code></a> - <a href="https://news.ycombinator.com/item?id=47831437">310 comments 285 points</a></li>
<li><a href="https://earthquake.usgs.gov/earthquakes/eventpage/us6000sri7/"><strong>M 7.4 earthquake – 100 km ENE of Miyako, Japan</strong> <code>earthquake.usgs.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47832248">129 comments 278 points</a></li>
<li><a href="https://www.adweek.com/media/exclusive-leaked-deck-reveals-stackadapts-playbook-for-chatgpt-ads/"><strong>OpenAI ad partner now selling ChatGPT ad placements based on “prompt relevance”</strong> <code>www.adweek.com</code></a> - <a href="https://news.ycombinator.com/item?id=47840980">127 comments 257 points</a></li>
<li><a href="https://warontherocks.com/cogs-of-war/the-f-35-is-a-masterpiece-built-for-the-wrong-war/"><strong>F-35 is built for the wrong war</strong> <code>warontherocks.com</code></a> - <a href="https://news.ycombinator.com/item?id=47839835">515 comments 252 points</a></li>
<li><a href="https://redirect.github.com/ArcaneNibble/awawausb"><strong>WebUSB Extension for Firefox</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47832969">202 comments 232 points</a></li>
<li><a href="https://www.kimi.com/blog/kimi-vendor-verifier"><strong>Kimi vendor verifier – verify accuracy of inference providers</strong> <code>www.kimi.com</code></a> - <a href="https://news.ycombinator.com/item?id=47838703">20 comments 229 points</a></li>
<li><a href="https://reason.com/2026/04/20/this-big-tech-firm-wants-to-reinstate-the-draft/"><strong>Palantir Wants to Reinstate the Draft</strong> <code>reason.com</code></a> - <a href="https://news.ycombinator.com/item?id=47836463">226 comments 211 points</a></li>
<li><a href="https://isaaccorbrey.com/notes/jujutsu-megamerges-for-fun-and-profit"><strong>Jujutsu megamerges for fun and profit</strong> <code>isaaccorbrey.com</code></a> - <a href="https://news.ycombinator.com/item?id=47841129">85 comments 208 points</a></li>
<li><a href="https://www.politico.eu/article/eu-brussels-launched-age-checking-app-hackers-say-took-them-2-minutes-break-it/"><strong>Brussels launched an age checking app. Hackers took 2 minutes to break it</strong> <code>www.politico.eu</code></a> - <a href="https://news.ycombinator.com/item?id=47831742">89 comments 197 points</a></li>
<li><a href="https://words.filippo.io/128-bits/"><strong>Quantum Computers Are Not a Threat to 128-Bit Symmetric Keys</strong> <code>words.filippo.io</code></a> - <a href="https://news.ycombinator.com/item?id=47836784">74 comments 197 points</a></li>
<li><a href="https://redirect.github.com/Luce-Org/lucebox-hub"><strong>We got 207 tok/s with Qwen3.5-27B on an RTX 3090</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47838788">44 comments 164 points</a></li>
<li><a href="https://electrek.co/2026/04/19/iea-solar-overtakes-all-energy-sources-in-a-major-global-first/"><strong>IEA: Solar overtakes all energy sources in a major global first</strong> <code>electrek.co</code></a> - <a href="https://news.ycombinator.com/item?id=47831272">115 comments 162 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47834213"><strong>Ask HN: How to solve the cold start problem for a two-sided marketplace?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47834213">152 comments 136 points</a></li>
<li><a href="https://zef-lang.dev/implementation"><strong>How to make a fast dynamic language interpreter</strong> <code>zef-lang.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47843194">17 comments 130 points</a></li>
<li><a href="https://surfacedby.com/blog/nginx-logs-ai-traffic-vs-referral-traffic"><strong>I prompted ChatGPT, Claude, Perplexity, and Gemini and watched my Nginx logs</strong> <code>surfacedby.com</code></a> - <a href="https://news.ycombinator.com/item?id=47835646">22 comments 129 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-20]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1313</link>
<guid isPermaLink="false">1313</guid>
<pubDate>Mon, 20 Apr 2026 07:44:32 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.bleepingcomputer.com/news/security/vercel-confirms-breach-as-hackers-claim-to-be-selling-stolen-data/"><strong>Vercel April 2026 security incident</strong> <code>www.bleepingcomputer.com</code></a> - <a href="https://news.ycombinator.com/item?id=47824463">397 comments 709 points</a></li>
<li><a href="https://decipher.sc/2026/04/19/vercel-says-internal-systems-hit-in-breach/"><strong>Vercel says internal systems hit in breach</strong> <code>decipher.sc</code></a> - <a href="https://news.ycombinator.com/item?id=47824976">2 comments 377 points</a></li>
<li><a href="https://twitter.com/weezerOSINT/status/2045849358462222720"><strong>Notion leaks email addresses of all editors of any public page</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47824945">130 comments 365 points</a></li>
<li><a href="https://madhadron.com/programming/seven_ur_languages.html"><strong>The seven programming ur-languages (2022)</strong> <code>madhadron.com</code></a> - <a href="https://news.ycombinator.com/item?id=47822486">128 comments 325 points</a></li>
<li><a href="https://simonwillison.net/2026/Apr/18/opus-system-prompt/"><strong>Changes in the system prompt between Claude Opus 4.6 and 4.7</strong> <code>simonwillison.net</code></a> - <a href="https://news.ycombinator.com/item?id=47823270">173 comments 298 points</a></li>
<li><a href="https://www.theverge.com/ai-artificial-intelligence/914672/the-ram-shortage-could-last-years"><strong>The RAM shortage could last years</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=47822414">304 comments 273 points</a></li>
<li><a href="https://www.lbc.co.uk/article/dubai-police-spied-private-whatsapp-5HjdXwr_2/"><strong>Airline worker arrested after sharing photos of bomb damage in WhatsApp group</strong> <code>www.lbc.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=47824068">176 comments 267 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47822940"><strong>Ask HN: How did you land your first projects as a solo engineer/consultant?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47822940">118 comments 258 points</a></li>
<li><a href="https://www.bbc.com/news/articles/cge0grppe3po"><strong>The insider trading suspicions looming over Trump's presidency</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47829486">122 comments 238 points</a></li>
<li><a href="https://www.theverge.com/tech/913765/adobe-rivals-free-creative-software-app-updates"><strong>The creative software industry has declared war on Adobe</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=47824403">161 comments 210 points</a></li>
<li><a href="https://www.swissinfo.ch/eng/swiss-ai/swiss-authorities-want-to-reduce-dependency-on-microsoft/91280532"><strong>Swiss authorities want to reduce dependency on Microsoft</strong> <code>www.swissinfo.ch</code></a> - <a href="https://news.ycombinator.com/item?id=47827383">83 comments 209 points</a></li>
<li><a href="https://www.pcgamer.com/games/world-of-warcraft/turtle-wow-classic-server-announces-shutdown-after-blizzard-wins-injunction/"><strong>Turtle WoW classic server announces shutdown after Blizzard wins injunction</strong> <code>www.pcgamer.com</code></a> - <a href="https://news.ycombinator.com/item?id=47825160">179 comments 207 points</a></li>
<li><a href="https://warontherocks.com/cogs-of-war/the-bromine-chokepoint-how-strife-in-the-middle-east-could-halt-production-of-the-worlds-memory-chips/"><strong>The Bromine Chokepoint</strong> <code>warontherocks.com</code></a> - <a href="https://news.ycombinator.com/item?id=47826100">98 comments 196 points</a></li>
<li><a href="https://www.eff.org/deeplinks/2026/04/keep-pushing-we-get-10-more-days-reform-section-702"><strong>Keep Pushing: We Get 10 More Days to Reform Section 702</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=47822356">41 comments 179 points</a></li>
<li><a href="https://ashley.rolfmore.com/stop-trying-to-engineer-your-way-out-of-listening-to-people/"><strong>Stop trying to engineer your way out of listening to people</strong> <code>ashley.rolfmore.com</code></a> - <a href="https://news.ycombinator.com/item?id=47827259">65 comments 176 points</a></li>
<li><a href="https://www.usenix.org/system/files/conference/woot17/woot17-paper-guri.pdf"><strong>SPEAKE(a)R: Turn Speakers to Microphones for Fun and Profit [pdf] (2017)</strong> <code>www.usenix.org</code></a> - <a href="https://news.ycombinator.com/item?id=47822805">69 comments 175 points</a></li>
<li><a href="https://www.legalnomads.com/fish-sauce/"><strong>A Brief History of Fish Sauce</strong> <code>www.legalnomads.com</code></a> - <a href="https://news.ycombinator.com/item?id=47822734">65 comments 167 points</a></li>
<li><a href="https://mxmap.ch/"><strong>2,100 Swiss municipalities showing which provider handles their official email</strong> <code>mxmap.ch</code></a> - <a href="https://news.ycombinator.com/item?id=47828420">43 comments 157 points</a></li>
<li><a href="https://www.reuters.com/legal/government/ex-ceo-ex-cfo-bankrupt-ai-company-charged-with-fraud-2026-04-17/"><strong>Ex-CEO, ex-CFO of iLearningEngines charged with fraud</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47828225">64 comments 153 points</a></li>
<li><a href="https://redirect.github.com/shivampkumar/trellis-mac"><strong>Show HN: Run TRELLIS.2 Image-to-3D generation natively on Apple Silicon</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47828896">24 comments 146 points</a></li>
<li><a href="https://12gramsofcarbon.com/p/notes-from-the-sf-peptide-scene"><strong>Notes from the SF peptide scene</strong> <code>12gramsofcarbon.com</code></a> - <a href="https://news.ycombinator.com/item?id=47824681">134 comments 130 points</a></li>
<li><a href="https://www.ctvnews.ca/politics/article/pm-carney-declares-us-ties-now-a-weakness-in-address-to-canadians/"><strong>PM Carney declares U.S. ties now a 'weakness' in address to Canadians</strong> <code>www.ctvnews.ca</code></a> - <a href="https://news.ycombinator.com/item?id=47825423">94 comments 124 points</a></li>
<li><a href="https://teamchong.github.io/turboquant-wasm/draw.html"><strong>Show HN: Prompt-to-Excalidraw demo with Gemma 4 E2B in the browser (3.1GB)</strong> <code>teamchong.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47823460">47 comments 123 points</a></li>
<li><a href="https://www.vincentgregoire.com/faceoff/"><strong>Show HN: Faceoff – A terminal UI for following NHL games</strong> <code>www.vincentgregoire.com</code></a> - <a href="https://news.ycombinator.com/item?id=47826104">37 comments 112 points</a></li>
<li><a href="https://daverupert.com/2026/04/more-talk-less-grok/"><strong>When moving fast, talking is the first thing to break</strong> <code>daverupert.com</code></a> - <a href="https://news.ycombinator.com/item?id=47824611">49 comments 111 points</a></li>
<li><a href="https://theins.press/en/inv/291614"><strong>Russia's doping program is run by the same FSB team that poisoned Navalny</strong> <code>theins.press</code></a> - <a href="https://news.ycombinator.com/item?id=47824874">76 comments 93 points</a></li>
<li><a href="https://bannedbyanthropic.com/"><strong>Banned by Anthropic?</strong> <code>bannedbyanthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47828249">64 comments 93 points</a></li>
<li><a href="https://finance.yahoo.com/sectors/technology/articles/ubers-anthropic-ai-push-hits-223109852.html"><strong>Uber’s Anthropic AI push hits a wall</strong> <code>finance.yahoo.com</code></a> - <a href="https://news.ycombinator.com/item?id=47826328">93 comments 91 points</a></li>
<li><a href="https://www.sciencedetective.org/scientific-datasets-are-riddled-with-copy-paste-errors/"><strong>Scientific datasets are riddled with copy-paste errors</strong> <code>www.sciencedetective.org</code></a> - <a href="https://news.ycombinator.com/item?id=47826834">22 comments 87 points</a></li>
<li><a href="https://paulkrugman.substack.com/p/maga-is-winning-its-war-against-us"><strong>MAGA Is Winning Its War Against U.S. Science</strong> <code>paulkrugman.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47826977">30 comments 86 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-19]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1312</link>
<guid isPermaLink="false">1312</guid>
<pubDate>Sun, 19 Apr 2026 06:27:42 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://isayeter.com/posts/digitalocean-to-hetzner-migration/"><strong>Migrating from DigitalOcean to Hetzner</strong> <code>isayeter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47815774">373 comments 730 points</a></li>
<li><a href="https://tokens.billchambers.me/leaderboard"><strong>Anonymous request-token comparisons from Opus 4.6 and Opus 4.7</strong> <code>tokens.billchambers.me</code></a> - <a href="https://news.ycombinator.com/item?id=47816960">484 comments 483 points</a></li>
<li><a href="https://kdenlive.org/news/2026/state-2026/"><strong>State of Kdenlive</strong> <code>kdenlive.org</code></a> - <a href="https://news.ycombinator.com/item?id=47815118">118 comments 367 points</a></li>
<li><a href="https://worksinprogress.co/issue/why-japan-has-such-good-railways/"><strong>Why Japan has such good railways</strong> <code>worksinprogress.co</code></a> - <a href="https://news.ycombinator.com/item?id=47815395">353 comments 358 points</a></li>
<li><a href="https://www.righto.com/2026/04/B-52-star-tracker-angle-computer.html"><strong>The electromechanical angle computer inside the B-52 bomber's star tracker</strong> <code>www.righto.com</code></a> - <a href="https://news.ycombinator.com/item?id=47817132">87 comments 308 points</a></li>
<li><a href="https://www.theguardian.com/world/2026/apr/18/iran-war-bets-ethics-concerns"><strong>Traders placed over $1B in perfectly timed bets on the Iran war</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47818305">197 comments 285 points</a></li>
<li><a href="https://samhenri.gold/blog/20260418-claude-design/"><strong>Thoughts and feelings around Claude Design</strong> <code>samhenri.gold</code></a> - <a href="https://news.ycombinator.com/item?id=47818700">179 comments 276 points</a></li>
<li><a href="https://www.nist.gov/news-events/news/2026/04/any-color-you-nist-scientists-create-any-wavelength-lasers-tiny-circuits"><strong>NIST scientists create 'any wavelength' lasers</strong> <code>www.nist.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47819453">109 comments 253 points</a></li>
<li><a href="https://amiga.lychesis.net/"><strong>Amiga Graphics Archive</strong> <code>amiga.lychesis.net</code></a> - <a href="https://news.ycombinator.com/item?id=47813566">77 comments 246 points</a></li>
<li><a href="https://abuseofnotation.github.io/category-theory-illustrated/04_order/"><strong>Category Theory Illustrated – Orders</strong> <code>abuseofnotation.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47813668">60 comments 238 points</a></li>
<li><a href="https://sentinelcolorado.com/uncategorized/a-college-instructor-turns-to-typewriters-to-curb-ai-written-work-and-teach-life-lessons/"><strong>College instructor turns to typewriters to curb AI-written work</strong> <code>sentinelcolorado.com</code></a> - <a href="https://news.ycombinator.com/item?id=47818485">204 comments 229 points</a></li>
<li><a href="https://bigthink.com/mind-behavior/the-quiet-disappearance-of-the-free-range-childhood/"><strong>The quiet disappearance of the free-range childhood</strong> <code>bigthink.com</code></a> - <a href="https://news.ycombinator.com/item?id=47815127">225 comments 209 points</a></li>
<li><a href="https://goodereader.com/blog/kindle/amazon-is-discontinuing-kindle-for-pc-on-june-30th"><strong>Amazon is discontinuing Kindle for PC on June 30th</strong> <code>goodereader.com</code></a> - <a href="https://news.ycombinator.com/item?id=47816878">119 comments 138 points</a></li>
<li><a href="https://science.nasa.gov/blogs/voyager/2026/04/17/nasa-shuts-off-instrument-on-voyager-1-to-keep-spacecraft-operating/"><strong>NASA Shuts Off Instrument on Voyager 1 to Keep Spacecraft Operating</strong> <code>science.nasa.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47820531">59 comments 135 points</a></li>
<li><a href="https://www.bbc.com/future/article/20260417-fatherhood-how-the-male-brain-and-body-prepare-for-childcare"><strong>Dad brains: How fatherhood rewires the male mind</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47820046">95 comments 123 points</a></li>
<li><a href="https://redirect.github.com/NikolayS/pgque"><strong>PgQue: Zero-Bloat Postgres Queue</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47817349">30 comments 108 points</a></li>
<li><a href="https://redirect.github.com/drasimwagan/mdv"><strong>Show HN: MDV – a Markdown superset for docs, dashboards, and slides with data</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47816629">39 comments 107 points</a></li>
<li><a href="https://geohot.github.io//blog/jekyll/update/2026/04/18/america-mandate-of-heaven.html"><strong>America Lost the Mandate of Heaven</strong> <code>geohot.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47814073">104 comments 96 points</a></li>
<li><a href="https://www.fuzix.org/"><strong>Fuzix OS</strong> <code>www.fuzix.org</code></a> - <a href="https://news.ycombinator.com/item?id=47816625">23 comments 93 points</a></li>
<li><a href="https://redirect.github.com/becarpenter/misc/blob/main/why6why.md"><strong>Why is IPv6 so complicated?</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47813631">192 comments 92 points</a></li>
<li><a href="https://spectrum.ieee.org/state-of-ai-index-2026"><strong>Graphs that explain the state of AI in 2026</strong> <code>spectrum.ieee.org</code></a> - <a href="https://news.ycombinator.com/item?id=47817581">52 comments 84 points</a></li>
<li><a href="https://byroot.github.io/ruby/performance/2026/04/18/faster-paths.html"><strong>Optimizing Ruby Path Methods</strong> <code>byroot.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47819369">27 comments 84 points</a></li>
<li><a href="https://ipvm.com/reports/flock-allegations-critics"><strong>Flock Condemns False Child Predator Allegations, Yet Calls Critics Terrorists</strong> <code>ipvm.com</code></a> - <a href="https://news.ycombinator.com/item?id=47815269">30 comments 81 points</a></li>
<li><a href="https://mas.to/@carnage4life/116422881496195720"><strong>"Liberation Day" at OpenAI as multiple senior executives announce leaving</strong> <code>mas.to</code></a> - <a href="https://news.ycombinator.com/item?id=47813428">13 comments 80 points</a></li>
<li><a href="https://apps.npr.org/plant-hardiness-garden-map/"><strong>The USDA's gardening zones have shifted. (Interactive app and map) (2024)</strong> <code>apps.npr.org</code></a> - <a href="https://news.ycombinator.com/item?id=47817179">10 comments 80 points</a></li>
<li><a href="https://arstechnica.com/gadgets/2026/04/amazon-wont-release-fire-sticks-that-support-sideloading-anymore/"><strong>Amazon won't release Fire Sticks that support sideloading anymore</strong> <code>arstechnica.com</code></a> - <a href="https://news.ycombinator.com/item?id=47816954">82 comments 75 points</a></li>
<li><a href="https://economist.com/leaders/2026/04/16/america-will-come-to-regret-its-war-on-taxes"><strong>America will come to regret its war on taxes</strong> <code>economist.com</code></a> - <a href="https://news.ycombinator.com/item?id=47818289">127 comments 69 points</a></li>
<li><a href="https://runxiyu.org/comp/doubleslash/"><strong>It is incorrect to "normalize" // in HTTP URL paths</strong> <code>runxiyu.org</code></a> - <a href="https://news.ycombinator.com/item?id=47813454">61 comments 65 points</a></li>
<li><a href="https://abacusnoir.com/2026/04/18/zero-copy-gpu-inference-from-webassembly-on-apple-silicon/"><strong>Zero-Copy GPU Inference from WebAssembly on Apple Silicon</strong> <code>abacusnoir.com</code></a> - <a href="https://news.ycombinator.com/item?id=47820195">21 comments 60 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47814832"><strong>Claude Code Opus 4.7 keeps checking on malware</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47814832">56 comments 59 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-18]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1311</link>
<guid isPermaLink="false">1311</guid>
<pubDate>Sat, 18 Apr 2026 06:12:52 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.anthropic.com/news/claude-design-anthropic-labs"><strong>Claude Design</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47806725">635 comments 963 points</a></li>
<li><a href="https://hex.ooo/library/last_question.html"><strong>Isaac Asimov: The Last Question (1956)</strong> <code>hex.ooo</code></a> - <a href="https://news.ycombinator.com/item?id=47804965">272 comments 689 points</a></li>
<li><a href="https://www.lawfaremedia.org/article/it-is-time-to-ban-the-sale-of-precise-geolocation"><strong>Ban the sale of precise geolocation</strong> <code>www.lawfaremedia.org</code></a> - <a href="https://news.ycombinator.com/item?id=47806304">172 comments 669 points</a></li>
<li><a href="https://www.claudecodecamp.com/p/i-measured-claude-4-7-s-new-tokenizer-here-s-what-it-costs-you"><strong>Measuring Claude 4.7's tokenizer costs</strong> <code>www.claudecodecamp.com</code></a> - <a href="https://news.ycombinator.com/item?id=47807006">402 comments 576 points</a></li>
<li><a href="https://redirect.github.com/smol-machines/smolvm"><strong>Show HN: Smol machines – subsecond coldstart, portable virtual machines</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47808268">92 comments 297 points</a></li>
<li><a href="https://www.esa.int/Science_Exploration/Human_and_Robotic_Exploration/The_toxic_side_of_the_Moon"><strong>All 12 moonwalkers had "lunar hay fever" from dust smelling like gunpowder (2018)</strong> <code>www.esa.int</code></a> - <a href="https://news.ycombinator.com/item?id=47808913">167 comments 296 points</a></li>
<li><a href="https://www.iqiipi.com/the-quiet-colossus.html"><strong>Ada, its design, and the language that built the languages</strong> <code>www.iqiipi.com</code></a> - <a href="https://news.ycombinator.com/item?id=47803844">181 comments 260 points</a></li>
<li><a href="https://nasaforce.gov/"><strong>NASA Force</strong> <code>nasaforce.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47807209">260 comments 256 points</a></li>
<li><a href="https://www.thehistoryblog.com/archives/75848"><strong>Middle schooler finds coin from Troy in Berlin</strong> <code>www.thehistoryblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=47806484">99 comments 219 points</a></li>
<li><a href="https://electrek.co/2026/04/17/tesla-hw3-owners-be-patient-7-years-fsd/"><strong>Tesla tells HW3 owner to 'be patient' after 7 years of waiting for FSD</strong> <code>electrek.co</code></a> - <a href="https://news.ycombinator.com/item?id=47809347">146 comments 195 points</a></li>
<li><a href="https://risky.biz/risky-bulletin-nist-gives-up-enriching-most-cves/"><strong>NIST gives up enriching most CVEs</strong> <code>risky.biz</code></a> - <a href="https://news.ycombinator.com/item?id=47806777">44 comments 190 points</a></li>
<li><a href="https://www.theguardian.com/world/2026/apr/16/israel-escalates-attacks-on-medics-in-lebanon-with-deadly-quadruple-tap"><strong>Israel escalates attacks on medics in Lebanon with deadly 'quadruple tap'</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47806596">113 comments 189 points</a></li>
<li><a href="https://www.investigate-europe.eu/posts/big-tech-data-centres-secrecy-eu-law-environment-footprint"><strong>How Big Tech wrote secrecy into EU law to hide data centres' environmental toll</strong> <code>www.investigate-europe.eu</code></a> - <a href="https://news.ycombinator.com/item?id=47803745">63 comments 179 points</a></li>
<li><a href="https://redirect.github.com/paniclock/paniclock/"><strong>Show HN: PanicLock – Close your MacBook lid disable TouchID –> password unlock</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47807809">67 comments 172 points</a></li>
<li><a href="https://twitter.com/finmoorhouse/status/2044933442236776794"><strong>Hyperscalers have already outspent most famous US megaprojects</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47807619">136 comments 171 points</a></li>
<li><a href="https://miguelconner.substack.com/p/im-coding-by-hand"><strong>Spending 3 months coding by hand</strong> <code>miguelconner.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47807583">174 comments 169 points</a></li>
<li><a href="https://blog.healthchecks.io/2026/04/healthchecks-io-now-uses-self-hosted-object-storage/"><strong>Healthchecks.io now uses self-hosted object storage</strong> <code>blog.healthchecks.io</code></a> - <a href="https://news.ycombinator.com/item?id=47806348">67 comments 161 points</a></li>
<li><a href="https://www.corsix.org/content/simplified-model-of-fil-c"><strong>A simplified model of Fil-C</strong> <code>www.corsix.org</code></a> - <a href="https://news.ycombinator.com/item?id=47810872">73 comments 151 points</a></li>
<li><a href="https://blog.calif.io/p/mad-bugs-even-cat-readmetxt-is-not"><strong>"cat readme.txt" is not safe if you use iTerm2</strong> <code>blog.calif.io</code></a> - <a href="https://news.ycombinator.com/item?id=47809190">78 comments 150 points</a></li>
<li><a href="https://awnist.com/slop-cop"><strong>Slop Cop</strong> <code>awnist.com</code></a> - <a href="https://news.ycombinator.com/item?id=47806845">85 comments 143 points</a></li>
<li><a href="https://prologue.blogs.archives.gov/2010/11/09/teddy-roosevelt-and-abraham-lincoln-in-the-same-photo/"><strong>Teddy Roosevelt and Abraham Lincoln in the same photo (2010)</strong> <code>prologue.blogs.archives.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47803992">45 comments 141 points</a></li>
<li><a href="https://www.nongnu.org/fbi-improved/"><strong>FIM – Linux framebuffer image viewer</strong> <code>www.nongnu.org</code></a> - <a href="https://news.ycombinator.com/item?id=47803323">76 comments 140 points</a></li>
<li><a href="https://www.thenation.com/article/society/ai-silicon-valley-andreesen-thiel-stem/"><strong>Silicon Valley is turning scientists into exploited gig workers?</strong> <code>www.thenation.com</code></a> - <a href="https://news.ycombinator.com/item?id=47804708">100 comments 118 points</a></li>
<li><a href="https://www.iceye.com/open-data-initiative"><strong>Experiment with ICEYE Open Data</strong> <code>www.iceye.com</code></a> - <a href="https://news.ycombinator.com/item?id=47806440">14 comments 110 points</a></li>
<li><a href="https://isitagentready.com"><strong>Scan your website to see how ready it is for AI agents</strong> <code>isitagentready.com</code></a> - <a href="https://news.ycombinator.com/item?id=47805998">166 comments 103 points</a></li>
<li><a href="https://blog.vidocsecurity.com/blog/we-reproduced-anthropics-mythos-findings-with-public-models"><strong>We reproduced Anthropic's Mythos findings with public models</strong> <code>blog.vidocsecurity.com</code></a> - <a href="https://news.ycombinator.com/item?id=47806116">56 comments 99 points</a></li>
<li><a href="https://www.theguardian.com/technology/2026/apr/17/microsoft-us-tech-firms-lobbied-eu-secrecy-rules-datacentre-emissions"><strong>US tech firms lobbied EU to keep datacentre emissions secret</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47802962">12 comments 79 points</a></li>
<li><a href="https://xcancel.com/Paul_Reviews/status/2044723123287666921"><strong>EU age verification app hacked, 2 minute How to posted</strong> <code>xcancel.com</code></a> - <a href="https://news.ycombinator.com/item?id=47803773">28 comments 73 points</a></li>
<li><a href="https://www.nature.com/articles/d41586-026-01204-5"><strong>Landmark ancient-genome study shows surprise acceleration of human evolution</strong> <code>www.nature.com</code></a> - <a href="https://news.ycombinator.com/item?id=47811283">61 comments 67 points</a></li>
<li><a href="https://electrek.co/2026/04/16/tesla-cybertruck-spacex-1279-q4-sales-inflated/"><strong>Tesla Cybertruck sales inflated: SpaceX bought 1,279 units</strong> <code>electrek.co</code></a> - <a href="https://news.ycombinator.com/item?id=47809310">23 comments 67 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-17]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1310</link>
<guid isPermaLink="false">1310</guid>
<pubDate>Fri, 17 Apr 2026 06:57:09 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.anthropic.com/news/claude-opus-4-7"><strong>Claude Opus 4.7</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47793411">1173 comments 1652 points</a></li>
<li><a href="https://qwen.ai/blog?id=qwen3.6-35b-a3b"><strong>Qwen3.6-35B-A3B: Agentic coding power, now open to all</strong> <code>qwen.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47792764">447 comments 1021 points</a></li>
<li><a href="https://openai.com/index/codex-for-almost-everything/"><strong>Codex for almost everything</strong> <code>openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47796469">402 comments 803 points</a></li>
<li><a href="https://aphyr.com/posts/420-the-future-of-everything-is-lies-i-guess-where-do-we-go-from-here"><strong>The future of everything is lies, I guess: Where do we go from here?</strong> <code>aphyr.com</code></a> - <a href="https://news.ycombinator.com/item?id=47792718">616 comments 586 points</a></li>
<li><a href="https://blog.cloudflare.com/email-for-agents/"><strong>Cloudflare Email Service</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=47792593">198 comments 436 points</a></li>
<li><a href="https://discuss.ai.google.dev/t/unexpected-54k-billing-spike-in-13-hours-firebase-browser-key-without-api-restrictions-used-for-gemini-requests/140262"><strong>€54k spike in 13h from unrestricted Firebase browser key accessing Gemini APIs</strong> <code>discuss.ai.google.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47791871">278 comments 383 points</a></li>
<li><a href="https://simonwillison.net/2026/Apr/16/qwen-beats-opus/"><strong>Qwen3.6-35B-A3B on my laptop drew me a better pelican than Claude Opus 4.7</strong> <code>simonwillison.net</code></a> - <a href="https://news.ycombinator.com/item?id=47796830">78 comments 372 points</a></li>
<li><a href="https://www.thunderbolt.io/"><strong>Mozilla Thunderbolt</strong> <code>www.thunderbolt.io</code></a> - <a href="https://news.ycombinator.com/item?id=47792368">306 comments 342 points</a></li>
<li><a href="https://www.joanwestenberg.com/the-passive-income-trap-ate-a-generation-of-entrepreneurs/"><strong>The "Passive Income" trap ate a generation of entrepreneurs</strong> <code>www.joanwestenberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47799120">193 comments 277 points</a></li>
<li><a href="https://blog.cloudflare.com/ai-platform/"><strong>Cloudflare's AI Platform: an inference layer designed for agents</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=47792538">60 comments 267 points</a></li>
<li><a href="https://blog.calif.io/p/codex-hacked-a-samsung-tv"><strong>Codex Hacked a Samsung TV</strong> <code>blog.calif.io</code></a> - <a href="https://news.ycombinator.com/item?id=47791212">125 comments 234 points</a></li>
<li><a href="https://antirez.com/news/163"><strong>AI cybersecurity is not proof of work</strong> <code>antirez.com</code></a> - <a href="https://news.ycombinator.com/item?id=47791236">84 comments 219 points</a></li>
<li><a href="https://techcrunch.com/2026/04/16/everything-we-like-is-a-psyop/"><strong>Everything we like is a psyop?</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47800738">128 comments 215 points</a></li>
<li><a href="https://android-developers.googleblog.com/2026/04/build-android-apps-3x-faster-using-any-agent.html"><strong>Android CLI: Build Android apps 3x faster using any agent</strong> <code>android-developers.googleblog.com</code></a> - <a href="https://news.ycombinator.com/item?id=47797665">67 comments 196 points</a></li>
<li><a href="https://www.theguardian.com/us-news/ng-interactive/2026/apr/16/amazon-price-fixing-california-lawsuit"><strong>New unsealed records reveal Amazon's price-fixing tactics, California AG claims</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47800166">42 comments 193 points</a></li>
<li><a href="https://andonlabs.com/blog/andon-market-launch"><strong>We gave an AI a 3 year retail lease and asked it to make a profit</strong> <code>andonlabs.com</code></a> - <a href="https://news.ycombinator.com/item?id=47794391">262 comments 191 points</a></li>
<li><a href="https://techstackups.com/articles/laravel-raised-money-and-now-injects-ads-directly-into-your-agent/"><strong>Laravel raised money and now injects ads directly into your agent</strong> <code>techstackups.com</code></a> - <a href="https://news.ycombinator.com/item?id=47793926">112 comments 190 points</a></li>
<li><a href="https://www.anthropic.com/claude/opus"><strong>Claude Opus 4.7</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47793493">12 comments 186 points</a></li>
<li><a href="https://blog.cloudflare.com/artifacts-git-for-agents-beta/"><strong>Artifacts: Versioned storage that speaks Git</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=47792374">20 comments 185 points</a></li>
<li><a href="https://clojure.org/about/documentary"><strong>Official Clojure Documentary page with Video, Shownotes, and Links</strong> <code>clojure.org</code></a> - <a href="https://news.ycombinator.com/item?id=47798345">44 comments 169 points</a></li>
<li><a href="https://anthropic.com/claude-opus-4-7-system-card"><strong>Claude Opus 4.7 Model Card</strong> <code>anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47793546">79 comments 168 points</a></li>
<li><a href="https://www.bbc.com/news/articles/clyrd818gd2o"><strong>Hospital at centre of child HIV outbreak caught reusing syringes in Pakistan</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47800839">104 comments 154 points</a></li>
<li><a href="https://redirect.github.com/gainsec/autoprober"><strong>Guy builds AI driven hardware hacker arm from duct tape, old cam and CNC machine</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47800033">33 comments 151 points</a></li>
<li><a href="https://www.japantimes.co.jp/news/2026/04/15/japan/society/jlpt-visa-requirement/"><strong>Japan implements language proficiency requirements for certain visa applicants</strong> <code>www.japantimes.co.jp</code></a> - <a href="https://news.ycombinator.com/item?id=47796197">114 comments 146 points</a></li>
<li><a href="https://redirect.github.com/SeanFDZ/macmind"><strong>Show HN: MacMind – A transformer neural network in HyperCard on a 1989 Macintosh</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47792525">35 comments 136 points</a></li>
<li><a href="https://news.play.date/news/duke-playdate-education/"><strong>Playdate’s handheld changed how Duke University teaches game design</strong> <code>news.play.date</code></a> - <a href="https://news.ycombinator.com/item?id=47798176">49 comments 123 points</a></li>
<li><a href="https://redirect.github.com/libsdl-org/SDL/issues/15350"><strong>SDL bans AI-written commits</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47790791">121 comments 121 points</a></li>
<li><a href="https://ropensci.org/blog/2026/04/02/tree-sitter-overview/"><strong>A Better R Programming Experience Thanks to Tree-sitter</strong> <code>ropensci.org</code></a> - <a href="https://news.ycombinator.com/item?id=47799573">13 comments 118 points</a></li>
<li><a href="https://www.politico.eu/article/european-civil-servants-new-messaging-services/"><strong>European civil servants are being forced off WhatsApp</strong> <code>www.politico.eu</code></a> - <a href="https://news.ycombinator.com/item?id=47798456">70 comments 108 points</a></li>
<li><a href="https://apnews.com/article/iran-war-europe-jet-fuel-flight-cancellations-birol-6e67fafd493861b3858de5548aa77703"><strong>Europe has "maybe 6 weeks of jet fuel left"</strong> <code>apnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=47797911">76 comments 100 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-16]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1309</link>
<guid isPermaLink="false">1309</guid>
<pubDate>Thu, 16 Apr 2026 06:56:14 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.eff.org/deeplinks/2026/04/google-broke-its-promise-me-now-ice-has-my-data"><strong>Google broke its promise to me – now ICE has my data</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=47782570">579 comments 1349 points</a></li>
<li><a href="https://wchambliss.wordpress.com/2026/03/03/god-sleeps-in-the-minerals/"><strong>God sleeps in the minerals</strong> <code>wchambliss.wordpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=47778475">100 comments 511 points</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2026-04-15/live-nation-illegally-monopolized-ticketing-market-jury-finds"><strong>Live Nation illegally monopolized ticketing market, jury finds</strong> <code>www.bloomberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47783713">146 comments 504 points</a></li>
<li><a href="https://prog21.dadgum.com/30.html"><strong>Want to write a compiler? Just read these two papers (2008)</strong> <code>prog21.dadgum.com</code></a> - <a href="https://news.ycombinator.com/item?id=47776796">143 comments 479 points</a></li>
<li><a href="https://www.worseonpurpose.com/p/your-backpack-got-worse-on-purpose"><strong>Backpacks got worse on purpose</strong> <code>www.worseonpurpose.com</code></a> - <a href="https://news.ycombinator.com/item?id=47777209">367 comments 402 points</a></li>
<li><a href="https://torrentfreak.com/annas-archive-loses-322-million-spotify-piracy-case-without-a-fight/"><strong>Anna's Archive loses $322M Spotify piracy case without a fight</strong> <code>torrentfreak.com</code></a> - <a href="https://news.ycombinator.com/item?id=47776035">400 comments 397 points</a></li>
<li><a href="https://super-memory.com/articles/sleep.htm"><strong>Good sleep, good learning, good life (2012)</strong> <code>super-memory.com</code></a> - <a href="https://news.ycombinator.com/item?id=47776557">198 comments 388 points</a></li>
<li><a href="https://www.mcdonalds.co.jp/en/menu/burger/"><strong>The buns in McDonald's Japan's burger photos are all slightly askew</strong> <code>www.mcdonalds.co.jp</code></a> - <a href="https://news.ycombinator.com/item?id=47785738">182 comments 364 points</a></li>
<li><a href="https://www.strix.ai/blog/cal-com-is-closing-its-code-due-to-ai-threats"><strong>Open Source Isn't Dead</strong> <code>www.strix.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47780712">169 comments 321 points</a></li>
<li><a href="https://cal.com/blog/cal-com-goes-closed-source-why"><strong>Cal.com is going closed source</strong> <code>cal.com</code></a> - <a href="https://news.ycombinator.com/item?id=47780456">199 comments 280 points</a></li>
<li><a href="https://www.theverge.com/streaming/912898/youtube-shorts-feed-limit-zero-minutes"><strong>YouTube users get option to set their Shorts time limit to zero minutes</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=47786791">126 comments 272 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47783940"><strong>Ask HN: Who is using OpenClaw?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47783940">317 comments 264 points</a></li>
<li><a href="https://aphyr.com/posts/419-the-future-of-everything-is-lies-i-guess-new-jobs"><strong>The Future of Everything Is Lies, I Guess: New Jobs</strong> <code>aphyr.com</code></a> - <a href="https://news.ycombinator.com/item?id=47778758">169 comments 255 points</a></li>
<li><a href="https://claudestatus.com/"><strong>Elevated errors on Claude.ai, API, Claude Code</strong> <code>claudestatus.com</code></a> - <a href="https://news.ycombinator.com/item?id=47779730">218 comments 242 points</a></li>
<li><a href="https://www.dbpro.app/blog/do-you-even-need-a-database"><strong>Do you even need a database?</strong> <code>www.dbpro.app</code></a> - <a href="https://news.ycombinator.com/item?id=47778086">264 comments 236 points</a></li>
<li><a href="https://redirect.github.com/steipete/wacli"><strong>Wacli – WhatsApp CLI</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47775628">150 comments 234 points</a></li>
<li><a href="https://substack.com/home/post/p-193593234"><strong>Why are Flock employees watching our children?</strong> <code>substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47784045">43 comments 234 points</a></li>
<li><a href="https://redirect.github.com/gastownhall/gastown/issues/3649"><strong>Does Gas Town 'steal' usage from users' LLM credits to improve itself?</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47785053">112 comments 229 points</a></li>
<li><a href="https://heidenstedt.org/posts/2026/ai-assisted-cognition-endangers-human-development/"><strong>AI-assisted cognition endangers human development?</strong> <code>heidenstedt.org</code></a> - <a href="https://news.ycombinator.com/item?id=47783024">174 comments 221 points</a></li>
<li><a href="https://deepmind.google/blog/gemini-robotics-er-1-6/"><strong>Gemini Robotics-ER 1.6</strong> <code>deepmind.google</code></a> - <a href="https://news.ycombinator.com/item?id=47779094">69 comments 208 points</a></li>
<li><a href="https://keepandroidopen.org/cta/"><strong>Keep Android Open</strong> <code>keepandroidopen.org</code></a> - <a href="https://news.ycombinator.com/item?id=47778274">65 comments 194 points</a></li>
<li><a href="https://warped3.substack.com/p/direct-win32-api-weird-shaped-windows"><strong>Direct Win32 API, weird-shaped windows, and why they mostly disappeared</strong> <code>warped3.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47776667">107 comments 180 points</a></li>
<li><a href="https://tracksuccession.com/explore"><strong>Show HN: Every CEO and CFO change at US public companies, live from SEC</strong> <code>tracksuccession.com</code></a> - <a href="https://news.ycombinator.com/item?id=47778306">63 comments 174 points</a></li>
<li><a href="https://chatgpt.com/apps/spreadsheets/"><strong>ChatGPT for Excel</strong> <code>chatgpt.com</code></a> - <a href="https://news.ycombinator.com/item?id=47785397">125 comments 173 points</a></li>
<li><a href="https://www.reuters.com/legal/government/ai-ruling-prompts-warnings-us-lawyers-your-chats-could-be-used-against-you-2026-04-15/"><strong>AI ruling prompts warnings from US lawyers: Your chats could be used against you</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47778308">96 comments 148 points</a></li>
<li><a href="https://wherethefuckdidmytaxesgo.com/"><strong>Where did my taxes go?</strong> <code>wherethefuckdidmytaxesgo.com</code></a> - <a href="https://news.ycombinator.com/item?id=47781864">194 comments 133 points</a></li>
<li><a href="https://darkbloom.dev"><strong>Darkbloom – Private inference on idle Macs</strong> <code>darkbloom.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47788542">72 comments 132 points</a></li>
<li><a href="https://blog.google/innovation-and-ai/products/gemini-app/gemini-app-now-on-mac-os/"><strong>The Gemini app is now on Mac</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=47782256">63 comments 131 points</a></li>
<li><a href="https://medicalxpress.com/news/2026-04-crispr-bold-silencing-syndrome-extra.html"><strong>CRISPR takes important step toward silencing Down syndrome’s extra chromosome</strong> <code>medicalxpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=47781286">72 comments 126 points</a></li>
<li><a href="https://www.semafor.com/article/04/15/2026/kalshi-ceo-tarek-mansour-expects-us-doj-to-prosecute-insider-trading-cases"><strong>Kalshi CEO expects US DOJ to prosecute insider trading cases</strong> <code>www.semafor.com</code></a> - <a href="https://news.ycombinator.com/item?id=47782972">134 comments 123 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-15]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1308</link>
<guid isPermaLink="false">1308</guid>
<pubDate>Wed, 15 Apr 2026 06:53:40 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://rareese.com/posts/backblaze/"><strong>Backblaze has stopped backing up OneDrive and Dropbox folders and maybe others</strong> <code>rareese.com</code></a> - <a href="https://news.ycombinator.com/item?id=47762864">627 comments 1053 points</a></li>
<li><a href="https://techcrunch.com/2026/04/13/thousands-of-rare-concert-recordings-are-landing-on-the-internet-archive-listen-now/"><strong>Rare concert recordings are landing on the Internet Archive</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47765604">178 comments 609 points</a></li>
<li><a href="https://honeypot.net/2026/04/14/i-wrote-to-flocks-privacy.html"><strong>I wrote to Flock's privacy contact to opt out of their domestic spying program</strong> <code>honeypot.net</code></a> - <a href="https://news.ycombinator.com/item?id=47768813">231 comments 580 points</a></li>
<li><a href="https://stopflock.com"><strong>Stop Flock</strong> <code>stopflock.com</code></a> - <a href="https://news.ycombinator.com/item?id=47772012">144 comments 573 points</a></li>
<li><a href="https://code.claude.com/docs/en/routines"><strong>Claude Code Routines</strong> <code>code.claude.com</code></a> - <a href="https://news.ycombinator.com/item?id=47768133">334 comments 565 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47769796"><strong>Tell HN: Fiverr left customer files public and searchable</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47769796">111 comments 553 points</a></li>
<li><a href="https://steveklabnik.github.io/jujutsu-tutorial/introduction/what-is-jj-and-why-should-i-care.html"><strong>jj – the CLI for Jujutsu</strong> <code>steveklabnik.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47763759">447 comments 517 points</a></li>
<li><a href="https://bandaancha.eu/articulos/telefonica-consigue-bloqueos-ips-11731"><strong>Spain to expand internet blocks to tennis, golf, movies broadcasting times</strong> <code>bandaancha.eu</code></a> - <a href="https://news.ycombinator.com/item?id=47768195">416 comments 408 points</a></li>
<li><a href="https://introspective-diffusion.github.io/"><strong>Introspective Diffusion Language Models</strong> <code>introspective-diffusion.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47762641">45 comments 259 points</a></li>
<li><a href="https://aphyr.com/posts/418-the-future-of-everything-is-lies-i-guess-work"><strong>The future of everything is lies, I guess: Work</strong> <code>aphyr.com</code></a> - <a href="https://news.ycombinator.com/item?id=47766550">206 comments 258 points</a></li>
<li><a href="https://redirect.github.com/openssl/openssl/releases/tag/openssl-4.0.0"><strong>OpenSSL 4.0.0</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47768788">81 comments 245 points</a></li>
<li><a href="https://www.tobru.ch/an-ai-vibe-coding-horror-story/"><strong>An AI Vibe Coding Horror Story</strong> <code>www.tobru.ch</code></a> - <a href="https://news.ycombinator.com/item?id=47762901">202 comments 205 points</a></li>
<li><a href="https://www.404media.co/google-microsoft-meta-all-tracking-you-even-when-you-opt-out-according-to-an-independent-audit/"><strong>Google, Microsoft, Meta All Tracking You Even When You Opt Out</strong> <code>www.404media.co</code></a> - <a href="https://news.ycombinator.com/item?id=47767191">93 comments 178 points</a></li>
<li><a href="https://redirect.github.com/citguru/openduck"><strong>Distributed DuckDB Instance</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47761997">33 comments 170 points</a></li>
<li><a href="https://iopscience.iop.org/article/10.1088/2976-601X/ae4f6b"><strong>40% of lost calories globally are from beef, needing 33 cal of feed per 1 cal</strong> <code>iopscience.iop.org</code></a> - <a href="https://news.ycombinator.com/item?id=47769183">266 comments 159 points</a></li>
<li><a href="https://e360.yale.edu/digest/us-renewables-natural-gas-coal"><strong>For the first time in the U.S., renewables generate more power than natural gas</strong> <code>e360.yale.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47767160">158 comments 158 points</a></li>
<li><a href="https://kb.databasedesignbook.com/posts/5nf/"><strong>5NF and Database Design</strong> <code>kb.databasedesignbook.com</code></a> - <a href="https://news.ycombinator.com/item?id=47767676">57 comments 155 points</a></li>
<li><a href="https://www.worksinprogress.news/p/the-secret-behind-japans-railways"><strong>The secrets of the Shinkansen</strong> <code>www.worksinprogress.news</code></a> - <a href="https://news.ycombinator.com/item?id=47762060">151 comments 153 points</a></li>
<li><a href="https://blog.google/products-and-platforms/products/chrome/skills-in-chrome/"><strong>Turn your best AI prompts into one-click tools in Chrome</strong> <code>blog.google</code></a> - <a href="https://news.ycombinator.com/item?id=47768339">74 comments 148 points</a></li>
<li><a href="https://ascii.textfiles.com/archives/1717"><strong>Fuck the cloud (2009)</strong> <code>ascii.textfiles.com</code></a> - <a href="https://news.ycombinator.com/item?id=47772048">83 comments 138 points</a></li>
<li><a href="https://ziglang.org/download/0.16.0/release-notes.html"><strong>Zig 0.16.0 Release Notes</strong> <code>ziglang.org</code></a> - <a href="https://news.ycombinator.com/item?id=47767194">31 comments 136 points</a></li>
<li><a href="https://redirect.github.com/ginlix-ai/langalpha"><strong>Show HN: LangAlpha – what if Claude Code was built for Wall Street?</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47766370">41 comments 129 points</a></li>
<li><a href="https://www.theregister.com/2026/04/14/eff_california_3dprinted_firearms/"><strong>California ghost-gun bill wants 3D printers to play cop, EFF says</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=47769967">2 comments 120 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47764215"><strong>Ask HN: I quit my job over weaponized robots to start my own venture</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47764215">72 comments 110 points</a></li>
<li><a href="https://www.congress.gov/bill/119th-congress/house-bill/8250/all-info"><strong>H.R.8250 – To require operating system providers to verify the age of any user</strong> <code>www.congress.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47772203">81 comments 105 points</a></li>
<li><a href="https://steve-yegge.medium.com/gas-town-from-clown-show-to-v1-0-c239d9a407ec"><strong>Gas Town: From Clown Show to v1.0</strong> <code>steve-yegge.medium.com</code></a> - <a href="https://news.ycombinator.com/item?id=47770124">133 comments 103 points</a></li>
<li><a href="https://nim-lang.org/blog/2026/04/07/nimconf-2026.html"><strong>NimConf 2026: Dates Announced, Registrations Open</strong> <code>nim-lang.org</code></a> - <a href="https://news.ycombinator.com/item?id=47764098">30 comments 103 points</a></li>
<li><a href="https://www.reuters.com/legal/transactional/openai-investors-question-852-billion-valuation-strategy-shifts-ft-reports-2026-04-14/"><strong>OpenAI's $852B valuation faces investor scrutiny amid strategy shift, FT reports</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47773640">114 comments 102 points</a></li>
<li><a href="https://so.long.thanks.fish/can-claude-fly-a-plane/"><strong>Can Claude Fly a Plane?</strong> <code>so.long.thanks.fish</code></a> - <a href="https://news.ycombinator.com/item?id=47762006">96 comments 102 points</a></li>
<li><a href="https://lewiscampbell.tech/blog/260414.html"><strong>Saying goodbye to Agile</strong> <code>lewiscampbell.tech</code></a> - <a href="https://news.ycombinator.com/item?id=47774781">86 comments 102 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-14]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1307</link>
<guid isPermaLink="false">1307</guid>
<pubDate>Tue, 14 Apr 2026 06:52:15 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/"><strong>Someone bought 30 WordPress plugins and planted a backdoor in all of them</strong> <code>anchor.host</code></a> - <a href="https://news.ycombinator.com/item?id=47755629">242 comments 868 points</a></li>
<li><a href="https://github.github.com/gh-stack/"><strong>GitHub Stacked PRs</strong> <code>github.github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47757495">350 comments 633 points</a></li>
<li><a href="https://servo.org/blog/2026/04/13/servo-0.1.0-release/"><strong>Servo is now available on crates.io</strong> <code>servo.org</code></a> - <a href="https://news.ycombinator.com/item?id=47750872">143 comments 445 points</a></li>
<li><a href="https://redirect.github.com/sterlingcrispin/nothing-ever-happens"><strong>Nothing Ever Happens: Polymarket bot that always buys No on non-sports markets</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47753472">220 comments 401 points</a></li>
<li><a href="https://nypost.com/2026/04/11/us-news/us-appeals-court-declares-158-year-old-home-distilling-ban-unconstitutional/"><strong>US appeals court declares 158-year-old home distilling ban unconstitutional</strong> <code>nypost.com</code></a> - <a href="https://news.ycombinator.com/item?id=47751781">251 comments 368 points</a></li>
<li><a href="https://hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/"><strong>Make tmux pretty and usable (2024)</strong> <code>hamvocke.com</code></a> - <a href="https://news.ycombinator.com/item?id=47752819">222 comments 352 points</a></li>
<li><a href="https://www.blackmagicdesign.com/products/davinciresolve/photo"><strong>DaVinci Resolve releases Photo Editor</strong> <code>www.blackmagicdesign.com</code></a> - <a href="https://news.ycombinator.com/item?id=47760529">79 comments 348 points</a></li>
<li><a href="https://shkspr.mobi/blog/2026/04/android-now-stops-you-sharing-your-location-in-photos/"><strong>Android now stops you sharing your location in photos</strong> <code>shkspr.mobi</code></a> - <a href="https://news.ycombinator.com/item?id=47750669">293 comments 344 points</a></li>
<li><a href="https://www.neowin.net/opinions/microsoft-isnt-removing-copilot-from-windows-11-its-just-renaming-it/"><strong>Microsoft isn't removing Copilot from Windows 11, it's just renaming it</strong> <code>www.neowin.net</code></a> - <a href="https://news.ycombinator.com/item?id=47751936">257 comments 341 points</a></li>
<li><a href="https://ringmast4r.substack.com/p/we-may-be-living-through-the-most"><strong>This year’s insane timeline of hacks</strong> <code>ringmast4r.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47752884">179 comments 297 points</a></li>
<li><a href="https://aphyr.com/posts/417-the-future-of-everything-is-lies-i-guess-safety"><strong>The Future of Everything Is Lies, I Guess: Safety</strong> <code>aphyr.com</code></a> - <a href="https://news.ycombinator.com/item?id=47754379">160 comments 292 points</a></li>
<li><a href="https://blog.cloudflare.com/cf-cli-local-explorer/"><strong>Building a CLI for all of Cloudflare</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=47753689">96 comments 291 points</a></li>
<li><a href="https://techcrunch.com/2026/04/13/stanford-report-highlights-growing-disconnect-between-ai-insiders-and-everyone-else/"><strong>Stanford report highlights growing disconnect between AI insiders and everyone</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47758028">328 comments 234 points</a></li>
<li><a href="https://www.thecentersquare.com/michigan/article_7ca4e268-4a68-42fb-9042-f9d8604ebd7f.html"><strong>Michigan 'digital age' bills pulled after privacy concerns raised</strong> <code>www.thecentersquare.com</code></a> - <a href="https://news.ycombinator.com/item?id=47750821">121 comments 212 points</a></li>
<li><a href="https://kirancodes.me/posts/log-who-watches-the-watchers.html"><strong>Lean proved this program correct; then I found a bug</strong> <code>kirancodes.me</code></a> - <a href="https://news.ycombinator.com/item?id=47759709">107 comments 209 points</a></li>
<li><a href="https://developers.google.com/search/blog/2026/04/back-button-hijacking"><strong>A new spam policy for "back button hijacking"</strong> <code>developers.google.com</code></a> - <a href="https://news.ycombinator.com/item?id=47760764">109 comments 207 points</a></li>
<li><a href="https://substack.com/home/post/p-193626949"><strong>I went to America's worst national parks so you don't have to</strong> <code>substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47751029">182 comments 195 points</a></li>
<li><a href="https://thenextwavefutures.wordpress.com/2026/04/07/ai-end-digital-wave-technology-innovation-perez/"><strong>AI could be the end of the digital wave, not the next big thing</strong> <code>thenextwavefutures.wordpress.com</code></a> - <a href="https://news.ycombinator.com/item?id=47751032">257 comments 178 points</a></li>
<li><a href="https://redirect.github.com/brightbeanxyz/brightbean-studio"><strong>Show HN: I built a social media management tool in 3 weeks with Claude and Codex</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47749674">120 comments 177 points</a></li>
<li><a href="https://blog.farre.se/posts/2026/04/10/caching-webidl-codegen/"><strong>How to make Firefox builds 17% faster</strong> <code>blog.farre.se</code></a> - <a href="https://news.ycombinator.com/item?id=47756321">30 comments 162 points</a></li>
<li><a href="https://www.ithihasas.in"><strong>Show HN: Ithihāsas – a character explorer for Hindu epics, built in a few hours</strong> <code>www.ithihasas.in</code></a> - <a href="https://news.ycombinator.com/item?id=47756569">35 comments 142 points</a></li>
<li><a href="https://www.404media.co/hacker-compromises-a16z-backed-phone-farm-tries-to-post-memes-calling-a16z-the-antichrist/"><strong>Hacker compromises A16Z-backed phone farm, calling them the 'antichrist'</strong> <code>www.404media.co</code></a> - <a href="https://news.ycombinator.com/item?id=47760925">34 comments 129 points</a></li>
<li><a href="https://status.claude.com/incidents/6jd2m42f8mld"><strong>Claude.ai down</strong> <code>status.claude.com</code></a> - <a href="https://news.ycombinator.com/item?id=47753643">123 comments 128 points</a></li>
<li><a href="https://redirect.github.com/fabienmillet/WiiFin"><strong>WiiFin – Jellyfin Client for Nintendo Wii</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47759341">55 comments 127 points</a></li>
<li><a href="https://www.politico.com/news/2026/04/13/missouri-city-council-data-center-00867259"><strong>Missouri town fires half its city council over data center deal</strong> <code>www.politico.com</code></a> - <a href="https://news.ycombinator.com/item?id=47754002">128 comments 126 points</a></li>
<li><a href="https://theyseeyourphotos.com/"><strong>They See Your Photos</strong> <code>theyseeyourphotos.com</code></a> - <a href="https://news.ycombinator.com/item?id=47751669">111 comments 126 points</a></li>
<li><a href="https://amd-gaia.ai/docs"><strong>GAIA – Open-source framework for building AI agents that run on local hardware</strong> <code>amd-gaia.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47756772">30 comments 124 points</a></li>
<li><a href="https://www.joanwestenberg.com/sometimes-powerful-people-just-do-dumb-shit/"><strong>Sometimes powerful people just do dumb shit</strong> <code>www.joanwestenberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47760750">37 comments 114 points</a></li>
<li><a href="https://www.propublica.org/article/impersonating-propublica-reporter"><strong>Who's Been Impersonating This ProPublica Reporter?</strong> <code>www.propublica.org</code></a> - <a href="https://news.ycombinator.com/item?id=47754100">2 comments 114 points</a></li>
<li><a href="https://taxwrapped.com"><strong>Tax Wrapped 2025</strong> <code>taxwrapped.com</code></a> - <a href="https://news.ycombinator.com/item?id=47755604">60 comments 111 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-13]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1306</link>
<guid isPermaLink="false">1306</guid>
<pubDate>Mon, 13 Apr 2026 07:13:08 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://news.ycombinator.com/item?id=47738883"><strong>Tell HN: Docker pull fails in Spain due to football Cloudflare block</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47738883">297 comments 799 points</a></li>
<li><a href="https://redirect.github.com/anthropics/claude-code/issues/45756"><strong>Pro Max 5x quota exhausted in 1.5 hours despite moderate usage</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47739260">538 comments 597 points</a></li>
<li><a href="https://www.the-independent.com/tech/renewable-energy-solar-nepal-bhutan-iceland-b2533699.html"><strong>Seven countries now generate nearly all their electricity from renewables (2024)</strong> <code>www.the-independent.com</code></a> - <a href="https://news.ycombinator.com/item?id=47739313">302 comments 559 points</a></li>
<li><a href="https://essays.johnloeber.com/p/4-bring-back-idiomatic-design"><strong>Bring Back Idiomatic Design (2023)</strong> <code>essays.johnloeber.com</code></a> - <a href="https://news.ycombinator.com/item?id=47738827">286 comments 525 points</a></li>
<li><a href="https://bsky.app/profile/serenityforge.com/post/3mj3r4nbiws2t"><strong>Google removes "Doki Doki Literature Club" from Google Play</strong> <code>bsky.app</code></a> - <a href="https://news.ycombinator.com/item?id=47743730">203 comments 409 points</a></li>
<li><a href="https://bcantrill.dtrace.org/2026/04/12/the-peril-of-laziness-lost/"><strong>The peril of laziness lost</strong> <code>bcantrill.dtrace.org</code></a> - <a href="https://news.ycombinator.com/item?id=47743628">122 comments 374 points</a></li>
<li><a href="https://blinry.org/diy-soft-drinks/"><strong>DIY Soft Drinks</strong> <code>blinry.org</code></a> - <a href="https://news.ycombinator.com/item?id=47741701">97 comments 371 points</a></li>
<li><a href="https://boringbar.app/"><strong>Show HN: boringBar – a taskbar-style dock replacement for macOS</strong> <code>boringbar.app</code></a> - <a href="https://news.ycombinator.com/item?id=47742200">187 comments 334 points</a></li>
<li><a href="https://www.thealgorithmicbridge.com/p/ai-will-be-met-with-violence-and"><strong>AI Will Be Met with Violence, and Nothing Good Will Come of It</strong> <code>www.thealgorithmicbridge.com</code></a> - <a href="https://news.ycombinator.com/item?id=47737563">595 comments 333 points</a></li>
<li><a href="https://www.theregister.com/2026/04/12/ios_passcode_bug/"><strong>Apple update looks like Czech mate for locked-out iPhone user</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=47737383">211 comments 329 points</a></li>
<li><a href="https://maps.apple.com/frame?center=33.723388%2C35.614698&span=1.983925%2C4.004193"><strong>Apple has removed most of the towns and villages in Lebanon from Apple maps?</strong> <code>maps.apple.com</code></a> - <a href="https://news.ycombinator.com/item?id=47742680">176 comments 323 points</a></li>
<li><a href="https://arxiv.org/abs/2603.21852"><strong>All elementary functions from a single binary operator</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=47746610">82 comments 263 points</a></li>
<li><a href="https://blogfontawesome.wpcomstaging.com/we-have-a-99-email-reputation-gmail-disagrees/"><strong>We have a 99% email reputation, but Gmail disagrees</strong> <code>blogfontawesome.wpcomstaging.com</code></a> - <a href="https://news.ycombinator.com/item?id=47738978">207 comments 223 points</a></li>
<li><a href="https://apnews.com/article/hungary-election-orban-magyar-trump-1a4eb0ba6b94e0c80c3cd18bd36254ab"><strong>Viktor Orbán concedes defeat after 'painful' election result</strong> <code>apnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=47743553">70 comments 223 points</a></li>
<li><a href="https://phyphox.org/"><strong>Phyphox – Physical Experiments Using a Smartphone</strong> <code>phyphox.org</code></a> - <a href="https://news.ycombinator.com/item?id=47737376">33 comments 206 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47741527"><strong>Ask HN: What Are You Working On? (April 2026)</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47741527">588 comments 197 points</a></li>
<li><a href="https://chriswhocodes.com/vm-options-explorer.html"><strong>JVM Options Explorer</strong> <code>chriswhocodes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47738094">84 comments 189 points</a></li>
<li><a href="https://redirect.github.com/rochus-keller/OberonSystem3Native/releases"><strong>Show HN: Oberon System 3 runs natively on Raspberry Pi 3 (with ready SD card)</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47739174">38 comments 185 points</a></li>
<li><a href="https://eualternative.eu/guides/building-saas-eu-stack/"><strong>Building a SaaS in 2026 Using Only EU Infrastructure</strong> <code>eualternative.eu</code></a> - <a href="https://news.ycombinator.com/item?id=47741634">58 comments 182 points</a></li>
<li><a href="https://tanyaverma.sh/2026/04/10/closing-of-the-frontier.html"><strong>The Closing of the Frontier</strong> <code>tanyaverma.sh</code></a> - <a href="https://news.ycombinator.com/item?id=47742790">117 comments 180 points</a></li>
<li><a href="https://europe.mistral.ai/"><strong>European AI. A playbook to own it</strong> <code>europe.mistral.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47743700">101 comments 172 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47739305"><strong>Tell HN: OpenAI silently removed Study Mode from ChatGPT</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47739305">70 comments 169 points</a></li>
<li><a href="https://mastodon.social/@netblocks/116384935123261912"><strong>Internet outage in Iran reaches 1,008 hours</strong> <code>mastodon.social</code></a> - <a href="https://news.ycombinator.com/item?id=47738514">111 comments 158 points</a></li>
<li><a href="https://www.theguardian.com/world/2026/apr/12/how-israeli-offensive-destroyed-entire-villages-in-lebanon"><strong>Israel Destroys Villages in Lebanon</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47737541">37 comments 157 points</a></li>
<li><a href="https://www.eetimes.com/taking-on-cuda-with-rocm-one-step-after-another/"><strong>Taking on CUDA with ROCm: 'One Step After Another'</strong> <code>www.eetimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47745284">103 comments 140 points</a></li>
<li><a href="https://www.apollo.com/wealth/the-daily-spark/tech-valuations-back-to-pre-ai-boom-levels"><strong>Tech valuations are back to pre-AI boom levels</strong> <code>www.apollo.com</code></a> - <a href="https://news.ycombinator.com/item?id=47745120">35 comments 133 points</a></li>
<li><a href="https://adlrocha.substack.com/p/adlrocha-how-the-ai-loser-may-end"><strong>Apple's accidental moat: How the "AI Loser" may end up winning</strong> <code>adlrocha.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47747017">123 comments 130 points</a></li>
<li><a href="https://perthirtysix.com/how-does-gps-work"><strong>The Physics of GPS</strong> <code>perthirtysix.com</code></a> - <a href="https://news.ycombinator.com/item?id=47738343">34 comments 125 points</a></li>
<li><a href="https://sfstandard.com/2026/04/12/sam-altman-s-home-targeted-second-attack/"><strong>Sam Altman's home targeted in second attack</strong> <code>sfstandard.com</code></a> - <a href="https://news.ycombinator.com/item?id=47745230">229 comments 116 points</a></li>
<li><a href="https://www.reuters.com/world/europe/hungarians-vote-landmark-election-closely-watched-by-eu-russia-us-2026-04-11/"><strong>Hungary's Orban concedes landmark defeat to centre-right opposition</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47743961">14 comments 107 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-12]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1305</link>
<guid isPermaLink="false">1305</guid>
<pubDate>Sun, 12 Apr 2026 06:22:56 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://aisle.com/blog/ai-cybersecurity-after-mythos-the-jagged-frontier"><strong>Small models also found the vulnerabilities that Mythos found</strong> <code>aisle.com</code></a> - <a href="https://news.ycombinator.com/item?id=47732020">262 comments 972 points</a></li>
<li><a href="https://www.xda-developers.com/frances-government-ditching-windows-for-linux/"><strong>France's government is ditching Windows for Linux, says US tech a strategic risk</strong> <code>www.xda-developers.com</code></a> - <a href="https://news.ycombinator.com/item?id=47728653">245 comments 433 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47727960"><strong>Show HN: Pardonned.com – A searchable database of US Pardons</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47727960">227 comments 413 points</a></li>
<li><a href="https://www.theregister.com/2026/04/10/south_korea_data_access_universal/"><strong>South Korea introduces universal basic mobile data access</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=47730407">100 comments 360 points</a></li>
<li><a href="https://rdi.berkeley.edu/blog/trustworthy-benchmarks-cont/"><strong>How We Broke Top AI Agent Benchmarks: And What Comes Next</strong> <code>rdi.berkeley.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47733217">86 comments 323 points</a></li>
<li><a href="https://cirruslabs.org/"><strong>Cirrus Labs to join OpenAI</strong> <code>cirruslabs.org</code></a> - <a href="https://news.ycombinator.com/item?id=47730194">124 comments 253 points</a></li>
<li><a href="https://aphyr.com/posts/415-the-future-of-everything-is-lies-i-guess-annoyances"><strong>The future of everything is lies, I guess – Part 5: Annoyances</strong> <code>aphyr.com</code></a> - <a href="https://news.ycombinator.com/item?id=47730981">143 comments 251 points</a></li>
<li><a href="https://www.daemonology.net/blog/2026-04-11-20-years-on-AWS-and-never-not-my-job.html"><strong>20 years on AWS and never not my job</strong> <code>www.daemonology.net</code></a> - <a href="https://news.ycombinator.com/item?id=47727711">62 comments 244 points</a></li>
<li><a href="https://www.v68k.org/advanced-mac-substitute/"><strong>Advanced Mac Substitute is an API-level reimplementation of 1980s-era Mac OS</strong> <code>www.v68k.org</code></a> - <a href="https://news.ycombinator.com/item?id=47731506">60 comments 229 points</a></li>
<li><a href="https://www.coindesk.com/markets/2026/03/22/bitcoin-miners-are-losing-usd19-000-on-every-btc-produced-as-difficulty-drops-7-8"><strong>Bitcoin miners are losing on every coin produced as difficulty drops</strong> <code>www.coindesk.com</code></a> - <a href="https://news.ycombinator.com/item?id=47730370">206 comments 225 points</a></li>
<li><a href="https://zenodo.org/records/19513269"><strong>447 TB/cm² at zero retention energy – atomic-scale memory on fluorographane</strong> <code>zenodo.org</code></a> - <a href="https://news.ycombinator.com/item?id=47733561">94 comments 188 points</a></li>
<li><a href="https://khronokernel.com/macos/2023/08/08/AS-VM.html"><strong>Apple Silicon and Virtual Machines: Beating the 2 VM Limit (2023)</strong> <code>khronokernel.com</code></a> - <a href="https://news.ycombinator.com/item?id=47733971">125 comments 179 points</a></li>
<li><a href="https://www.osnews.com/story/144776/the-disturbing-white-paper-red-hat-is-trying-to-erase-from-the-internet/"><strong>The disturbing white paper Red Hat is trying to erase from the internet</strong> <code>www.osnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=47731960">67 comments 178 points</a></li>
<li><a href="https://darkcastle.co.uk/"><strong>Dark Castle</strong> <code>darkcastle.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=47733521">20 comments 166 points</a></li>
<li><a href="https://www.theguardian.com/business/2026/apr/11/polymarket-gamblers-betting-iran-war-ukraine-news-truth"><strong>Polymarket gamblers betting millions on war</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47729994">120 comments 151 points</a></li>
<li><a href="https://ajitem.com/blog/iron-core-part-1-the-problem-that-built-an-industry/"><strong>The Problem That Built an Industry</strong> <code>ajitem.com</code></a> - <a href="https://news.ycombinator.com/item?id=47730712">41 comments 119 points</a></li>
<li><a href="https://brennan.day/the-end-of-eleventy/"><strong>The End of Eleventy</strong> <code>brennan.day</code></a> - <a href="https://news.ycombinator.com/item?id=47735535">62 comments 116 points</a></li>
<li><a href="https://www.jvt.me/posts/2026/04/11/how-git-diff-driver/"><strong>How to build a <code>Git diff</code> driver</strong> <code>www.jvt.me</code></a> - <a href="https://news.ycombinator.com/item?id=47732697">11 comments 102 points</a></li>
<li><a href="https://kotaku.com/rockstar-games-reportedly-hacked-massive-data-leak-ransom-gta-6-shinyhunters-2000686858"><strong>Rockstar Games Hacked, Hackers Threaten a Massive Data Leak If Not Paid Ransom</strong> <code>kotaku.com</code></a> - <a href="https://news.ycombinator.com/item?id=47731707">49 comments 99 points</a></li>
<li><a href="https://planetscale.com/blog/keeping-a-postgres-queue-healthy"><strong>Keeping a Postgres Queue Healthy</strong> <code>planetscale.com</code></a> - <a href="https://news.ycombinator.com/item?id=47731838">23 comments 92 points</a></li>
<li><a href="https://www.bbc.com/future/article/20260410-how-to-breathe-in-fewer-microplastics-in-your-home"><strong>How to breathe in fewer microplastics in your home</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47730196">88 comments 72 points</a></li>
<li><a href="http://www.wideweb.com/phonetrips/"><strong>Phone Trips</strong> <code>www.wideweb.com</code></a> - <a href="https://news.ycombinator.com/item?id=47731998">6 comments 70 points</a></li>
<li><a href="https://www.bbc.com/news/articles/cjd8jrd1vnyo"><strong>We spoke to the man making viral Lego-style AI videos for Iran</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47735704">60 comments 67 points</a></li>
<li><a href="https://www.pewresearch.org/short-reads/2026/04/09/americans-still-opt-for-print-books-over-digital-or-audio-versions-few-are-in-book-clubs/"><strong>Americans still opt for print books over digital or audio versions</strong> <code>www.pewresearch.org</code></a> - <a href="https://news.ycombinator.com/item?id=47735606">50 comments 62 points</a></li>
<li><a href="https://sitebloom.ch/writing/now-is-the-best-time-to-write-code-by-hand/"><strong>Now is the best time to write code by hand</strong> <code>sitebloom.ch</code></a> - <a href="https://news.ycombinator.com/item?id=47729634">23 comments 60 points</a></li>
<li><a href="https://computerhistory.org/blog/the-apl-programming-language-source-code/"><strong>The APL programming language source code (2012)</strong> <code>computerhistory.org</code></a> - <a href="https://news.ycombinator.com/item?id=47732402">18 comments 60 points</a></li>
<li><a href="https://www.economist.com/finance-and-economics/2026/04/09/one-neat-trick-to-end-extreme-poverty"><strong>One neat trick to end extreme poverty</strong> <code>www.economist.com</code></a> - <a href="https://news.ycombinator.com/item?id=47733106">67 comments 59 points</a></li>
<li><a href="https://www.theguardian.com/law/2026/apr/11/appeals-court-ruling-home-distilling-ban-unconstitutional"><strong>US appeals court declares 158-year-old home distilling ban unconstitutional</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47736298">26 comments 55 points</a></li>
<li><a href="https://noirlab.edu/public/news/noirlab2611/?nocache=true&lang=en"><strong>New synthesis of astronomical measurements shows Hubble tension is real</strong> <code>noirlab.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47733066">13 comments 53 points</a></li>
<li><a href="https://en.wikipedia.org/wiki/Killing_of_Hind_Rajab"><strong>Killing of Hind Rajab (2024)</strong> <code>en.wikipedia.org</code></a> - <a href="https://news.ycombinator.com/item?id=47732660">5 comments 53 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-11]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1304</link>
<guid isPermaLink="false">1304</guid>
<pubDate>Sat, 11 Apr 2026 06:00:34 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.numerique.gouv.fr/sinformer/espace-presse/souverainete-numerique-reduction-dependances-extra-europeennes/"><strong>France Launches Government Linux Desktop Plan as Windows Exit Begins</strong> <code>www.numerique.gouv.fr</code></a> - <a href="https://news.ycombinator.com/item?id=47716043">423 comments 832 points</a></li>
<li><a href="https://rowan441.github.io/1dchess/chess.html"><strong>1D Chess</strong> <code>rowan441.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47719740">135 comments 747 points</a></li>
<li><a href="https://www.cbsnews.com/live-updates/artemis-ii-splashdown-return/"><strong>Artemis II safely splashes down</strong> <code>www.cbsnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=47725583">249 comments 705 points</a></li>
<li><a href="https://kentwalters.com/posts/corners/"><strong>Filing the corners off my MacBooks</strong> <code>kentwalters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47724352">319 comments 601 points</a></li>
<li><a href="https://9to5mac.com/2026/04/09/fbi-used-iphone-notification-data-to-retrieve-deleted-signal-messages/"><strong>FBI used iPhone notification data to retrieve deleted Signal messages</strong> <code>9to5mac.com</code></a> - <a href="https://news.ycombinator.com/item?id=47716490">288 comments 579 points</a></li>
<li><a href="https://techcrunch.com/2026/04/10/france-to-ditch-windows-for-linux-to-reduce-reliance-on-us-tech/"><strong>France to ditch Windows for Linux to reduce reliance on US tech</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47719486">195 comments 474 points</a></li>
<li><a href="https://eclecticlight.co/2026/04/10/why-you-cant-trust-privacy-security/"><strong>You can't trust macOS Privacy and Security settings</strong> <code>eclecticlight.co</code></a> - <a href="https://news.ycombinator.com/item?id=47719602">155 comments 451 points</a></li>
<li><a href="https://lists.zx2c4.com/pipermail/wireguard/2026-April/009561.html"><strong>WireGuard makes new Windows release following Microsoft signing resolution</strong> <code>lists.zx2c4.com</code></a> - <a href="https://news.ycombinator.com/item?id=47719942">123 comments 439 points</a></li>
<li><a href="https://www.wired.com/story/openai-backs-bill-exempt-ai-firms-model-harm-lawsuits/"><strong>OpenAI backs Illinois bill that would limit when AI labs can be held liable</strong> <code>www.wired.com</code></a> - <a href="https://news.ycombinator.com/item?id=47717587">309 comments 427 points</a></li>
<li><a href="https://www.bleepingcomputer.com/news/microsoft/microsoft-suspends-dev-accounts-for-high-profile-open-source-projects/"><strong>Microsoft suspends dev accounts for high-profile open source projects</strong> <code>www.bleepingcomputer.com</code></a> - <a href="https://news.ycombinator.com/item?id=47716412">133 comments 361 points</a></li>
<li><a href="https://redirect.github.com/Keychron/Keychron-Keyboards-Hardware-Design"><strong>Industrial design files for Keychron keyboards and mice</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47720419">107 comments 342 points</a></li>
<li><a href="https://www.theregister.com/2026/04/10/cpuid_site_hijacked/"><strong>CPU-Z and HWMonitor compromised</strong> <code>www.theregister.com</code></a> - <a href="https://news.ycombinator.com/item?id=47717847">85 comments 297 points</a></li>
<li><a href="https://www.bbc.com/news/articles/cr71lkzv49po"><strong>Chimpanzees in Uganda locked in eight-year 'civil war', say researchers</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47722333">149 comments 291 points</a></li>
<li><a href="https://www.construction-physics.com/p/helium-is-hard-to-replace"><strong>Helium is hard to replace</strong> <code>www.construction-physics.com</code></a> - <a href="https://news.ycombinator.com/item?id=47719274">196 comments 284 points</a></li>
<li><a href="https://jack.cab/blog/every-firefox-extension"><em><em>Installing every</em> Firefox extension</em>* <code>jack.cab</code></a> - <a href="https://news.ycombinator.com/item?id=47724118">29 comments 268 points</a></li>
<li><a href="https://blog.samaltman.com/2279512"><strong>Sam Altman's response to Molotov cocktail incident</strong> <code>blog.samaltman.com</code></a> - <a href="https://news.ycombinator.com/item?id=47724921">560 comments 262 points</a></li>
<li><a href="https://redirect.github.com/torvalds/linux/blob/master/Documentation/process/coding-assistants.rst"><strong>AI assistance when contributing to the Linux kernel</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47721953">168 comments 252 points</a></li>
<li><a href="https://theintercept.com/2026/04/09/trump-documents-library-presidential-records-act/"><strong>DOJ wants to scrap Watergate-era rule that makes presidential records public</strong> <code>theintercept.com</code></a> - <a href="https://news.ycombinator.com/item?id=47722566">52 comments 224 points</a></li>
<li><a href="https://www.nytimes.com/2026/04/10/us/open-ai-sam-altman-molotov-cocktail.html"><strong>Molotov cocktail is hurled at home of Sam Altman</strong> <code>www.nytimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47722096">523 comments 217 points</a></li>
<li><a href="https://ericwbailey.website/published/a-compelling-title-that-is-cryptic-enough-to-get-you-to-take-action-on-it/"><strong>A compelling title that is cryptic enough to get you to take action on it</strong> <code>ericwbailey.website</code></a> - <a href="https://news.ycombinator.com/item?id=47720827">110 comments 193 points</a></li>
<li><a href="https://redirect.github.com/callumlocke/json-formatter"><strong>JSON formatter Chrome plugin now closed and injecting adware</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47721946">102 comments 187 points</a></li>
<li><a href="https://steveblank.com/2026/04/09/nowhere-is-safe/"><strong>Nowhere is safe</strong> <code>steveblank.com</code></a> - <a href="https://news.ycombinator.com/item?id=47722562">206 comments 166 points</a></li>
<li><a href="https://pocketables.com/2026/04/ai-music-corporate-control-and-the-creator-who-cant-even-leave.html"><strong>YouTube locked my accounts and I can't cancel my subscription</strong> <code>pocketables.com</code></a> - <a href="https://news.ycombinator.com/item?id=47713839">101 comments 155 points</a></li>
<li><a href="https://dfarq.homeip.net/intel-486-cpu-announced-april-10-1989/"><strong>Intel 486 CPU announced April 10, 1989</strong> <code>dfarq.homeip.net</code></a> - <a href="https://news.ycombinator.com/item?id=47716809">148 comments 154 points</a></li>
<li><a href="https://www.ucdavis.edu/health/news/penguin-toxicologists-find-pfas-chemicals-remote-patagonia"><strong>Penguin 'Toxicologists' Find PFAS Chemicals in Remote Patagonia</strong> <code>www.ucdavis.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47714273">69 comments 146 points</a></li>
<li><a href="https://www.bbc.co.uk/news/articles/cgld65x396go"><strong>White House staff told not to place bets on prediction markets</strong> <code>www.bbc.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=47716663">80 comments 145 points</a></li>
<li><a href="https://pckt.blog/b/jcalabro/april-2026-outage-post-mortem-219ebg2"><strong>Bluesky April 2026 Outage Post-Mortem</strong> <code>pckt.blog</code></a> - <a href="https://news.ycombinator.com/item?id=47719975">70 comments 134 points</a></li>
<li><a href="https://fluidcad.io/"><strong>Show HN: FluidCAD – Parametric CAD with JavaScript</strong> <code>fluidcad.io</code></a> - <a href="https://news.ycombinator.com/item?id=47721997">25 comments 122 points</a></li>
<li><a href="https://old.reddit.com/r/pcmasterrace/comments/1sh4e5l/warning_hwmonitor_163_download_on_the_official/"><strong>CPU-Z and HWMonitor compromised</strong> <code>old.reddit.com</code></a> - <a href="https://news.ycombinator.com/item?id=47718830">1 comments 122 points</a></li>
<li><a href="https://olano.dev/blog/code-is-run-more-than-read/"><strong>Code is run more than read (2023)</strong> <code>olano.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47718470">89 comments 120 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-10]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1303</link>
<guid isPermaLink="false">1303</guid>
<pubDate>Fri, 10 Apr 2026 06:52:24 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.eff.org/deeplinks/2026/04/eff-leaving-x"><strong>EFF is leaving X</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=47706268">1085 comments 1282 points</a></li>
<li><a href="https://www.axios.com/2026/04/09/meta-social-media-addiction-ads"><strong>Meta removes ads for social media addiction litigation</strong> <code>www.axios.com</code></a> - <a href="https://news.ycombinator.com/item?id=47703419">235 comments 578 points</a></li>
<li><a href="https://updates.thunderbird.net/en-US/thunderbird/140.0/apr26-1e/donate/"><strong>Help Keep Thunderbird Alive</strong> <code>updates.thunderbird.net</code></a> - <a href="https://news.ycombinator.com/item?id=47700388">367 comments 537 points</a></li>
<li><a href="https://arhan.sh/blog/native-instant-space-switching-on-macos/"><strong>Native Instant Space Switching on macOS</strong> <code>arhan.sh</code></a> - <a href="https://news.ycombinator.com/item?id=47708818">203 comments 441 points</a></li>
<li><a href="https://www.thelettersfromleo.com/p/the-pentagon-threatened-pope-leo"><strong>The Pentagon Threatened Pope Leo XIV's Ambassador with the Avignon Papacy</strong> <code>www.thelettersfromleo.com</code></a> - <a href="https://news.ycombinator.com/item?id=47705952">277 comments 432 points</a></li>
<li><a href="https://dwyer.co.za/static/claude-mixes-up-who-said-what-and-thats-not-ok.html"><strong>Claude mixes up who said what</strong> <code>dwyer.co.za</code></a> - <a href="https://news.ycombinator.com/item?id=47701233">330 comments 424 points</a></li>
<li><a href="https://braw.dev/blog/2026-04-06-reallocating-100-month-claude-spend/"><strong>Reallocating $100/Month Claude Code Spend to Zed and OpenRouter</strong> <code>braw.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47700972">216 comments 323 points</a></li>
<li><a href="https://freebsdfoundation.github.io/freebsd-laptop-testing/"><strong>Top laptops to use with FreeBSD</strong> <code>freebsdfoundation.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47701148">174 comments 309 points</a></li>
<li><a href="https://lzon.ca/posts/other/microsoft-user-abuse/"><strong>Microsoft is employing dark patterns to goad users into paying for storage?</strong> <code>lzon.ca</code></a> - <a href="https://news.ycombinator.com/item?id=47710149">175 comments 307 points</a></li>
<li><a href="https://pizzalegacy.nl/blog/traffic-system.html"><strong>How Pizza Tycoon simulated traffic on a 25 MHz CPU</strong> <code>pizzalegacy.nl</code></a> - <a href="https://news.ycombinator.com/item?id=47703123">59 comments 278 points</a></li>
<li><a href="https://www.gadgetreview.com/maine-is-about-to-become-the-first-state-to-ban-major-new-data-centers"><strong>Maine is about to become the first state to ban major new data centers</strong> <code>www.gadgetreview.com</code></a> - <a href="https://news.ycombinator.com/item?id=47708817">387 comments 275 points</a></li>
<li><a href="https://cacm.acm.org/news/how-nasa-built-artemis-iis-fault-tolerant-computer/"><strong>How NASA built Artemis II’s fault-tolerant computer</strong> <code>cacm.acm.org</code></a> - <a href="https://news.ycombinator.com/item?id=47704804">88 comments 273 points</a></li>
<li><a href="https://akshaychugh.xyz/writings/png/vercel-plugin-telemetry"><strong>The Vercel plugin on Claude Code wants to read your prompts</strong> <code>akshaychugh.xyz</code></a> - <a href="https://news.ycombinator.com/item?id=47704881">104 comments 262 points</a></li>
<li><a href="https://german.millermanschool.com/"><strong>Am I German or Autistic?</strong> <code>german.millermanschool.com</code></a> - <a href="https://news.ycombinator.com/item?id=47703072">218 comments 247 points</a></li>
<li><a href="https://colaptop.pages.dev/"><strong>Old laptops in a colo as low cost servers</strong> <code>colaptop.pages.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47707477">124 comments 222 points</a></li>
<li><a href="https://chatgpt.com/pricing/"><strong>ChatGPT Pro now starts at $100/month</strong> <code>chatgpt.com</code></a> - <a href="https://news.ycombinator.com/item?id=47707253">224 comments 202 points</a></li>
<li><a href="https://www.bbc.com/future/article/20260408-the-extinct-english-words-for-just-the-two-of-us"><strong>Wit, unker, Git: The lost medieval pronouns of English intimacy</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47701572">126 comments 199 points</a></li>
<li><a href="https://aywren.com/2026/04/09/netflix-prices-went-up-again-i-bought-a-dvd-player-instead/"><strong>Netflix Prices Went Up Again – I Bought a DVD Player Instead</strong> <code>aywren.com</code></a> - <a href="https://news.ycombinator.com/item?id=47709251">226 comments 195 points</a></li>
<li><a href="https://www.unfolder.app/"><strong>Unfolder for Mac – A 3D model unfolding tool for creating papercraft</strong> <code>www.unfolder.app</code></a> - <a href="https://news.ycombinator.com/item?id=47706140">39 comments 191 points</a></li>
<li><a href="https://charcuterie.elastiq.ch/"><strong>Charcuterie – Visual similarity Unicode explorer</strong> <code>charcuterie.elastiq.ch</code></a> - <a href="https://news.ycombinator.com/item?id=47709158">34 comments 190 points</a></li>
<li><a href="https://davidoks.blog/p/how-funerals-keep-africa-poor"><strong>Many African families spend fortunes burying their dead</strong> <code>davidoks.blog</code></a> - <a href="https://news.ycombinator.com/item?id=47710907">167 comments 184 points</a></li>
<li><a href="https://lichess.org/@/Lichess/blog/lichess-and-take-take-take-sign-cooperation-agreement/DZS0S0Dy"><strong>Lichess and Take Take Take Sign Cooperation Agreement</strong> <code>lichess.org</code></a> - <a href="https://news.ycombinator.com/item?id=47702499">55 comments 181 points</a></li>
<li><a href="https://eaw.app/picoz80/"><strong>PicoZ80 – Drop-In Z80 Replacement</strong> <code>eaw.app</code></a> - <a href="https://news.ycombinator.com/item?id=47708041">30 comments 177 points</a></li>
<li><a href="https://bigbrotherwatch.org.uk/blog/apples-new-iphone-update-is-restricting-internet-freedom-in-the-uk/"><strong>New iPhone age and identity checks restrict internet freedom in the UK</strong> <code>bigbrotherwatch.org.uk</code></a> - <a href="https://news.ycombinator.com/item?id=47712222">87 comments 176 points</a></li>
<li><a href="https://blog.skypilot.co/research-driven-agents/"><strong>Research-Driven Agents: When an agent reads before it codes</strong> <code>blog.skypilot.co</code></a> - <a href="https://news.ycombinator.com/item?id=47706141">48 comments 165 points</a></li>
<li><a href="https://iucn.org/press-release/202604/emperor-penguin-and-antarctic-fur-seal-now-endangered-due-climate-change-iucn"><strong>Emperor penguin and Antarctic fur seal now endangered</strong> <code>iucn.org</code></a> - <a href="https://news.ycombinator.com/item?id=47705324">49 comments 154 points</a></li>
<li><a href="https://cssstudio.ai"><strong>Show HN: CSS Studio. Design by hand, code by agent</strong> <code>cssstudio.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47702196">95 comments 150 points</a></li>
<li><a href="https://old.reddit.com/r/webdev/comments/1sglytg/bunnycdn_has_been_silently_losing_our_production/"><strong>BunnyCDN has been silently losing our production files for 15 months</strong> <code>old.reddit.com</code></a> - <a href="https://news.ycombinator.com/item?id=47710845">31 comments 147 points</a></li>
<li><a href="https://redirect.github.com/randerson112/craft"><strong>Show HN: I built a Cargo-like build tool for C/C++</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47705413">126 comments 143 points</a></li>
<li><a href="https://getsession.org/donate"><strong>Session is shutting down in 90 days</strong> <code>getsession.org</code></a> - <a href="https://news.ycombinator.com/item?id=47703065">167 comments 140 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-09]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1302</link>
<guid isPermaLink="false">1302</guid>
<pubDate>Thu, 09 Apr 2026 06:21:08 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://piechowski.io/post/git-commands-before-reading-code/"><strong>Git commands I run before reading any code</strong> <code>piechowski.io</code></a> - <a href="https://news.ycombinator.com/item?id=47687273">405 comments 1940 points</a></li>
<li><a href="https://bryankeller.github.io/2026/04/08/porting-mac-os-x-nintendo-wii.html"><strong>I ported Mac OS X to the Nintendo Wii</strong> <code>bryankeller.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47691730">244 comments 1433 points</a></li>
<li><a href="https://sourceforge.net/p/veracrypt/discussion/general/thread/9620d7a4b3/"><strong>Veracrypt project update</strong> <code>sourceforge.net</code></a> - <a href="https://news.ycombinator.com/item?id=47686549">437 comments 1183 points</a></li>
<li><a href="https://www.cnet.com/home/security/when-flock-comes-to-town-why-cities-are-axing-the-controversial-surveillance-technology/"><strong>US cities are axing Flock Safety surveillance technology</strong> <code>www.cnet.com</code></a> - <a href="https://news.ycombinator.com/item?id=47689237">396 comments 682 points</a></li>
<li><a href="https://www.skoda-storyboard.com/en/skoda-world/skoda-duobell-a-bicycle-bell-that-outsmarts-even-smart-headphones/"><strong>Škoda DuoBell: A bicycle bell that penetrates noise-cancelling headphones</strong> <code>www.skoda-storyboard.com</code></a> - <a href="https://news.ycombinator.com/item?id=47687248">555 comments 553 points</a></li>
<li><a href="https://www.404media.co/microsoft-abruptly-terminates-veracrypt-account-halting-windows-updates/"><strong>Microsoft terminates VeraCrypt account, halting Windows updates</strong> <code>www.404media.co</code></a> - <a href="https://news.ycombinator.com/item?id=47690977">190 comments 511 points</a></li>
<li><a href="http://www.terrybisson.com/theyre-made-out-of-meat-2/"><strong>They're made out of meat (1991)</strong> <code>www.terrybisson.com</code></a> - <a href="https://news.ycombinator.com/item?id=47688678">137 comments 483 points</a></li>
<li><a href="https://aphyr.com/posts/411-the-future-of-everything-is-lies-i-guess"><strong>ML promises to be profoundly weird</strong> <code>aphyr.com</code></a> - <a href="https://news.ycombinator.com/item?id=47689648">463 comments 454 points</a></li>
<li><a href="https://obdev.at/products/littlesnitch-linux/index.html"><strong>LittleSnitch for Linux</strong> <code>obdev.at</code></a> - <a href="https://news.ycombinator.com/item?id=47697870">141 comments 451 points</a></li>
<li><a href="https://www.youtube.com/watch?v=Lw4W9V57SKs&t=5716s"><strong>Revision Demoparty 2026: Razor1911 [video]</strong> <code>www.youtube.com</code></a> - <a href="https://news.ycombinator.com/item?id=47685739">124 comments 361 points</a></li>
<li><a href="https://www.ishormuzopenyet.com/"><strong>Show HN: Is Hormuz open yet?</strong> <code>www.ishormuzopenyet.com</code></a> - <a href="https://news.ycombinator.com/item?id=47696562">140 comments 346 points</a></li>
<li><a href="https://nickvecchioni.github.io/thoughts/2026/04/08/anthropic-support-doesnt-exist/"><strong>I've been waiting over a month for Anthropic to respond to my billing issue</strong> <code>nickvecchioni.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47693679">156 comments 332 points</a></li>
<li><a href="https://ai.meta.com/blog/introducing-muse-spark-msl/?_fb_noscript=1"><strong>Muse Spark: Scaling towards personal superintelligence</strong> <code>ai.meta.com</code></a> - <a href="https://news.ycombinator.com/item?id=47692043">319 comments 318 points</a></li>
<li><a href="https://kalmanfilter.net"><strong>Understanding the Kalman filter with a simple radar example</strong> <code>kalmanfilter.net</code></a> - <a href="https://news.ycombinator.com/item?id=47693153">38 comments 298 points</a></li>
<li><a href="https://mariozechner.at/posts/2026-04-08-ive-sold-out/"><strong>I've sold out</strong> <code>mariozechner.at</code></a> - <a href="https://news.ycombinator.com/item?id=47687533">179 comments 289 points</a></li>
<li><a href="https://arxiv.org/abs/2604.05091"><strong>MegaTrain: Full Precision Training of 100B+ Parameter LLMs on a Single GPU</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=47689174">51 comments 283 points</a></li>
<li><a href="https://www.thedrive.com/news/john-deere-to-pay-99-million-in-monumental-right-to-repair-settlement"><strong>John Deere to pay $99M in right-to-repair settlement</strong> <code>www.thedrive.com</code></a> - <a href="https://news.ycombinator.com/item?id=47696035">67 comments 261 points</a></li>
<li><a href="https://werwolv.net/posts/usb_for_sw_devs/"><strong>USB for Software Developers: An introduction to writing userspace USB drivers</strong> <code>werwolv.net</code></a> - <a href="https://news.ycombinator.com/item?id=47695012">31 comments 256 points</a></li>
<li><a href="https://blog.railway.com/p/moving-railways-frontend-off-nextjs"><strong>We moved Railway's frontend off Next.js. Builds went from 10+ mins to under 2</strong> <code>blog.railway.com</code></a> - <a href="https://news.ycombinator.com/item?id=47685945">183 comments 203 points</a></li>
<li><a href="https://meta.ai/"><strong>Muse Spark – Meta Superintelligence Labs</strong> <code>meta.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47692102">5 comments 192 points</a></li>
<li><a href="https://www.ft.com/content/02aefac4-ea62-48db-9326-c0da373b11b8"><strong>Iran demands Bitcoin fees for ships passing Hormuz during ceasefire</strong> <code>www.ft.com</code></a> - <a href="https://news.ycombinator.com/item?id=47690434">250 comments 156 points</a></li>
<li><a href="https://claude.com/blog/claude-managed-agents"><strong>Claude Managed Agents</strong> <code>claude.com</code></a> - <a href="https://news.ycombinator.com/item?id=47693047">68 comments 153 points</a></li>
<li><a href="https://www.hatchmag.com/articles/trump-administration-orders-dismantling-us-forest-service/7716263"><strong>Trump administration orders dismantling of the U.S. Forest Service</strong> <code>www.hatchmag.com</code></a> - <a href="https://news.ycombinator.com/item?id=47698132">30 comments 136 points</a></li>
<li><a href="https://joshghent.com/online-shopping/"><strong>One item purchased, ten emails</strong> <code>joshghent.com</code></a> - <a href="https://news.ycombinator.com/item?id=47694093">93 comments 117 points</a></li>
<li><a href="https://www.theguardian.com/business/2026/apr/08/polymarket-trump-us-iran-ceasefire"><strong>Newly created Polymarket accounts win big on well-timed Iran ceasefire bets</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47698082">79 comments 108 points</a></li>
<li><a href="http://oj-hn.com/"><strong>Show HN: Orange Juice – Small UX improvements that make HN easier to read</strong> <code>oj-hn.com</code></a> - <a href="https://news.ycombinator.com/item?id=47694036">127 comments 107 points</a></li>
<li><a href="https://swift.org/blog/expanding-swift-ide-support/"><strong>Expanding Swift's IDE Support</strong> <code>swift.org</code></a> - <a href="https://news.ycombinator.com/item?id=47694983">44 comments 102 points</a></li>
<li><a href="https://redirect.github.com/pcruz1905/hls-restream-proxy"><strong>Show HN: I pipe free sports streams into Jellyfin – no ads, just HLS</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47689165">30 comments 99 points</a></li>
<li><a href="https://leehanchung.github.io/blogs/2026/04/05/the-ai-great-leap-forward/"><strong>The AI Great Leap Forward</strong> <code>leehanchung.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47695647">44 comments 89 points</a></li>
<li><a href="https://astral.sh/blog/open-source-security-at-astral"><strong>Open Source Security at Astral</strong> <code>astral.sh</code></a> - <a href="https://news.ycombinator.com/item?id=47699181">5 comments 85 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-08]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1301</link>
<guid isPermaLink="false">1301</guid>
<pubDate>Wed, 08 Apr 2026 06:20:52 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.anthropic.com/glasswing"><strong>Project Glasswing: Securing critical software for the AI era</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47679121">532 comments 1127 points</a></li>
<li><a href="https://sam-burns.com/posts/concrete-laptop-stand/"><strong>Show HN: Brutalist Concrete Laptop Stand (2024)</strong> <code>sam-burns.com</code></a> - <a href="https://news.ycombinator.com/item?id=47673360">227 comments 742 points</a></li>
<li><a href="https://www-cdn.anthropic.com/53566bf5440a10affd749724787c8913a2ae0841.pdf"><strong>System Card: Claude Mythos Preview [pdf]</strong> <code>www-cdn.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47679258">449 comments 635 points</a></li>
<li><a href="https://idiocracy.wtf/"><strong>Are We Idiocracy Yet?</strong> <code>idiocracy.wtf</code></a> - <a href="https://news.ycombinator.com/item?id=47672818">517 comments 603 points</a></li>
<li><a href="https://www.nasa.gov/gallery/lunar-flyby/"><strong>Lunar Flyby</strong> <code>www.nasa.gov</code></a> - <a href="https://news.ycombinator.com/item?id=47676509">133 comments 577 points</a></li>
<li><a href="https://z.ai/blog/glm-5.1"><strong>GLM-5.1: Towards Long-Horizon Tasks</strong> <code>z.ai</code></a> - <a href="https://news.ycombinator.com/item?id=47677853">197 comments 486 points</a></li>
<li><a href="https://www.juxt.pro/blog/a-bug-on-the-dark-side-of-the-moon/"><strong>We found an undocumented bug in the Apollo 11 guidance computer code</strong> <code>www.juxt.pro</code></a> - <a href="https://news.ycombinator.com/item?id=47673005">192 comments 407 points</a></li>
<li><a href="https://www.theguardian.com/us-news/2026/apr/07/trump-iran-war-ceasefire"><strong>US and Iran agree to provisional ceasefire</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47682276">1056 comments 391 points</a></li>
<li><a href="https://jola.dev/posts/dropping-cloudflare"><strong>Dropping Cloudflare for Bunny.net</strong> <code>jola.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47675013">194 comments 381 points</a></li>
<li><a href="https://www.bbc.com/news/articles/c0rx7xzd10xo"><strong>Cambodia unveils statue to honour famous landmine-sniffing rat</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47678573">71 comments 352 points</a></li>
<li><a href="https://sheets.works/data-viz/every-gpu"><strong>Every GPU That Mattered</strong> <code>sheets.works</code></a> - <a href="https://news.ycombinator.com/item?id=47672295">195 comments 311 points</a></li>
<li><a href="https://blog.cloudflare.com/post-quantum-roadmap/"><strong>Cloudflare targets 2029 for full post-quantum security</strong> <code>blog.cloudflare.com</code></a> - <a href="https://news.ycombinator.com/item?id=47675625">95 comments 305 points</a></li>
<li><a href="https://www.sciencealert.com/how-12-000-tonnes-of-dumped-orange-peel-produced-something-nobody-imagined"><strong>12k Tons of Dumped Orange Peel Grew into a Landscape Nobody Expected (2017)</strong> <code>www.sciencealert.com</code></a> - <a href="https://news.ycombinator.com/item?id=47677142">111 comments 281 points</a></li>
<li><a href="https://slate.com/technology/2019/02/openai-gpt2-text-generating-algorithm-ai-dangerous.html"><strong>OpenAI says its new model GPT-2 is too dangerous to release (2019)</strong> <code>slate.com</code></a> - <a href="https://news.ycombinator.com/item?id=47684326">82 comments 280 points</a></li>
<li><a href="https://red.anthropic.com/2026/mythos-preview/"><strong>Assessing Claude Mythos Preview's cybersecurity capabilities</strong> <code>red.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47679155">40 comments 278 points</a></li>
<li><a href="https://www.allthingsdistributed.com/2026/04/s3-files-and-the-changing-face-of-s3.html"><strong>S3 Files</strong> <code>www.allthingsdistributed.com</code></a> - <a href="https://news.ycombinator.com/item?id=47680404">77 comments 266 points</a></li>
<li><a href="https://www.reuters.com/world/middle-east/trump-says-a-whole-civilization-will-die-tonight-if-iran-does-not-make-deal-2026-04-07/"><strong>Trump says 'a whole civilization will die tonight' if Iran does not make a deal</strong> <code>www.reuters.com</code></a> - <a href="https://news.ycombinator.com/item?id=47674286">156 comments 243 points</a></li>
<li><a href="https://rajnandan.com/posts/taste-in-the-age-of-ai-and-llms/"><strong>Taste in the age of AI and LLMs</strong> <code>rajnandan.com</code></a> - <a href="https://news.ycombinator.com/item?id=47677241">193 comments 233 points</a></li>
<li><a href="https://locker.dev"><strong>Show HN: Stop paying for Dropbox/Google Drive, use your own S3 bucket instead</strong> <code>locker.dev</code></a> - <a href="https://news.ycombinator.com/item?id=47673394">194 comments 232 points</a></li>
<li><a href="https://redirect.github.com/anthropics/claude-code/issues/44257"><strong>Claude Code login fails with OAuth timeout on Windows</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47676521">294 comments 218 points</a></li>
<li><a href="https://dornsife.usc.edu/news/stories/ai-may-be-making-us-think-and-write-more-alike/"><strong>AI may be making us think and write more alike</strong> <code>dornsife.usc.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47673541">230 comments 217 points</a></li>
<li><a href="https://www.infoq.com/news/2026/04/google-agent-testbed-scion/"><strong>Google open-sources experimental agent orchestration testbed Scion</strong> <code>www.infoq.com</code></a> - <a href="https://news.ycombinator.com/item?id=47675213">49 comments 182 points</a></li>
<li><a href="https://printervention.app/details"><strong>Rescuing old printers with an in-browser Linux VM bridged to WebUSB over USB/IP</strong> <code>printervention.app</code></a> - <a href="https://news.ycombinator.com/item?id=47677885">79 comments 181 points</a></li>
<li><a href="https://tubesoundquiz.com/"><strong>Identify a London Underground Line just by listening to it</strong> <code>tubesoundquiz.com</code></a> - <a href="https://news.ycombinator.com/item?id=47672884">53 comments 173 points</a></li>
<li><a href="https://www.johnsto.co.uk/blog/blackholing-my-email/"><strong>Blackholing My Email</strong> <code>www.johnsto.co.uk</code></a> - <a href="https://news.ycombinator.com/item?id=47672318">33 comments 171 points</a></li>
<li><a href="https://middle-earth-interactive-map.web.app/"><strong>Show HN: An interactive map of Tolkien's Middle-earth</strong> <code>middle-earth-interactive-map.web.app</code></a> - <a href="https://news.ycombinator.com/item?id=47681112">31 comments 159 points</a></li>
<li><a href="https://redirect.github.com/mattmireles/gemma-tuner-multimodal"><strong>Show HN: Gemma 4 Multimodal Fine-Tuner for Apple Silicon</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47680309">22 comments 158 points</a></li>
<li><a href="https://www.intofarlands.com/atlasofarda"><strong>Show HN: A cartographer's attempt to realistically map Tolkien's world</strong> <code>www.intofarlands.com</code></a> - <a href="https://news.ycombinator.com/item?id=47674027">28 comments 156 points</a></li>
<li><a href="https://www.nbcnews.com/politics/white-house/trump-threat-whole-civilization-will-die-iran-war-deadline-hormuz-rcna267059"><strong>A whole civilization might die tonight</strong> <code>www.nbcnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=47678666">94 comments 141 points</a></li>
<li><a href="https://nehanarula.org/2026/04/03/bitcoin-and-quantum-computing.html"><strong>Bitcoin and quantum computing</strong> <code>nehanarula.org</code></a> - <a href="https://news.ycombinator.com/item?id=47681274">92 comments 131 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-07]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1300</link>
<guid isPermaLink="false">1300</guid>
<pubDate>Tue, 07 Apr 2026 06:18:51 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.newyorker.com/magazine/2026/04/13/sam-altman-may-control-our-future-can-he-be-trusted"><strong>Sam Altman may control our future – can he be trusted?</strong> <code>www.newyorker.com</code></a> - <a href="https://news.ycombinator.com/item?id=47659135">456 comments 1191 points</a></li>
<li><a href="https://redirect.github.com/anthropics/claude-code/issues/42796"><strong>Issue: Claude Code is unusable for complex engineering tasks with Feb updates</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47660925">531 comments 936 points</a></li>
<li><a href="https://www.0xsid.com/blog/wont-download-your-app"><strong>I won't download your app. The web version is a-ok</strong> <code>www.0xsid.com</code></a> - <a href="https://news.ycombinator.com/item?id=47661439">499 comments 852 points</a></li>
<li><a href="https://www.mining.com/france-pulls-last-gold-held-in-us-for-15b-gain/"><strong>France pulls last gold held in US</strong> <code>www.mining.com</code></a> - <a href="https://news.ycombinator.com/item?id=47658146">319 comments 579 points</a></li>
<li><a href="https://bramcohen.com/p/the-cult-of-vibe-coding-is-insane"><strong>The cult of vibe coding is dogfooding run amok</strong> <code>bramcohen.com</code></a> - <a href="https://news.ycombinator.com/item?id=47664912">450 comments 517 points</a></li>
<li><a href="https://www.wesnoth.org"><strong>Battle for Wesnoth: open-source, turn-based strategy game</strong> <code>www.wesnoth.org</code></a> - <a href="https://news.ycombinator.com/item?id=47664186">126 comments 444 points</a></li>
<li><a href="https://words.filippo.io/crqc-timeline/"><strong>A cryptography engineer's perspective on quantum computing timelines</strong> <code>words.filippo.io</code></a> - <a href="https://news.ycombinator.com/item?id=47662234">172 comments 418 points</a></li>
<li><a href="https://belief.horse/notes/what-being-ripped-off-taught-me/"><strong>What being ripped off taught me</strong> <code>belief.horse</code></a> - <a href="https://news.ycombinator.com/item?id=47660286">192 comments 375 points</a></li>
<li><a href="https://twitter.com/Suzierizzo1/status/2040864617467924865"><strong>81yo Dodgers fan can no longer get tickets because he doesn't have a smartphone</strong> <code>twitter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47662857">394 comments 345 points</a></li>
<li><a href="https://redirect.github.com/matthartman/ghost-pepper"><strong>Show HN: Ghost Pepper – Local hold-to-talk speech-to-text for macOS</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47666024">141 comments 337 points</a></li>
<li><a href="https://tboteproject.com/surveillancefindings/"><strong>Age verification as mass surveillance infrastructure</strong> <code>tboteproject.com</code></a> - <a href="https://news.ycombinator.com/item?id=47659109">106 comments 293 points</a></li>
<li><a href="https://krebsonsecurity.com/2026/04/germany-doxes-unkn-head-of-ru-ransomware-gangs-revil-gandcrab/"><strong>German police name alleged leaders of GandCrab and REvil ransomware groups</strong> <code>krebsonsecurity.com</code></a> - <a href="https://news.ycombinator.com/item?id=47660954">139 comments 284 points</a></li>
<li><a href="https://www.osnews.com/story/144737/adobe-secretly-modifies-your-hosts-file-for-the-stupidest-reason/"><strong>Adobe modifies hosts file to detect whether Creative Cloud is installed</strong> <code>www.osnews.com</code></a> - <a href="https://news.ycombinator.com/item?id=47664205">136 comments 282 points</a></li>
<li><a href="https://www.govauctions.app/"><strong>Show HN: GovAuctions lets you browse government auctions at once</strong> <code>www.govauctions.app</code></a> - <a href="https://news.ycombinator.com/item?id=47662945">74 comments 259 points</a></li>
<li><a href="https://www.freestyle.sh/"><strong>Launch HN: Freestyle – Sandboxes for Coding Agents</strong> <code>www.freestyle.sh</code></a> - <a href="https://news.ycombinator.com/item?id=47663147">137 comments 246 points</a></li>
<li><a href="https://www.dw.com/en/is-germanys-gold-safe-in-new-york/video-75766873"><strong>Is Germany's gold safe in New York ?</strong> <code>www.dw.com</code></a> - <a href="https://news.ycombinator.com/item?id=47659252">256 comments 233 points</a></li>
<li><a href="https://www.stephendiehl.com/posts/no_antimimetics/"><strong>Book review: There Is No Antimemetics Division</strong> <code>www.stephendiehl.com</code></a> - <a href="https://news.ycombinator.com/item?id=47660853">169 comments 229 points</a></li>
<li><a href="https://www.anthropic.com/news/google-broadcom-partnership-compute"><strong>Anthropic expands partnership with Google and Broadcom for next-gen compute</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47667717">94 comments 210 points</a></li>
<li><a href="https://blog.ericgoldman.org/archives/2025/06/after-20-years-i-turned-off-google-adsense-for-my-websites.htm"><strong>After 20 years I turned off Google Adsense for my websites (2025)</strong> <code>blog.ericgoldman.org</code></a> - <a href="https://news.ycombinator.com/item?id=47668727">112 comments 165 points</a></li>
<li><a href="https://redirect.github.com/anzellai/sky"><strong>Sky – an Elm-inspired language that compiles to Go</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47662116">53 comments 151 points</a></li>
<li><a href="https://www.showbiz411.com/2026/04/05/itunes-takeover-by-fake-ai-singer-eddie-dalton-now-occupies-eleven-spots-on-chart-despite-not-being-human-or-real-exclusive"><strong>AI singer now occupies eleven spots on iTunes singles chart</strong> <code>www.showbiz411.com</code></a> - <a href="https://news.ycombinator.com/item?id=47662596">205 comments 139 points</a></li>
<li><a href="https://photon.codes/blog/we-found-a-ticking-time-bomb-in-macos-tcp-networking"><strong>A macOS bug that causes TCP networking to stop working after 49.7 days</strong> <code>photon.codes</code></a> - <a href="https://news.ycombinator.com/item?id=47666488">88 comments 139 points</a></li>
<li><a href="https://www.newyorker.com/culture/infinite-scroll/the-team-behind-a-pro-iran-lego-themed-viral-video-campaign"><strong>The team behind a pro-Iran, Lego-themed viral-video campaign</strong> <code>www.newyorker.com</code></a> - <a href="https://news.ycombinator.com/item?id=47661065">185 comments 123 points</a></li>
<li><a href="https://lalitm.com/til-number-in-man-page-titles-e-g-sleep-3/"><strong>Number in man page titles e.g. sleep(3)</strong> <code>lalitm.com</code></a> - <a href="https://news.ycombinator.com/item?id=47658743">70 comments 121 points</a></li>
<li><a href="https://www.science.org/content/blog-post/ah-peptides-where-begin"><strong>Peptides: where to begin?</strong> <code>www.science.org</code></a> - <a href="https://news.ycombinator.com/item?id=47667321">131 comments 99 points</a></li>
<li><a href="https://www.psypost.org/intelligent-people-are-better-judges-of-the-intelligence-of-others/"><strong>Intelligent people are better judges of the intelligence of others</strong> <code>www.psypost.org</code></a> - <a href="https://news.ycombinator.com/item?id=47664389">114 comments 97 points</a></li>
<li><a href="https://redirect.github.com/andmarti1424/sc-im"><strong>Sc-im: Spreadsheets in your terminal</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47662658">28 comments 96 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47665194"><strong>Zooming UIs in 2026: Prezi, impress.js, and why I built something different</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47665194">42 comments 88 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47667504"><strong>Ask HN: How do you handle marketing as a solo technical founder?</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47667504">58 comments 87 points</a></li>
<li><a href="https://redirect.github.com/solod-dev/solod"><strong>Solod – A Subset of Go That Translates to C</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47669337">21 comments 87 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-06]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1299</link>
<guid isPermaLink="false">1299</guid>
<pubDate>Mon, 06 Apr 2026 06:53:48 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://ergosphere.blog/posts/the-machines-are-fine/"><strong>The threat is comfortable drift toward not understanding what you're doing</strong> <code>ergosphere.blog</code></a> - <a href="https://news.ycombinator.com/item?id=47647788">570 comments 855 points</a></li>
<li><a href="https://redirect.github.com/JuliusBrussee/caveman"><strong>Caveman: Why use many token when few token do trick</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47647455">325 comments 748 points</a></li>
<li><a href="https://lalitm.com/post/building-syntaqlite-ai/"><strong>Eight years of wanting, three months of building with AI</strong> <code>lalitm.com</code></a> - <a href="https://news.ycombinator.com/item?id=47648828">222 comments 744 points</a></li>
<li><a href="https://apps.apple.com/nl/app/google-ai-edge-gallery/id6749645337"><strong>Gemma 4 on iPhone</strong> <code>apps.apple.com</code></a> - <a href="https://news.ycombinator.com/item?id=47652561">144 comments 557 points</a></li>
<li><a href="https://www.bbc.com/news/videos/ce3d5gkd2geo"><strong>Artemis II crew see first glimpse of far side of Moon [video]</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47649721">359 comments 464 points</a></li>
<li><a href="https://sschueller.github.io/posts/the-free-market-lie/"><strong>Why Switzerland has 25 Gbit internet and America doesn't</strong> <code>sschueller.github.io</code></a> - <a href="https://news.ycombinator.com/item?id=47652400">290 comments 392 points</a></li>
<li><a href="https://shkspr.mobi/blog/2026/04/someone-at-browserstack-is-leaking-users-email-address/"><strong>Someone at BrowserStack is leaking users' email addresses</strong> <code>shkspr.mobi</code></a> - <a href="https://news.ycombinator.com/item?id=47649117">100 comments 370 points</a></li>
<li><a href="https://www.jsnover.com/blog/2026/03/13/microsoft-hasnt-had-a-coherent-gui-strategy-since-petzold/"><strong>Microsoft hasn't had a coherent GUI strategy since Petzold</strong> <code>www.jsnover.com</code></a> - <a href="https://news.ycombinator.com/item?id=47651703">196 comments 354 points</a></li>
<li><a href="https://www.tandfonline.com/doi/full/10.1080/23328940.2026.2645467#abstract"><strong>Finnish sauna heat exposure induces stronger immune cell than cytokine responses</strong> <code>www.tandfonline.com</code></a> - <a href="https://news.ycombinator.com/item?id=47649113">230 comments 353 points</a></li>
<li><a href="https://zencapital.substack.com/p/sad-story-of-my-google-workspace"><strong>My Google Workspace account suspension</strong> <code>zencapital.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47648404">197 comments 345 points</a></li>
<li><a href="https://redirect.github.com/arman-bd/guppylm"><strong>Show HN: I built a tiny LLM to demystify how language models work</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47655408">26 comments 315 points</a></li>
<li><a href="https://lisette.run/"><strong>Lisette a little language inspired by Rust that compiles to Go</strong> <code>lisette.run</code></a> - <a href="https://news.ycombinator.com/item?id=47646843">138 comments 257 points</a></li>
<li><a href="https://ai.georgeliu.com/p/running-google-gemma-4-locally-with"><strong>Running Gemma 4 locally with LM Studio's new headless CLI and Claude Code</strong> <code>ai.georgeliu.com</code></a> - <a href="https://news.ycombinator.com/item?id=47651540">57 comments 242 points</a></li>
<li><a href="https://help.openai.com/en/articles/20001106-codex-rate-card"><strong>Codex pricing to align with API token usage, instead of per-message</strong> <code>help.openai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47650726">182 comments 199 points</a></li>
<li><a href="https://playlists.at/youtube/search/"><strong>Show HN: I made a YouTube search form with advanced filters</strong> <code>playlists.at</code></a> - <a href="https://news.ycombinator.com/item?id=47655392">116 comments 192 points</a></li>
<li><a href="https://redirect.github.com/salmanmohammadi/nanocode/discussions/1"><strong>Nanocode: The best Claude Code that $200 can buy in pure JAX on TPUs</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47649742">24 comments 181 points</a></li>
<li><a href="https://blog.documentfoundation.org/blog/2026/04/05/lets-put-an-end-to-the-speculation/"><strong>LibreOffice – Let's put an end to the speculation</strong> <code>blog.documentfoundation.org</code></a> - <a href="https://news.ycombinator.com/item?id=47652324">105 comments 170 points</a></li>
<li><a href="https://www.marketwatch.com/story/employers-are-using-your-personal-data-to-figure-out-the-lowest-salary-youll-accept-c2b968fb"><strong>Employers use your personal data to figure out the lowest salary you'll accept</strong> <code>www.marketwatch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47655466">76 comments 166 points</a></li>
<li><a href="https://musicforprogramming.net"><strong>Music for Programming</strong> <code>musicforprogramming.net</code></a> - <a href="https://news.ycombinator.com/item?id=47652322">63 comments 155 points</a></li>
<li><a href="https://techcrunch.com/2026/04/05/japan-is-proving-experimental-physical-ai-is-ready-for-the-real-world/"><strong>In Japan, the robot isn't coming for your job; it's filling the one nobody wants</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47654620">180 comments 154 points</a></li>
<li><a href="https://japantoday.com/category/politics/japanese-french-and-omani-vessels-cross-the-strait-of-hormuz"><strong>Japanese, French and Omani vessels cross Strait of Hormuz</strong> <code>japantoday.com</code></a> - <a href="https://news.ycombinator.com/item?id=47649811">202 comments 152 points</a></li>
<li><a href="https://www.mattkeeter.com/blog/2026-04-05-tailcall/"><strong>A tail-call interpreter in (nightly) Rust</strong> <code>www.mattkeeter.com</code></a> - <a href="https://news.ycombinator.com/item?id=47650312">28 comments 152 points</a></li>
<li><a href="https://techcrunch.com/2026/04/05/copilot-is-for-entertainment-purposes-only-according-to-microsofts-terms-of-service/"><strong>Copilot is 'for entertainment purposes only', per Microsoft's terms of use</strong> <code>techcrunch.com</code></a> - <a href="https://news.ycombinator.com/item?id=47655329">33 comments 150 points</a></li>
<li><a href="https://www.latimes.com/business/story/2026-04-01/openais-shocking-fall-from-grace-as-investors-race-to-anthropic"><strong>OpenAI's fall from grace as investors race to Anthropic</strong> <code>www.latimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47655058">98 comments 144 points</a></li>
<li><a href="https://friendi.ca/"><strong>Friendica – A Decentralized Social Network</strong> <code>friendi.ca</code></a> - <a href="https://news.ycombinator.com/item?id=47648048">51 comments 143 points</a></li>
<li><a href="https://www.axios.com/2026/04/05/phone-free-restaurants-bars-bans-restrictions-offline"><strong>Phone-free bars and restaurants on the rise across the U.S.</strong> <code>www.axios.com</code></a> - <a href="https://news.ycombinator.com/item?id=47650172">139 comments 142 points</a></li>
<li><a href="https://www.ugr.es/en/about/news/bacteria-found-human-intestine-capable-improving-muscle-strength"><strong>Bacteria found in the human intestine capable of improving muscle strength</strong> <code>www.ugr.es</code></a> - <a href="https://news.ycombinator.com/item?id=47652726">73 comments 142 points</a></li>
<li><a href="https://www.howtogeek.com/ubuntu-now-requires-more-ram-than-windows-11/"><strong>Ubuntu now requires more RAM than Windows 11</strong> <code>www.howtogeek.com</code></a> - <a href="https://news.ycombinator.com/item?id=47648452">179 comments 138 points</a></li>
<li><a href="https://websites.umich.edu/~mejn/cp2/"><strong>Computational Physics (2nd Edition) (2025)</strong> <code>websites.umich.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47650502">17 comments 133 points</a></li>
<li><a href="https://www.cnn.com/2026/04/05/us/colorado-field-drug-test-law"><strong>Common drug tests lead to tens of thousands wrongful arrests a year</strong> <code>www.cnn.com</code></a> - <a href="https://news.ycombinator.com/item?id=47648438">93 comments 116 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-05]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1298</link>
<guid isPermaLink="false">1298</guid>
<pubDate>Sun, 05 Apr 2026 06:13:53 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://www.thetimes.com/uk/technology-uk/article/sarah-wynn-williams-careless-people-meta-nrffdfpmf"><strong>Author of "Careless People" banned from saying anything negative about Meta</strong> <code>www.thetimes.com</code></a> - <a href="https://news.ycombinator.com/item?id=47639524">502 comments 762 points</a></li>
<li><a href="https://jaso1024.com/mvidia/"><strong>Show HN: A game where you build a GPU</strong> <code>jaso1024.com</code></a> - <a href="https://news.ycombinator.com/item?id=47640728">144 comments 612 points</a></li>
<li><a href="https://arxiv.org/abs/2604.01193"><strong>Embarrassingly simple self-distillation improves code generation</strong> <code>arxiv.org</code></a> - <a href="https://news.ycombinator.com/item?id=47637757">169 comments 582 points</a></li>
<li><a href="https://teybannerman.com/strategy/2026/03/31/how-many-microsoft-copilot-are-there.html"><strong>How many products does Microsoft have named 'Copilot'?</strong> <code>teybannerman.com</code></a> - <a href="https://news.ycombinator.com/item?id=47642569">260 comments 534 points</a></li>
<li><a href="https://www.theverge.com/tech/907003/apple-approves-driver-that-lets-nvidia-egpus-work-with-arm-macs"><strong>Apple approves driver that lets Nvidia eGPUs work with Arm Macs</strong> <code>www.theverge.com</code></a> - <a href="https://news.ycombinator.com/item?id=47640380">176 comments 404 points</a></li>
<li><a href="https://www.dw.com/en/german-men-need-military-permit-for-extended-stays-abroad/a-76662677"><strong>German men 18-45 need military permit for extended stays abroad</strong> <code>www.dw.com</code></a> - <a href="https://news.ycombinator.com/item?id=47639976">620 comments 361 points</a></li>
<li><a href="https://thoughts.wyounas.com/p/some-unusual-trees"><strong>Some Unusual Trees</strong> <code>thoughts.wyounas.com</code></a> - <a href="https://news.ycombinator.com/item?id=47637287">80 comments 270 points</a></li>
<li><a href="https://magazine.sebastianraschka.com/p/components-of-a-coding-agent"><strong>Components of a Coding Agent</strong> <code>magazine.sebastianraschka.com</code></a> - <a href="https://news.ycombinator.com/item?id=47638810">67 comments 209 points</a></li>
<li><a href="https://www.phoronix.com/news/Linux-7.0-AWS-PostgreSQL-Drop"><strong>AWS engineer reports PostgreSQL perf halved by Linux 7.0, fix may not be easy</strong> <code>www.phoronix.com</code></a> - <a href="https://news.ycombinator.com/item?id=47644864">47 comments 209 points</a></li>
<li><a href="https://www.npr.org/2026/04/04/nx-s1-5773354/legal-sports-betting-research-credit-bankruptcy"><strong>When legal sports betting surges, so do Americans' financial problems</strong> <code>www.npr.org</code></a> - <a href="https://news.ycombinator.com/item?id=47639727">123 comments 182 points</a></li>
<li><a href="https://www.anthropic.com/research/emotion-concepts-function"><strong>Emotion concepts and their function in a large language model</strong> <code>www.anthropic.com</code></a> - <a href="https://news.ycombinator.com/item?id=47636435">166 comments 167 points</a></li>
<li><a href="https://www.tomshardware.com/tech-industry/iranian-missile-blitz-takes-down-aws-data-centers-in-bahrain-and-dubai-amazon-declares-hard-down-status-for-multiple-zones"><strong>Iranian missile blitz takes down AWS data centers in Bahrain and Dubai</strong> <code>www.tomshardware.com</code></a> - <a href="https://news.ycombinator.com/item?id=47641788">139 comments 157 points</a></li>
<li><a href="https://redirect.github.com/teamchong/turboquant-wasm"><strong>Show HN: TurboQuant-WASM – Google's vector quantization in the browser</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47639567">6 comments 148 points</a></li>
<li><a href="https://redirect.github.com/OneUptime/blog/commit/30cd2384794c897d95aca77d173db44af51ca849"><strong>12k AI-generated blog posts added in a single commit</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47640722">143 comments 143 points</a></li>
<li><a href="https://sllm.cloud"><strong>Show HN: sllm – Split a GPU node with other developers, unlimited tokens</strong> <code>sllm.cloud</code></a> - <a href="https://news.ycombinator.com/item?id=47639779">71 comments 142 points</a></li>
<li><a href="https://deadneurons.substack.com/p/why-the-most-valuable-things-you"><strong>Why the most valuable things you know are things you cannot say</strong> <code>deadneurons.substack.com</code></a> - <a href="https://news.ycombinator.com/item?id=47640775">47 comments 142 points</a></li>
<li><a href="https://next.jazzsequence.com/posts/the-cms-is-dead-long-live-the-cms"><strong>The CMS is dead, long live the CMS</strong> <code>next.jazzsequence.com</code></a> - <a href="https://news.ycombinator.com/item?id=47638075">79 comments 134 points</a></li>
<li><a href="https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f"><strong>LLM Wiki – example of an "idea file"</strong> <code>gist.github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47640875">35 comments 130 points</a></li>
<li><a href="https://scottlawsonbc.com/post/shooting-down-ideas"><strong>Shooting down ideas is not a skill</strong> <code>scottlawsonbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47645037">137 comments 128 points</a></li>
<li><a href="https://iii.social"><strong>The Indie Internet Index – submit your favorite sites</strong> <code>iii.social</code></a> - <a href="https://news.ycombinator.com/item?id=47639291">24 comments 124 points</a></li>
<li><a href="https://composerprogrammer.com/introductiontocomputermusic.pdf"><strong>Introduction to Computer Music (2009) [pdf]</strong> <code>composerprogrammer.com</code></a> - <a href="https://news.ycombinator.com/item?id=47645432">26 comments 107 points</a></li>
<li><a href="https://news.stanford.edu/stories/2026/03/immune-response-inside-cells-inflammation-research"><strong>Scientists observe an immune signaling complex forming inside cells</strong> <code>news.stanford.edu</code></a> - <a href="https://news.ycombinator.com/item?id=47641464">7 comments 106 points</a></li>
<li><a href="http://www.sopwith.org/"><strong>Sopwith – 1984 Game (2000)</strong> <code>www.sopwith.org</code></a> - <a href="https://news.ycombinator.com/item?id=47641615">39 comments 91 points</a></li>
<li><a href="https://apps.npr.org/life-on-tristan-da-cunha/"><strong>What life looks like on the most remote inhabited island</strong> <code>apps.npr.org</code></a> - <a href="https://news.ycombinator.com/item?id=47640431">23 comments 86 points</a></li>
<li><a href="https://isseven.app/"><strong>Isseven</strong> <code>isseven.app</code></a> - <a href="https://news.ycombinator.com/item?id=47645168">45 comments 84 points</a></li>
<li><a href="https://bmi.usercontent.opencode.de/eudi-wallet/wallet-development-documentation-public/latest/architecture-concept/06-mobile-devices/02-mdvm/"><strong>German implementation of eIDAS will require an Apple/Google account to function</strong> <code>bmi.usercontent.opencode.de</code></a> - <a href="https://news.ycombinator.com/item?id=47644406">51 comments 83 points</a></li>
<li><a href="https://jxnl.co/writing/2024/06/01/advice-to-young-people/"><strong>Advice to young people, the lies I tell myself (2024)</strong> <code>jxnl.co</code></a> - <a href="https://news.ycombinator.com/item?id=47644566">24 comments 81 points</a></li>
<li><a href="https://insideevs.com/news/791999/tesla-unsold-inventory-record-q1-2026/"><strong>Tesla Is Sitting on a Record 50k Unsold EVs</strong> <code>insideevs.com</code></a> - <a href="https://news.ycombinator.com/item?id=47638047">143 comments 76 points</a></li>
<li><a href="https://redirect.github.com/KaiPereira/Overglade-Badges"><strong>Show HN: I made open source, zero power PCB hackathon badges</strong> <code>github.com</code></a> - <a href="https://news.ycombinator.com/item?id=47639303">8 comments 76 points</a></li>
<li><a href="https://www.businessinsider.com/block-ceo-jack-dorsey-bring-prototypes-not-slide-decks-meetings-2026-4"><strong>Jack Dorsey says Block employees now bring prototypes, not slides, to meetings</strong> <code>www.businessinsider.com</code></a> - <a href="https://news.ycombinator.com/item?id=47638246">87 comments 71 points</a></li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hacker News Daily Top 30 @2026-04-04]]></title>
<link>https://github.com/meixger/hackernews-daily/issues/1297</link>
<guid isPermaLink="false">1297</guid>
<pubDate>Sat, 04 Apr 2026 06:38:59 GMT</pubDate>
<content:encoded><![CDATA[<ol>
<li><a href="https://text.blogosphere.app/"><strong>Show HN: I built a frontpage for personal blogs</strong> <code>text.blogosphere.app</code></a> - <a href="https://news.ycombinator.com/item?id=47625952">179 comments 697 points</a></li>
<li><a href="https://apfel.franzai.com"><strong>Show HN: Apfel – The free AI already on your Mac</strong> <code>apfel.franzai.com</code></a> - <a href="https://news.ycombinator.com/item?id=47624645">139 comments 663 points</a></li>
<li><a href="https://www.bbc.com/news/articles/ce8jzr423p9o"><strong>Artemis II crew take “spectacular” image of Earth</strong> <code>www.bbc.com</code></a> - <a href="https://news.ycombinator.com/item?id=47631118">243 comments 656 points</a></li>
<li><a href="https://news.ycombinator.com/item?id=47633396"><strong>Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw</strong> <code>news.ycombinator.com</code></a> - <a href="https://news.ycombinator.com/item?id=47633396">467 comments 517 points</a></li>
<li><a href="https://nationaltoday.com/us/tx/austin/news/2026/04/03/oracle-files-thousands-of-h-1b-visa-petitions-amid-mass-layoffs/"><strong>Oracle files H-1B visa petitions amid mass layoffs</strong> <code>nationaltoday.com</code></a> - <a href="https://news.ycombinator.com/item?id=47631732">264 comments 480 points</a></li>
<li><a href="https://www.theguardian.com/world/2026/apr/03/us-fighter-jet-confirmed-shot-down-over-iran"><strong>F-15E jet shot down over Iran</strong> <code>www.theguardian.com</code></a> - <a href="https://news.ycombinator.com/item?id=47628326">1007 comments 441 points</a></li>
<li><a href="https://www.inaturalist.org/"><strong>iNaturalist</strong> <code>www.inaturalist.org</code></a> - <a href="https://news.ycombinator.com/item?id=47629433">105 comments 384 points</a></li>
<li><a href="https://www.joanwestenberg.com/marc-andreessen-is-wrong-about-introspection/"><strong>Marc Andreessen is wrong about introspection</strong> <code>www.joanwestenberg.com</code></a> - <a href="https://news.ycombinator.com/item?id=47627056">447 comments 378 points</a></li>
<li><a href="https://only-eu.eu/en/"><strong>European alternatives to Google, Apple, Dropbox and 120 US apps</strong> <code>only-eu.eu</code></a> - <a href="https://news.ycombinator.com/item?id=47624741">156 comments 356 points</a></li>
<li><a href="https://www.eff.org/deeplinks/2026/04/faas-temporary-flight-restriction-drones-blatant-attempt-criminalize-filming-ice"><strong>The FAA’s flight restriction for drones is an attempt to criminalize filming ICE</strong> <code>www.eff.org</code></a> - <a href="https://news.ycombinator.com/item?id=47633947">95 comments 334 points</a></li>