frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sorry Guys,but I'll Be Cryosleeping Throughout the Rest of This Space Expedition

https://www.mcsweeneys.net/articles/sorry-guys-but-ill-be-cryosleeping-throughout-the-rest-of-thi...
1•calcifer•25s ago•0 comments

Conversations Should Stay Yours

https://getweeve.io/
1•dylandeheer•3m ago•0 comments

Pull request limits are cutting down the noise

https://github.blog/open-source/maintainers/how-pull-request-limits-are-cutting-down-the-noise/
1•ingve•4m ago•0 comments

Taipy – Alternative to Streamlit

https://taipy.io/
1•amai•6m ago•0 comments

Node-Fetch on latest Node Update broken

https://github.com/nodejs/node/issues/63989
1•DDerTyp•9m ago•0 comments

Business Intelligence as Code

https://evidence.dev/
1•janandonly•11m ago•0 comments

SSD Prices in 2026

https://i.imgur.com/ekYqwY6.png
1•toilet•11m ago•1 comments

Show HN: I built an 11-LLM consensus engine to detect AI hallucination

https://github.com/jaquelinejaque/quorum-saas-starter
1•jaquelinejaque•13m ago•0 comments

Why Social Media Bans Alone Can't Solve the Age Verification Dilemma

https://about.fb.com/news/2026/06/how-to-verify-age-online/
1•kerim-ca•17m ago•1 comments

Utopia (By Fable)

https://aiking.dwyer.co.za/utopia
1•sixhobbits•18m ago•0 comments

Noumena Code

https://code.noumena.com
1•Marius77•19m ago•0 comments

Show HN: I built a Wu-Tang name generator (wutangname.online)

https://wutangname.online/
1•chenliang001•20m ago•0 comments

Sweden may oppose Tesla's supervised self-driving tech in Europe over speeding

https://www.reuters.com/business/autos-transportation/sweden-may-oppose-teslas-supervised-self-dr...
1•JumpCrisscross•23m ago•0 comments

Barret Zoph is out at OpenAI again after just five months

https://www.theverge.com/ai-artificial-intelligence/952837/barret-zoph-openai-thinking-machines-lab
2•alecco•24m ago•2 comments

The Tokenminning Manifesto

https://www.tokenminning.com/
1•claudiacsf•25m ago•0 comments

Show HN: Alert for real time application including video and audio

https://sf-voice.sh
1•ThatDumbGirl•25m ago•0 comments

Nanowar of Steel – Kotlin (Official Power Point Video)

https://www.youtube.com/watch?v=BsfXZjKLT9A
1•napolux•31m ago•1 comments

WPoptic, A growing public database of WordPress plugin usage

https://wpoptic.com/
1•WPoptic•32m ago•0 comments

AI has granted America new power

https://www.economist.com/leaders/2026/06/18/ai-has-granted-america-vast-new-power
1•isaacfrond•33m ago•0 comments

Use your own language model key in VS Code

https://code.visualstudio.com/blogs/2026/06/18/byok-vscode
2•subset•33m ago•1 comments

The Secret Drone Operation That's Changing the Ukraine War

https://www.politico.com/news/magazine/2026/06/19/ukraine-russia-drones-attack-00967074
2•0in•34m ago•0 comments

Lisuan Tech LX Pro 24GB GPU

https://www.techpowerup.com/gpu-specs/lx-pro.c4408
1•CapricornNoble•36m ago•1 comments

Conservatives plan nationwide protest against AI data centers

https://www.axios.com/2026/06/18/conservatives-protest-ai-data-centers
4•johnbarron•36m ago•0 comments

EU to soon classify AWS and Azure as gatekeepers under DSA

https://www.heise.de/en/news/Report-EU-to-soon-classify-AWS-and-Azure-as-gatekeepers-under-DSA-11...
6•snowpid•39m ago•0 comments

FDA committee recommends a new mRNA flu vaccine

https://www.npr.org/2026/06/18/nx-s1-5863570/flu-vaccine-mrna-moderna-fda
1•isaacfrond•40m ago•0 comments

Rolls-Royce secures deal to build small nuclear reactors for Sweden

https://www.euronews.com/business/2026/06/16/rolls-royce-secures-deal-to-build-small-nuclear-reac...
1•isaacfrond•40m ago•0 comments

Sometimes you get stuck in a sinkhole for a few years

https://www.avabear.xyz/p/sometimes-you-get-stuck-in-a-sinkhole
2•jger15•41m ago•0 comments

How Russia's nuclear-powered 'Skyfall' missile works

https://www.npr.org/2026/06/18/nx-s1-5843252/russia-nuclear-powered-missile-burevestnik
2•rolph•44m ago•0 comments

Rethinking Modularity in Ruby Applications

https://noteflakes.com/articles/2026-06-18-syntropy-modules
1•ciconia•44m ago•0 comments

Sshto v1.01

https://github.com/vaniacer/sshto
1•vaniac•44m 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.