frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Corral: Measuring how LLM-based AI scientists reason, not just what they produce

https://lamalab-org.github.io/corral/
1•kjappelbaum•47s ago•0 comments

FreeBSD Status Report First Quarter 2026

https://www.freebsd.org/status/report-2026-01-2026-03/
1•ptx•1m ago•0 comments

Texas launches $750M plant, targets growing New World screwworm threat

https://www.chron.com/texas/article/south-texas-plant-screwworm-threat-usda-22214580.php
2•littlexsparkee•2m ago•0 comments

Ask HN: Is the ongoing AI research driving LLM models to be better?

1•thiago_fm•5m ago•0 comments

The Prevention of Literature (George Orwell, 1946)

https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/the-preventi...
1•awanderingmind•5m ago•0 comments

Microsoft issues emergency update for macOS and Linux ASP.NET threat

https://arstechnica.com/security/2026/04/microsoft-issues-emergency-update-for-macos-and-linux-as...
2•joozio•6m ago•0 comments

I blind A/B tested 40 Claude prompt codes, only 7 shift reasoning

https://gist.github.com/Samarth0211/0abecbbfc340c80de5bd21049115f9e2
1•samarth0211•7m ago•0 comments

Stop Hardcoding Your Timeouts

https://alfy.blog/2026/04/23/stop-hardcoding-your-timeouts.html
2•ahmadalfy•7m ago•0 comments

Retractions of scientific papers by Nobel Prize Winners

https://retractionwatch.com/retractions-by-nobel-prize-winners/
2•patel011393•8m ago•1 comments

Notes on writing a voxel game in Dyalog APL

https://homewithinnowhere.com/blog/voxel_game/
2•tosh•10m ago•0 comments

Signaling Is the Intelligence

https://eversoleken.substack.com/p/signaling-is-the-intelligence
1•gpi•13m ago•0 comments

The Log Is the Database

https://blog.canoozie.net/the-log-is-the-database/
3•LAC-Tech•20m ago•1 comments

Ask HN: Linguistics/Computing Overview for the Layperson

1•Pamar•21m ago•0 comments

Production MCP Patterns, Part 2: The Agent Stack Grew Up

https://medium.com/@nitishagar/production-mcp-patterns-part-2-the-agent-stack-grew-up-194d807fde9d
1•nitishagar•21m ago•1 comments

Light Pollution and Wildlife Interactive Ecology Simulation

https://naturnacht-fulda-rhoen.de/light-pollution-wildlife/
1•ptrsrtp•23m ago•1 comments

Reverse-Engineering a North-Korean-Style Supply Chain Attack

https://www.reymom.xyz/blog/security/2026-04-15-supply-chain-attack
1•gsky•25m ago•0 comments

I was reported by ChatGPT officials

https://pbs.twimg.com/media/HGkgo8KacAAqU3J?format=jpg&name=medium
1•mrzhangbo•25m ago•0 comments

Augmenting Human Intellect (1962)

https://www.dougengelbart.org/pubs/augment-3906.html
1•downbad_•26m ago•1 comments

US health officials Nix publication of a study on Covid vaccine effectiveness

https://apnews.com/article/cdc-covid19-vaccine-study-ea3a8e56d0dcdb7428f060b395b5ff23
4•petethomas•30m ago•1 comments

Show HN: Vibeyard – An open-source IDE for managing AI coding agents

https://github.com/elirantutia/vibeyard
1•vibeyard•35m ago•0 comments

Honey, I Shrunk the Coding Agent

https://itayinbarr.substack.com/p/honey-i-shrunk-the-coding-agent
5•oldfuture•38m ago•0 comments

Software Eats Its Own

https://om.co/2026/04/22/software-eats-its-own/
2•taubek•40m ago•0 comments

Hey I made a AI Native personal workspace for the desktop worker

1•devrimco•41m ago•2 comments

Benchmarking glibc vs. jemalloc vs. mimalloc vs. tcmalloc in MariaDB TPC-C

https://tidesdb.com/articles/tpcc-analysis-jemalloc-mimalloc-tcmalloc-tidesql-and-innodb-in-maria...
2•alexpadula•54m ago•1 comments

R

https://blog.cloudflare.com/post-quantum-warp/
3•kefekefe•56m ago•0 comments

A neural network for lossy audio codec reconstruction

https://github.com/aston89/UNlossifier-lossy-audio-reconstructor-and-sound-signature-simulator/tr...
1•Aston89•57m ago•0 comments

256 Lines or Less: Test Case Minimization

https://matklad.github.io/2026/04/20/test-case-minimization.html
2•gsky•59m ago•0 comments

Asset Harvester

https://github.com/NVIDIA/asset-harvester
1•downboots•1h ago•0 comments

Aisbf – AI Service Broker Framework (BETA) unified proxy and intelligent router

https://aisbf.cloud
1•nextime•1h ago•1 comments

I programmed an AI in 6502 assembly

https://medium.com/@paul.newell_20752/i-programmed-an-ai-in-6502-assembly-it-worked-23fcd7cf2a96
1•paul_n3•1h ago•0 comments
Open in hackernews

Against SQL (2021)

https://www.scattered-thoughts.net/writing/against-sql/
4•yladiz•12mo ago

Comments

rawgabbit•12mo ago
Sorry. These criticisms don’t make much sense.

The author says SQL is the language for manipulating relational data. And then proceeds to complain SQL sucks at manipulating JSON.

Hmm. JSON is not relational. SQL expects data to be in third normal form.

If you are primarily working with JSON, please use something else.

The other two criticisms about SQL verboseness and reluctance to employ functions and other memory manipulations is the author’s confusion of the intended purpose of SQL. SQL treats data as the first class citizen. Think of data as the noun. SQL DML and SQL functions are modifiers. This is why SQL appears verbose. It is dragging all these data structures around. If you want to reduce SQL’s verbosity then you need to take an axe to the raw tables themselves and make them all cookie cutter. But then you have a completely different problem.