frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Comparative Advantage in Software

https://achad4.substack.com/p/comparative-advantage-in-software
1•achad4•47s ago•0 comments

Role-model: protocol for assigning the right AI model for the right job

https://role-model.dev/
1•handfuloflight•3m ago•0 comments

How does a pull-back car work? Illustrated teardown

https://mechanical-pencil.com/products/car
1•Muhammad523•4m ago•1 comments

Why One of Tech's Biggest Gamblers Is Betting Against Elon Musk's AI Vision

https://www.wsj.com/tech/why-one-of-techs-biggest-gamblers-is-betting-against-elon-musks-ai-visio...
1•petilon•4m ago•0 comments

Slow Breathing Can Rewire Your Brain and Change the Choices You Make

https://scitechdaily.com/slow-breathing-can-rewire-your-brain-and-change-the-choices-you-make/
1•Gaishan•7m ago•0 comments

Lucidml – Playable World Models that run on consumer GPUs

https://www.reddit.com/r/lucidmlx/s/8d7ZjIvmV3
2•abhisoflucidml•11m ago•0 comments

Why frontier LLMs can't read the hard documents without experts involved

https://idp-software.com/news/the-76-percent-wall/
1•chelm•11m ago•0 comments

Ratflow NYC: Real-Time NYC Rat Map

https://ratflow.nyc/
1•ohjeez•13m ago•0 comments

Peruvians promised jobs in Russia, but landed on the front lines in Ukraine

https://www.cnn.com/2026/06/28/americas/russia-ukraine-peruvian-fighters-latam-intl
3•breve•14m ago•0 comments

Ten Takeaways from the AI Engineering Report 2026: The Acceleration Whiplash

https://www.faros.ai/blog/ai-acceleration-whiplash-takeaways
1•mustaphah•14m ago•0 comments

Fixed-Rate Mortgages Are Rent Control for Homeoweners

https://precon.substack.com/p/fixed-rate-mortgages-are-rent-control
3•NomNew•17m ago•0 comments

Content-defined chunking in Go: 3.7 GB/s and a third less memory

https://www.plakar.io/posts/2026-06-14/go-cdc-chunkers-v1.1.0-faster-leaner-and-provably-correct/
1•vcoisne•18m ago•0 comments

Too Many Islands, Too Few Bridges: Notes from the Event Modeling Conference 2026

https://docs.eventsourcingdb.io/blog/2026/06/29/too-many-islands-too-few-bridges-notes-from-the-e...
1•goloroden•18m ago•0 comments

Show HN: Selixes - Self-hosted LLM failover gateway, budget caps and PII

1•selixes•20m ago•0 comments

Making POSIX filesystems replicated and highly available

https://www.zerofs.net/blog/highly-available-posix-on-s3
1•Eikon•21m ago•0 comments

Self-Destructing Graphics Cards

https://www.tomshardware.com/pc-components/gpus/melting-power-connectors-and-how-to-safeguard-aga...
1•TEHERET•23m ago•0 comments

Using Home Assistant in a botanical garden

https://vooijs.eu/posts/why-is-there-smoke-from-the-boiler-room/
1•wildekek•25m ago•0 comments

Ha-Joon Chang on the Future of India's Industrialization

https://frontline.thehindu.com/interviews/india-industrialisation-ha-joon-chang-interview/article...
1•pessimizer•29m ago•0 comments

Reading Is the Ultimate Cognitive Enhancer

https://neurosciencenews.com/literacy-reshapes-cognition-30955/
6•bookofjoe•29m ago•1 comments

Uyuni Joins OpenSUSE Project Ahead of Annual Conference

https://news.opensuse.org/2026/06/22/uyuni-joins-opensuse/
2•ferryth•30m ago•0 comments

The 'Two Ships' Theory of American History

https://www.theatlantic.com/magazine/2026/08/the-slave-ship-and-the-mayflower/687628/
2•paulpauper•30m ago•0 comments

New Manager Guide Series

https://yusufaytas.com/series/new-manager-guide
7•yusufaytas•32m ago•1 comments

Living Codegraph

https://rlmlocal.com
2•fortsignal•33m ago•0 comments

I Added TurboQuant to Pgvector

https://github.com/pgvector/pgvector/pull/989
1•mxfeinberg•33m ago•0 comments

Show HN: I built a "living proof-of-work" for builders (Show HN that persists)

https://kritive.com
1•sonOfHades•34m ago•0 comments

Give AI-built websites a real design with DESIGN.md

https://getdesign.md/
1•spking•34m ago•0 comments

Unfathomable bugs #10: The Broken Windows Build

https://algassert.com/post/2603
1•fanf2•35m ago•0 comments

Free and Private Bookmarking Tool / Browser Start Page

https://vectorization.eu/start-page/
1•alsusart•35m ago•1 comments

30-Year Sentence for Transporting Zines Is a Five-Alarm Fire for Free Speech

https://theintercept.com/2026/06/26/daniel-sanchez-estrada-zines-prairieland-free-speech/
4•xrd•37m ago•0 comments

New mathematical operator just dropped – reality's kernel just got an upgrade

https://zenodo.org/records/20976243
2•CarloLoopTheory•42m ago•5 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.