frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SSA without Dominance for Higher-Order Programs

https://arxiv.org/abs/2604.09961
1•matt_d•2m ago•0 comments

Show HN: Kachilu Browser – a local browser automation CLI for AI agents

https://github.com/kachilu-inc/kachilu-browser
1•tmatsuzaki•14m ago•2 comments

A Roblox cheat and one AI tool brought down Vercel's platform

https://webmatrices.com/post/how-a-roblox-cheat-and-one-ai-tool-brought-down-vercel-s-entire-plat...
3•bishwasbh•18m ago•0 comments

Advancing BDD Software Testing: Dynamic Scenario Re-Usability and Step Auto-Comp

https://arxiv.org/abs/2402.15928
2•alihassaanmug•26m ago•0 comments

Show HN: A fake small claims court for petty complaints

https://benlirio.com/petty-small-claims/
1•blirio•26m ago•0 comments

Spotting Specification Gaps with Small Proof-Oriented Tests

https://risemsr.github.io/blog/2026-04-16-spotting-specs/
2•matt_d•27m ago•0 comments

Ancient Mughal tradition of pigeon-rearing thrives in India's capital

https://www.reuters.com/world/india/ancient-mughal-tradition-pigeon-rearing-thrives-indias-capita...
1•petethomas•28m ago•0 comments

"Capital Punishment" Trivia Game

https://games-by-will.com/capital-punishment/
2•wjuseck•29m ago•0 comments

Is AI a Bubble

1•Robelkidin•30m ago•1 comments

Sonnet 4.6 model could mistakenly use wrong model for OpenAI

https://github.com/anthropics/claude-code/issues/51417
1•keytalker•31m ago•0 comments

What Is Multi-Cloud Security? Challenges and Best Practices

https://spacelift.io/blog/multi-cloud-security
1•kat-w•31m ago•0 comments

Mac OS X 10.6 Snow Leopard – Now Available (2009)

https://news.ycombinator.com/item?id=781964
2•thomassmith65•33m ago•0 comments

RLMs are the new reasoning models

https://raw.works/rlms-are-the-new-reasoning-models/
1•dnw•43m ago•0 comments

Gell-Mann AImnesia

https://huonw.github.io/blog/2026/04/gell-mann-aimnesia/
1•dbaupp•44m ago•1 comments

Mall Code

https://mall.merkoba.com
1•madprops•45m ago•0 comments

Anthropic says OpenClaw-style Claude CLI usage is allowed again

https://docs.openclaw.ai/providers/anthropic
2•jmsflknr•48m ago•0 comments

No Naked Singularity, Whatever the Physical Collapse

https://zenodo.org/records/16181570
2•jruohonen•48m ago•0 comments

Svelte-check-native: Blazing fast svelte-check built with Rust

https://github.com/harshmandan/svelte-check-native
1•thunderbong•50m ago•0 comments

US Utilities Plan $1.4T for AI Data Centers

https://tech-insider.org/us-utility-1-4-trillion-ai-data-center-energy-2026/
2•jackyli02•50m ago•0 comments

Theseus, a Static Windows Emulator

https://neugierig.org/software/blog/2026/04/theseus.html
1•matt_d•51m ago•0 comments

PageGuard – scan a URL, get compliance docs from the actual tech detected

https://www.getpageguard.com
1•Dhicks_builds•51m ago•0 comments

Smart Home for Beginners: Where to Start

https://aigadgetexpert.com/best-smart-home-beginners-2026
2•amghal•52m ago•0 comments

Jersey Mike's confidentially files for IPO

https://www.cnbc.com/2026/04/20/jersey-mikes-ipo.html
1•lxm•53m ago•0 comments

Pica: Better Font Management for macOS

https://pica.joshpuckett.me/
3•jbegley•57m ago•0 comments

Stb_AVIF: A pure C89, Libc-only AVIF decoder in stb-style single-header form

https://github.com/lenchan139/stb_avif
1•roytam87•58m ago•1 comments

Can you make a picture of a dog wearing a hat

https://dispatchesfromthefuture.substack.com/p/can-you-make-a-picture-of-a-dog-wearing
1•JoiDegn•59m ago•0 comments

Show HN: Local, agent-friendly double-entry bookkeeping and tax prep

https://github.com/andrewchilds/moneypit
1•andrewchilds•1h ago•0 comments

Substack added a scheduler. Here's why I kept building PubQ anyway

https://www.indiehackers.com/post/substack-added-a-scheduler-heres-why-i-kept-building-pubq-anywa...
1•rkapdi•1h ago•0 comments

Trump's Landman Iran Strategy [video]

https://www.youtube.com/watch?v=VZsm3Z2njAQ
1•keepamovin•1h ago•0 comments

They Built the 'Cursor for Hardware.' Now, Anthropic Wants In

https://www.wired.com/story/schematik-is-cursor-for-hardware-anthropic-wants-in-on-it/
1•CharlesW•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.