frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Unreal Engine 5 WebGPU implementation [video]

https://www.youtube.com/watch?v=I31ICNNz3Ps
1•astlouis44•26s ago•0 comments

Meteorites and Their Properties

https://www.lpi.usra.edu/science/kring/epo_web/meteorites/toc.html
1•Tomte•27s ago•0 comments

AIMP is going to be cross-platform (Linux Support Is Coming)

https://aimp.ru/blogs/?p=1523
2•SweetSoftPillow•1m ago•0 comments

Human-to-human transmission suspected on board hantavirus cruise ship, WHO says

https://www.cnn.com/2026/05/05/africa/cruise-ship-hantavirus-who-intl
2•koolhead17•2m ago•0 comments

Show HN: Pathetic – Java pathfinding: 10k concurrent paths in ~7ms

https://github.com/bsommerfeld/pathetic
2•bsommerfeld•3m ago•0 comments

Fix "Copy Fail" before your Linux system gets sick

https://opensourcewatch.beehiiv.com/p/fix-copy-fail-before-your-linux-system-gets-sick
2•CrankyBear•3m ago•0 comments

Trust Is the Bottleneck

https://blog.reqproof.com/p/engineerings-ai-bottleneck-is-trust
2•LeonidBugaev•4m ago•0 comments

I Miss Craft

https://eliothertenstein.com/notes/on-craft
3•eiiot•4m ago•0 comments

Epic Semi RISC-V server products

https://www.epicsemi.com/products/contrail/contrail-compute/
1•rwmj•4m ago•0 comments

Comparisons as Predictable as the Sunrise

https://pudding.cool/2026/05/similes/
1•usrme•4m ago•0 comments

Stop Apologizing for Big PRs

https://theendofcoding.com/blog/stop-apologizing-for-big-prs
2•nbouvrette•6m ago•0 comments

The Impossible Things We Have to Believe

https://berthub.eu/articles/posts/the-impossible-things-we-have-to-believe/
3•TechTechTech•8m ago•0 comments

Show HN: I built a simple way to create an online work profile

https://klypn.com
2•chresko•8m ago•0 comments

OurCar: Making an App Just for Us

https://mendelgreenberg.com/posts/ourcar/
2•chabad360•9m ago•0 comments

Detection of an atmosphere on a trans-Neptunian object beyond Pluto

https://www.nature.com/articles/s41550-026-02846-1
4•droidjj•11m ago•0 comments

Apple's First Phone Design Never Made It to Market (2014)

https://lowendmac.com/2014/apples-first-phone-from-1983-never-made-it-to-market/
3•downbad_•13m ago•1 comments

Why India's Space-Tech Startups Are Stuck in a Low-Revenue Orbit

https://www.outlookbusiness.com/magazine/why-indias-space-tech-start-ups-are-stuck-in-a-low-reven...
2•rustoo•13m ago•0 comments

A new way to snap your windows on macOS

https://www.patreon.com/posts/macsyzones-3-0-157387651
3•rohanrhu•14m ago•0 comments

New Star Wars Viewing Data Shows a Deep Generational Divide

https://www.denofgeek.com/tv/new-star-wars-viewing-data-shows-deep-generational-divide/
2•rustoo•15m ago•0 comments

Track movies, TV, and books with editorial reviews

https://cuev.io/
2•axivuslabs•16m ago•0 comments

TPM 2.0 Sealing Policies with WolfTPM

https://www.wolfssl.com/tpm-2-0-sealing-policies-with-wolftpm-pcr-policies-policy-authorize-and-n...
2•aidangarske•17m ago•0 comments

The Curve and the Cliff: What AI Builders Cannot Prove

https://btriani.medium.com/the-curve-and-the-cliff-913e94590808
2•btriani•18m ago•0 comments

Show HN: SecretEnv – Run any process with secrets from all your backends

https://github.com/TechAlchemistX/secretenv
4•techalchemist•19m ago•4 comments

Spirit Airlines Didn't Crash – It Was Taken Down

https://www.thebignewsletter.com/p/who-killed-spirit-airlines
2•fragmede•19m ago•0 comments

Accelerating Gemma 4: faster inference with multi-token prediction drafters

https://blog.google/innovation-and-ai/technology/developers-tools/multi-token-prediction-gemma-4/
3•amrrs•19m ago•0 comments

PulseTrain

https://excamera.substack.com/p/pulsetrain
2•jamesbowman•20m ago•0 comments

Nassi–Shneiderman Diagram

https://en.wikipedia.org/wiki/Nassi%E2%80%93Shneiderman_diagram
3•tosh•20m ago•0 comments

Thoth v3.20.0 – Full Linux Support, MiniMax Integration, Reliability Upgrades

https://github.com/siddsachar/Thoth
3•sydsachar•21m ago•0 comments

Show HN: Xclif, file-based routing for Python CLIs

https://github.com/ThatXliner/xclif
1•thatxliner•22m ago•0 comments

Was the Declaration of Independence Better Before the Edits?

https://www.newyorker.com/magazine/2026/05/11/why-the-declaration-of-independence-went-through-se...
1•bookofjoe•23m ago•1 comments
Open in hackernews

Against SQL (2021)

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

Comments

rawgabbit•1y 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.