-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexecutions.log
More file actions
4429 lines (3431 loc) · 138 KB
/
executions.log
File metadata and controls
4429 lines (3431 loc) · 138 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
2026/03/01 17:58:14 HubCommand ID: bec843b7-578a-409c-9cb8-c83439aa2926
2026/03/01 17:58:14 HubCommand Name: tr a-z A-Z
2026/03/01 17:58:14 HubCommand Args: [tr a-z A-Z]
2026/03/01 17:58:14 Status: SUCCESS
2026/03/01 17:58:14 STDOUT:
HELLO
WORLD
2026/03/01 17:59:31 HubCommand ID: e5a26656-10f5-4d9d-99e4-98156852017d
2026/03/01 17:59:31 HubCommand Name: printf "hello\nworld\n"
2026/03/01 17:59:31 HubCommand Args: [printf hello
world
]
2026/03/01 17:59:31 Status: SUCCESS
2026/03/01 17:59:31 STDOUT:
hello
world
2026/03/01 19:10:16 HubCommand ID: ca8b5c88-3f63-43f3-83fd-406d446238c9
2026/03/01 19:10:16 HubCommand Name: echo "Hello, World"
2026/03/01 19:10:16 HubCommand Args: [echo Hello, World]
2026/03/01 19:10:16 Status: SUCCESS
2026/03/01 19:10:16 STDOUT:
Hello, World
CMD RUNNER::>HubCommand ID: 8b15d398-4f42-42cc-8c68-a3bacd8c11b6
CMD RUNNER::>HubCommand Name: echo HelloWorld
CMD RUNNER::>HubCommand Args: []
CMD RUNNER::>Status: SUCCESS
CMD RUNNER::>STDOUT:
HelloWorld
CMD::>HubCommand ID: d2e9fa9d-4ad2-4b18-abe8-4764bee8b008
CMD::>HubCommand Name: echo HelloWorld
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
HelloWorld
CMD::>HubCommand ID: d3b31b5b-5a8b-4307-8990-b4f58f74f5b7
CMD::>HubCommand Name: echo HelloWorld
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
HelloWorld
CMD::>HubCommand ID: 0ee77759-a492-4117-8f9e-30a4fa411d3e
CMD::>HubCommand Name: echo HelloWorld
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
HelloWorld
CMD::>HubCommand ID: ad2eb08b-47cc-49de-bdea-fa6f62cc744f
CMD::>HubCommand Name: sudo netstat
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
CMD::>HubCommand ID: 014fd392-2bfc-4d3c-89ed-a0f797cec53f
CMD::>HubCommand ID: 14e16c9c-a768-4770-a4f9-c3766d12ec84
CMD::>HubCommand ID: 877268aa-9a66-4d22-84ee-382c25ea640b
CMD::>HubCommand ID: 7293d22f-b17d-4ebc-a096-592fb82497b2
CMD::>HubCommand ID: 9a76fcdd-4ace-40dc-b705-8212381e9d28
CMD::>HubCommand ID: 32aa4db6-f371-42d0-b47a-41b014e5ac17
CMD::>HubCommand ID: 9fa4bd57-c010-479c-b8c8-300f856d2a69
CMD::>HubCommand ID: 8ce32216-d7ca-4748-a57b-8f4f275413f7
CMD::>HubCommand ID: 2837785f-3c27-4f92-bde1-dfb923ca9220
CMD::>HubCommand Name: cat misc.txt
CMD::>HubCommand Args: []
CMD::>Status: RUNNING
CMD::>STDOUT:
If we change direction with the exec project I've been working on - it may be a series of utilities/command line programs to wrap regular shell commands:
execr ip neighbor show
^^^
The command has now been registered and will now be tracked/audited, allowing ops teams to tag and track ad-hoc operations. This will be useful if we need additional audit trails or point in time state replication.
Current Architecture as of Early Alpha:
__api/REST JSON/Web UI
Runner (SSH/HTTP/Process) <--> CmdLine Tool / RPC Call --> ^
> Service --> (Execute/Log/Persist/Track)--> Output/StdOut
--
SQLITE --- RDBMS/IOFile
DUCKDB ---------> Audit (Lineage)--->SQL-->Reports
CMD::>HubCommand ID: 9d4429a4-f718-4013-bcdd-39f6aa2745da
CMD::>HubCommand Name: cat misc.txt
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
If we change direction with the exec project I've been working on - it may be a series of utilities/command line programs to wrap regular shell commands:
execr ip neighbor show
^^^
The command has now been registered and will now be tracked/audited, allowing ops teams to tag and track ad-hoc operations. This will be useful if we need additional audit trails or point in time state replication.
Current Architecture as of Early Alpha:
__api/REST JSON/Web UI
Runner (SSH/HTTP/Process) <--> CmdLine Tool / RPC Call --> ^
> Service --> (Execute/Log/Persist/Track)--> Output/StdOut
--
SQLITE --- RDBMS/IOFile
DUCKDB ---------> Audit (Lineage)--->SQL-->Reports
CMD::>HubCommand ID: 04e92f0b-4a0e-4735-9d66-33d75ec78705
CMD::>HubCommand Name: cat misc.txt
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
If we change direction with the exec project I've been working on - it may be a series of utilities/command line programs to wrap regular shell commands:
execr ip neighbor show
^^^
The command has now been registered and will now be tracked/audited, allowing ops teams to tag and track ad-hoc operations. This will be useful if we need additional audit trails or point in time state replication.
Current Architecture as of Early Alpha:
__api/REST JSON/Web UI
Runner (SSH/HTTP/Process) <--> CmdLine Tool / RPC Call --> ^
> Service --> (Execute/Log/Persist/Track)--> Output/StdOut
--
SQLITE --- RDBMS/IOFile
DUCKDB ---------> Audit (Lineage)--->SQL-->Reports
CMD::>HubCommand ID: 9daeb65e-fa3e-4573-a783-ede661b32ca9
CMD::>HubCommand Name: cat misc.txt
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
If we change direction with the exec project I've been working on - it may be a series of utilities/command line programs to wrap regular shell commands:
execr ip neighbor show
^^^
The command has now been registered and will now be tracked/audited, allowing ops teams to tag and track ad-hoc operations. This will be useful if we need additional audit trails or point in time state replication.
Current Architecture as of Early Alpha:
__api/REST JSON/Web UI
Runner (SSH/HTTP/Process) <--> CmdLine Tool / RPC Call --> ^
> Service --> (Execute/Log/Persist/Track)--> Output/StdOut
--
SQLITE --- RDBMS/IOFile
DUCKDB ---------> Audit (Lineage)--->SQL-->Reports
CMD::>HubCommand ID: 9a55c623-0697-4916-8435-e43e0cd0293d
CMD::>HubCommand Name: cat misc.txt
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
If we change direction with the exec project I've been working on - it may be a series of utilities/command line programs to wrap regular shell commands:
execr ip neighbor show
^^^
The command has now been registered and will now be tracked/audited, allowing ops teams to tag and track ad-hoc operations. This will be useful if we need additional audit trails or point in time state replication.
Current Architecture as of Early Alpha:
__api/REST JSON/Web UI
Runner (SSH/HTTP/Process) <--> CmdLine Tool / RPC Call --> ^
> Service --> (Execute/Log/Persist/Track)--> Output/StdOut
--
SQLITE --- RDBMS/IOFile
DUCKDB ---------> Audit (Lineage)--->SQL-->Reports
CMD::>HubCommand ID: 02559a57-b693-4f66-b021-6fd2289f30e7
CMD::>HubCommand Name: cat misc.txt
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
If we change direction with the exec project I've been working on - it may be a series of utilities/command line programs to wrap regular shell commands:
execr ip neighbor show
^^^
The command has now been registered and will now be tracked/audited, allowing ops teams to tag and track ad-hoc operations. This will be useful if we need additional audit trails or point in time state replication.
Current Architecture as of Early Alpha:
__api/REST JSON/Web UI
Runner (SSH/HTTP/Process) <--> CmdLine Tool / RPC Call --> ^
> Service --> (Execute/Log/Persist/Track)--> Output/StdOut
--
SQLITE --- RDBMS/IOFile
DUCKDB ---------> Audit (Lineage)--->SQL-->Reports
CMD::>HubCommand ID: 5086a478-d414-4bf0-80c4-92778bb2a905
CMD::>HubCommand ID: 6d08eb70-94c9-4ec0-80ec-3f549eab6883
CMD::>HubCommand Name: lynx "-dump -nolist https://news.ycombinator.com/"
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
[ [1]About Lynx-Dev | [2]Lynx-Dev Archives ]
About Lynx
Lynx is a fully-featured World Wide Web (WWW) browser for users on
Unix, VMS, and other platforms running cursor-addressable,
character-cell terminals or emulators. That includes vt100 terminals,
other character-cell displays, and vt100 emulators such as Kermit or
Procomm running on PCs or Macs.
For information on how to use Lynx see the [3]Lynx User's Guide, or the
[4]Lynx help files.
Credits and Copyright
Lynx was a product of the Distributed Computing Group within Academic
Computing Services of [5]The University of Kansas.
Lynx was originally developed by [6]Lou Montulli, [7]Michael Grobe, and
[8]Charles Rezac. [9]Garrett Blythe created [10]DosLynx and later
joined the Lynx effort as well. Following the departures of Lou and
Garrett for positions at Netscape in the summer of 1994, Craig Lavender
provided support services for Lynx, and Ravikumar Kolli for DosLynx.
Lynx is maintained and supported by members of the Internet community
coordinated via the [11]lynx-dev mailing list.
Lynx is derived from material copyrighted by the University of Kansas.
However most of the release (and corresponding copyright) is the work
of developers on the [12]lynx-dev mailing list. It is distributed
without restrictions on usage or redistribution under the GNU General
Public License (Version 2).
Lynx was built over an early version of the Common Code Library
developed by the CERN WWW Project. That code is copyrighted by CERN.
Lynx contains other sections of code that are copyrighted by other
institutions or individuals. The Lynx copyright does not override or
invalidate those copyrights.
Thanks to [13]Tim Berners-Lee and the other [14]CERN World Wide Web
wizards for the WWW client library code and all of their other work on
the WWW project, NCSA and the [15]Mosaic developers, and to everyone
out in netland who has contributed to Lynx's development either
directly (through comments or bug reports) or indirectly (through
inspiration and development of other systems).
Also, special thanks go to Foteos Macrides who ported much of Lynx to
VMS and did much of its development following Lou Montulli's and
Garrett Blythe's departures from the University of Kansas, and to Earl
Fogel of the University of Saskatchewan. Earl implemented the hypertext
engine HYPERREZ in the Unix environment. HYPERREZ was developed by Niel
Larson of Think.com and served as the model for the early versions of
Lynx which did not use the WWW libraries and had their own hypertext
format.
Availability
Information on obtaining the most current version of Lynx is available
via the [16]Lynx homepage.
Mailing List
We have a mailing list for Lynx development discussion. If you are
interested in joining the list, follow this [17]link. There also are
links to [18]archives in html format for this mailing list.
References
1. file:///usr/share/doc/lynx/lynx_help/lynx-dev.html.gz
2. http://mail.gnu.org/mailman/listinfo/lynx-dev/
3. file:///usr/share/doc/lynx/lynx_help/Lynx_users_guide.html.gz
4. file:///usr/share/doc/lynx/lynx_help/lynx_help_main.html.gz
5. http://web.archive.org/web/19971210163627/http://www.cc.ukans.edu/
6. http://web.archive.org/web/20040309105337/http://www.cc.ukans.edu/cwis/people/Lou.Montulli.html
7. http://condor.cc.ku.edu/~grobe/
8. http://web.archive.org/web/20040412210202/http://www.cc.ukans.edu/cwis/people/Charles.Rezac.html
9. http://web.archive.org/web/20040412210651/http://www.cc.ukans.edu/cwis/people/Garrett/Garrett_Arch_Blythe.html
10. http://web.archive.org/web/20040812204015/http://www.cc.ukans.edu/about_doslynx/doslynx.html
11. file:///usr/share/doc/lynx/lynx_help/about_lynx.html.gz#lynx-dev_list
12. file:///usr/share/doc/lynx/lynx_help/about_lynx.html.gz#lynx-dev_list
13. http://www.w3.org/People/Berners-Lee/
14. http://www.w3.org/People.html
15. http://archive.ncsa.uiuc.edu/SDG/Software/Mosaic/NCSAMosaicHome.html
16. https://lynx.invisible-island.net/
17. file:///usr/share/doc/lynx/lynx_help/lynx-dev.html.gz
18. http://mail.gnu.org/mailman/listinfo/lynx-dev/
CMD::>HubCommand ID: bf43a2df-4ab3-4500-aa9e-e931d4205052
CMD::>HubCommand Name: lynx -dump -nolist https://news.ycombinator.com/
CMD::>HubCommand Args: []
CMD::>Status: SUCCESS
CMD::>STDOUT:
#RSS
[y18.svg] Hacker Newsnew | past | comments | ask | show | jobs | submit
login
1.
How to talk to anyone, and why you should (theguardian.com)
423 points by Looky1173 6 hours ago | hide | 202 comments
2.
WebMCP is available for early preview (chrome.com)
114 points by andsoitis 3 hours ago | hide | 71 comments
3.
Tove Jansson's criticized illustrations of The Hobbit (tovejansson.com)
70 points by abelanger 3 hours ago | hide | 33 comments
4.
Ghostty – Terminal Emulator (ghostty.org)
610 points by oli5679 13 hours ago | hide | 273 comments
5.
Little Free Library Books (littlefreelibrary.org)
42 points by TigerUniversity 3 hours ago | hide | 8 comments
6.
How Next-Gen Spacecraft Are Overwhelming Our Communication Networks
(atempleton.bearblog.dev)
23 points by korrz 3 hours ago | hide | 1 comment
7.
When does MCP make sense vs CLI? (ejholmes.github.io)
259 points by ejholmes 8 hours ago | hide | 175 comments
8.
What Your DNA Reveals about the Sex Life of Neanderthals (nytimes.com)
15 points by Hooke 2 hours ago | hide | 4 comments
9.
Microgpt explained interactively (growingswe.com)
193 points by growingswe 6 hours ago | hide | 24 comments
10.
Decision trees – the unreasonable power of nested decision rules
(mlu-explain.github.io)
397 points by mschnell 16 hours ago | hide | 69 comments
11.
Long Range E-Bike (2021) (jacquesmattheij.com)
113 points by birdculture 10 hours ago | hide | 154 comments
12.
Chorba: A novel CRC32 implementation (2024) (arxiv.org)
44 points by fnands 6 hours ago | hide | 13 comments
13.
Setting up phones is a nightmare (joelchrono.xyz)
109 points by bariumbitmap 11 hours ago | hide | 122 comments
14.
Allegations of insider trading over prediction-market bets tied to Iran
conflict (morningstar.com)
47 points by paulpauper 3 hours ago | hide | 23 comments
15.
Programming in K (github.com/johnearnest)
42 points by tosh 5 hours ago | hide | 8 comments
16.
Flightradar24 for Ships (flexport.com)
185 points by chromy 14 hours ago | hide | 43 comments
17.
Microgpt (karpathy.github.io)
1691 points by tambourine_man 1 day ago | hide | 293 comments
18.
Interview with Øyvind Kolås, GIMP developer (2017) (gimp.org)
124 points by ibobev 14 hours ago | hide | 54 comments
19.
I built a demo of what AI chat will look like when it's "free" and
ad-supported (99helpers.com)
466 points by nickk81 14 hours ago | hide | 267 comments
20.
Are the Mysteries of Quantum Mechanics Beginning to Dissolve?
(quantamagazine.org)
69 points by wjb3 4 hours ago | hide | 77 comments
21.
Python Type Checker Comparison: Empty Container Inference (pyrefly.org)
55 points by ocamoss 9 hours ago | hide | 38 comments
22.
Why XML tags are so fundamental to Claude (glthr.com)
159 points by glth 11 hours ago | hide | 114 comments
23.
South Korean Police Lose Seized Crypto by Posting Password Online
(gizmodo.com)
58 points by WarOnPrivacy 4 hours ago | hide | 11 comments
24.
Operational issue – Multiple services (UAE) (amazon.com)
165 points by earthboundkid 6 hours ago | hide | 72 comments
25.
Gzpeek: Tool to Parse Gzip Metadata (evanhahn.com)
34 points by ingve 7 hours ago | hide | 1 comment
26.
10-202: Introduction to Modern AI (CMU) (modernaicourse.org)
224 points by vismit2000 18 hours ago | hide | 50 comments
27.
Show HN: Audio Toolkit for Agents (github.com/shiehn)
51 points by stevehiehn 10 hours ago | hide | 6 comments
28.
New iron nanomaterial wipes out cancer cells without harming healthy
tissue (sciencedaily.com)
239 points by gradus_ad 10 hours ago | hide | 80 comments
29.
How the Government Deceived Congress in the Debate over Surveillance
Powers (2013) (eff.org)
76 points by doener 4 hours ago | hide | 6 comments
30.
Obsidian Sync now has a headless client (help.obsidian.md)
565 points by adilmoujahid 1 day ago | hide | 203 comments
More
[s.gif]
Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC |
Contact
Search: _________________
CMD::>HubCommand ID: 51c8ffd1-5bb2-42d8-acfe-b5a9c78f15d3
CMD::>HubCommand Name: lynx -dump -nolist https://news.ycombinator.com/
CMD::>Status: SUCCESS
CMD::>STDOUT:
#RSS
[y18.svg] Hacker Newsnew | past | comments | ask | show | jobs | submit
login
1.
How to talk to anyone, and why you should (theguardian.com)
431 points by Looky1173 6 hours ago | hide | 208 comments
2.
WebMCP is available for early preview (chrome.com)
119 points by andsoitis 3 hours ago | hide | 78 comments
3.
Tove Jansson's criticized illustrations of The Hobbit (tovejansson.com)
77 points by abelanger 4 hours ago | hide | 34 comments
4.
Ghostty – Terminal Emulator (ghostty.org)
614 points by oli5679 13 hours ago | hide | 276 comments
5.
Little Free Library Books (littlefreelibrary.org)
43 points by TigerUniversity 3 hours ago | hide | 12 comments
6.
How Next-Gen Spacecraft Are Overwhelming Our Communication Networks
(atempleton.bearblog.dev)
27 points by korrz 3 hours ago | hide | 3 comments
7.
When does MCP make sense vs CLI? (ejholmes.github.io)
264 points by ejholmes 9 hours ago | hide | 178 comments
8.
What Your DNA Reveals about the Sex Life of Neanderthals (nytimes.com)
20 points by Hooke 2 hours ago | hide | 5 comments
9.
Microgpt explained interactively (growingswe.com)
194 points by growingswe 7 hours ago | hide | 29 comments
10.
Decision trees – the unreasonable power of nested decision rules
(mlu-explain.github.io)
397 points by mschnell 17 hours ago | hide | 69 comments
11.
Long Range E-Bike (2021) (jacquesmattheij.com)
114 points by birdculture 10 hours ago | hide | 158 comments
12.
Chorba: A novel CRC32 implementation (2024) (arxiv.org)
44 points by fnands 6 hours ago | hide | 15 comments
13.
Setting up phones is a nightmare (joelchrono.xyz)
111 points by bariumbitmap 11 hours ago | hide | 122 comments
14.
Allegations of insider trading over prediction-market bets tied to Iran
conflict (morningstar.com)
51 points by paulpauper 3 hours ago | hide | 24 comments
15.
Flightradar24 for Ships (flexport.com)
188 points by chromy 15 hours ago | hide | 43 comments
16.
Programming in K (github.com/johnearnest)
43 points by tosh 5 hours ago | hide | 9 comments
17.
Microgpt (karpathy.github.io)
1695 points by tambourine_man 1 day ago | hide | 293 comments
18.
Why XML tags are so fundamental to Claude (glthr.com)
162 points by glth 11 hours ago | hide | 114 comments
19.
Show HN: Vibe Code your 3D Models (github.com/ierror)
6 points by burrnii 1 hour ago | hide | discuss
20.
Interview with Øyvind Kolås, GIMP developer (2017) (gimp.org)
125 points by ibobev 14 hours ago | hide | 54 comments
21.
I built a demo of what AI chat will look like when it's "free" and
ad-supported (99helpers.com)
467 points by nickk81 14 hours ago | hide | 267 comments
22.
Python Type Checker Comparison: Empty Container Inference (pyrefly.org)
55 points by ocamoss 9 hours ago | hide | 38 comments
23.
South Korean Police Lose Seized Crypto by Posting Password Online
(gizmodo.com)
61 points by WarOnPrivacy 4 hours ago | hide | 12 comments
24.
Operational issue – Multiple services (UAE) (amazon.com)
166 points by earthboundkid 6 hours ago | hide | 72 comments
25.
10-202: Introduction to Modern AI (CMU) (modernaicourse.org)
226 points by vismit2000 18 hours ago | hide | 50 comments
26.
Gzpeek: Tool to Parse Gzip Metadata (evanhahn.com)
34 points by ingve 7 hours ago | hide | 1 comment
27.
Are the Mysteries of Quantum Mechanics Beginning to Dissolve?
(quantamagazine.org)
70 points by wjb3 4 hours ago | hide | 82 comments
28.
Show HN: Audio Toolkit for Agents (github.com/shiehn)
51 points by stevehiehn 10 hours ago | hide | 6 comments
29.
New iron nanomaterial wipes out cancer cells without harming healthy
tissue (sciencedaily.com)
242 points by gradus_ad 10 hours ago | hide | 80 comments
30.
How the Government Deceived Congress in the Debate over Surveillance
Powers (2013) (eff.org)
78 points by doener 5 hours ago | hide | 6 comments
More
[s.gif]
Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC |
Contact
Search: _________________
CMD::>HubCommand ID: 03fe9cb1-ce39-4b41-a11d-8b50f5682dc5
CMD::>HubCommand Name: lynx -dump -nolist https://news.ycombinator.com/
CMD::>Status: SUCCESS
CMD::>STDOUT:
#RSS
[y18.svg] Hacker Newsnew | past | comments | ask | show | jobs | submit
login
1.
Anthropic Cowork feature creates 10GB VM bundle on macOS without
warning (github.com/anthropics)
140 points by mystcb 1 hour ago | hide | 51 comments
2.
Motorola announces a partnership with GrapheneOS Foundation
(motorolanews.com)
1297 points by km 9 hours ago | hide | 439 comments
3.
Judge finalizes order for Greenpeace to pay $345M in ND oil pipeline
case (northdakotamonitor.com)
50 points by gmays 1 hour ago | hide | 5 comments
4.
/e/OS is a complete "deGoogled", mobile ecosystem (e.foundation)
441 points by doener 6 hours ago | hide | 250 comments
5.
First-ever in-utero stem cell therapy for fetal spina bifida repair is
safe (ucdavis.edu)
20 points by gmays 1 hour ago | hide | discuss
6.
An Interesting Find: STM32 RDP1 Decryptor (carlossless.io)
40 points by carlossless 1 hour ago | hide | 4 comments
7.
OpenClaw Surpasses React to Become the Most-Starred Software Project on
GitHub (star-history.com)
121 points by whit537 2 hours ago | hide | 104 comments
8.
AMD Am386 released March 2, 1991 (dfarq.homeip.net)
47 points by jnord 3 hours ago | hide | 5 comments
9.
How to talk to anyone and why you should (theguardian.com)
303 points by Looky1173 8 hours ago | hide | 411 comments
10.
Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering
(maderix.substack.com)
78 points by zdw 3 hours ago | hide | 20 comments
11.
Use the Mikado Method to do safe changes in a complex codebase
(understandlegacycode.com)
28 points by foenix 2 hours ago | hide | 13 comments
12.
Microsoft bans the word "Microslop" on its Discord, then locks the
server (windowslatest.com)
570 points by robtherobber 5 hours ago | hide | 217 comments
13.
Making Video Games in 2025 (without an engine) (noelberry.ca)
291 points by alvivar 10 hours ago | hide | 134 comments
14.
Why Objective-C (inessential.com)
21 points by ingve 2 hours ago | hide | 4 comments
15.
Apple introduces the new iPad Air, powered by M4 (apple.com)
82 points by Garbage 1 hour ago | hide | 80 comments
16.
Show HN: Omni – Open-source workplace search and chat, built on
Postgres (github.com/getomnico)
103 points by prvnsmpth 7 hours ago | hide | 28 comments
17.
If AI writes code, should the session be part of the commit?
(github.com/mandel-macaque)
388 points by mandel_x 15 hours ago | hide | 331 comments
18.
Jolla phone – a full-stack European alternative (jolla.com)
326 points by spinningslate 5 hours ago | hide | 133 comments
19.
U.S. science agency moves to restrict foreign scientists from its labs
(science.org)
251 points by JeanKage 6 hours ago | hide | 197 comments
20.
Mondrian Entered the Public Domain. The Estate Disagrees
(copyrightlately.com)
115 points by Tomte 9 hours ago | hide | 47 comments
21.
Show HN: Web Audio Studio – A Visual Debugger for Web Audio API Graphs
(webaudio.studio)
28 points by alexgriss 4 hours ago | hide | 2 comments
22.
Neocaml – Rubocop Creator's New OCaml Mode for Emacs
(github.com/bbatsov)
61 points by TheWiggles 7 hours ago | hide | 10 comments
23.
Libxml2 Enterprise Edition (AGPL, from the previous maintainer)
(codeberg.org/nwellnhof)
30 points by todsacerdoti 4 hours ago | hide | 13 comments
24.
Plastic is made from milk and it vanishes in 13 weeks
(sciencedaily.com)
24 points by JeanKage 1 hour ago | hide | 13 comments
25.
Computer-generated dream world: Virtual reality for a 286 processor
(deadlime.hu)
132 points by MBCook 11 hours ago | hide | 25 comments
26.
An interactive intro to Elliptic Curve Cryptography (growingswe.com)
94 points by vismit2000 10 hours ago | hide | 15 comments
27.
How to record and retrieve anything you've ever had to look up twice
(ellanew.com)
121 points by Curiositry 11 hours ago | hide | 39 comments
28.
Go-Native Durable Execution (dbos.dev)
39 points by hmaxdml 4 hours ago | hide | 8 comments
29.
Right-sizes LLM models to your system's RAM, CPU, and GPU
(github.com/alexsjones)
226 points by bilsbie 16 hours ago | hide | 51 comments
30.
WebMCP is available for early preview (chrome.com)
340 points by andsoitis 17 hours ago | hide | 185 comments
More
[s.gif]
Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC |
Contact
Search: _________________
CMD::>HubCommand ID: 487c96a4-f68a-4da1-bb68-269307d15edb
CMD::>HubCommand Name: lynx -dump -nolist https://news.ycombinator.com/
CMD::>Status: SUCCESS
CMD::>STDOUT:
#RSS
[y18.svg] Hacker Newsnew | past | comments | ask | show | jobs | submit
login
1.
Motorola announces a partnership with GrapheneOS Foundation
(motorolanews.com)
1490 points by km 11 hours ago | hide | 529 comments
2.
Ask HN: Who is hiring? (March 2026)
64 points by whoishiring 1 hour ago | hide | 86 comments
3.
First-ever in-utero stem cell therapy for fetal spina bifida repair is
safe (ucdavis.edu)
85 points by gmays 2 hours ago | hide | 6 comments
4.
Apple introduces the new iPad Air, powered by M4 (apple.com)
119 points by Garbage 3 hours ago | hide | 145 comments
5.
/e/OS is a complete, fully “deGoogled” mobile ecosystem (e.foundation)
513 points by doener 8 hours ago | hide | 292 comments
6.
Launch HN: OctaPulse (YC W26) – Robotics and computer vision for fish
farming
17 points by rohxnsxngh 1 hour ago | hide | 8 comments
7.
Show HN: Govbase – Follow a bill from source text to news bias to
social posts (govbase.com)
21 points by foxfoxx 40 minutes ago | hide | 5 comments
8.
Felix "fx" Lindner has died (recurity-labs.com)
46 points by is_taken 1 hour ago | hide | 3 comments
9. [s.gif] Reflex (YC W23) Is Hiring Software Engineers – Python
(ycombinator.com)
47 minutes ago | hide
10.
Parallel coding agents with tmux and Markdown specs (schipper.ai)
35 points by schipperai 2 hours ago | hide | 7 comments
11.
Use the Mikado Method to do safe changes in a complex codebase
(understandlegacycode.com)
74 points by foenix 4 hours ago | hide | 29 comments
12.
Why Objective-C (inessential.com)
63 points by ingve 4 hours ago | hide | 47 comments
13.
Zclaw – The 888 KiB Assistant (zclaw.dev)
23 points by kristianpaul 2 hours ago | hide | 14 comments
14.
Notes on Lagrange Interpolating Polynomials (thegreenplace.net)
15 points by ibobev 1 hour ago | hide | 5 comments
15.
How to talk to anyone and why you should (theguardian.com)
382 points by Looky1173 10 hours ago | hide | 435 comments
16.
Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering
(maderix.substack.com)
136 points by zdw 5 hours ago | hide | 43 comments
17.
Packaging a Gleam app into a single executable (dhzdhd.dev)
13 points by todsacerdoti 1 hour ago | hide | discuss
18.
Anthropic Cowork feature creates 10GB VM bundle on macOS without
warning (github.com/anthropics)
271 points by mystcb 3 hours ago | hide | 138 comments
19.
An Interesting Find: STM32 RDP1 Decryptor (carlossless.io)
57 points by carlossless 3 hours ago | hide | 12 comments
20.
Microsoft bans the word "Microslop" on its Discord, then locks the
server (windowslatest.com)
733 points by robtherobber 7 hours ago | hide | 289 comments
21.
Thirty years on, Pokémon is still a monster hit (economist.com)
8 points by andsoitis 1 hour ago | hide | 2 comments
22.
Making Video Games in 2025 (without an engine) (noelberry.ca)
327 points by alvivar 11 hours ago | hide | 148 comments
23.
AMD Am386 released March 2, 1991 (dfarq.homeip.net)
65 points by jnord 4 hours ago | hide | 16 comments
24.
If AI writes code, should the session be part of the commit?
(github.com/mandel-macaque)
424 points by mandel_x 17 hours ago | hide | 358 comments
25.
Judge finalizes order for Greenpeace to pay $345M in ND oil pipeline
case (northdakotamonitor.com)
127 points by gmays 3 hours ago | hide | 107 comments
26.
A plastic made from milk that vanishes in 13 weeks (sciencedaily.com)
48 points by JeanKage 3 hours ago | hide | 45 comments
27.
Mondrian Entered the Public Domain. The Estate Disagrees
(copyrightlately.com)
152 points by Tomte 11 hours ago | hide | 83 comments
28.
Why Go Can't Try (niketpatel.com)
33 points by nexneo 3 hours ago | hide | 10 comments
29.
A bit of fluid mechanics from scratch not from scratch
(tsvibt.blogspot.com)
15 points by surprisetalk 2 hours ago | hide | 3 comments
30.
Show HN: Omni – Open-source workplace search and chat, built on
Postgres (github.com/getomnico)
119 points by prvnsmpth 8 hours ago | hide | 35 comments
More
[s.gif]
Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC |
Contact
Search: _________________
CMD::>HubCommand ID: 3e19c1f4-a38c-4506-bb7b-435a840c8bcc
CMD::>HubCommand Name: lynx -dump -nolist https://news.ycombinator.com/
CMD::>Status: SUCCESS
CMD::>STDOUT:
#RSS
[y18.svg] Hacker Newsnew | past | comments | ask | show | jobs | submit
login
1.
Don't Make Me Talk to Your Chatbot (raymyers.org)
86 points by pkilgore 59 minutes ago | hide | 35 comments
2.
MacBook Pro with new M5 Pro and M5 Max (apple.com)
606 points by scrlk 9 hours ago | hide | 570 comments
3.
Intel's make-or-break 18A process node debuts for data center with
288-core Xeon (tomshardware.com)
213 points by vanburen 4 hours ago | hide | 161 comments
4.
GPT‑5.3 Instant (openai.com)
249 points by meetpateltech 5 hours ago | hide | 178 comments
5.
Claude's Cycles [pdf] (stanford.edu)
400 points by fs123 12 hours ago | hide | 192 comments
6.
Textadept (orbitalquark.github.io)
29 points by giancarlostoro 2 hours ago | hide | 5 comments
7.
Voxile: A ray-traced game made in its own engine and programming
language (elbowgreasegames.substack.com)
48 points by spacemarine1 2 hours ago | hide | 5 comments
8.
An Interactive Intro to CRDTs (2023) (jakelazaroff.com)
73 points by evakhoury 4 hours ago | hide | 11 comments
9.
The Xkcd thing, now interactive (p5js.org)
1082 points by memalign 12 hours ago | hide | 145 comments
10.
When AI writes the software, who verifies it? (leodemoura.github.io)
96 points by todsacerdoti 6 hours ago | hide | 84 comments
11.
Don't become an engineering manager (manager.dev)
276 points by flail 9 hours ago | hide | 199 comments
12.
Launch HN: Cekura (YC F24) – Testing and monitoring for voice and chat
AI agents
66 points by atarus 8 hours ago | hide | 19 comments
13.
Physics Girl: Super-Kamiokande – Imaging the sun by detecting neutrinos
[video] (youtube.com)
389 points by pcdavid 7 hours ago | hide | 61 comments
14.