frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What a Data Engineer Misses About Transformers (Until You Build One)

https://saran-blog.vercel.app/posts/what-a-data-engineer-misses-about-transformers/
1•smallel4•1m ago•0 comments

I Quit My PhD

https://www.lowimpactfruit.com/p/when-i-quit-my-phd
1•andsoitis•1m ago•0 comments

The Only Two Things We Ever Say to Each Other

https://www.hardrefresh.life/the-only-two-things-we-ever-say-to-each-other/
1•speckx•1m ago•0 comments

Chat Control 1.0 approved to be voted on on Thursday

https://digitalcourage.social/@echo_pbreyer/116878253081563900
1•nickslaughter02•2m ago•1 comments

Decline of PhD Admissions Could Imperil a 'Generation of New Talent'

https://www.nytimes.com/2026/07/06/us/research-universities-fewer-phds-science.html
2•pseudolus•3m ago•1 comments

How Statisticians Split a Bill

https://dmvaldman.github.io/tablestakes/
1•dmvaldman•3m ago•0 comments

The power of APIs: The unsung hero of AI interface

https://www.collabora.com/news-and-blog/blog/2026/07/07/the-power-of-apis-the-unsung-hero-of-ai-i...
2•losgehts•4m ago•0 comments

GitHub Has Restricted Access to Star Data

https://www.star-history.com/blog/github-stargazer-api-restriction/
2•eatonphil•5m ago•0 comments

Show HN: Revector – Alembic-style schema migrations for Qdrant

https://github.com/diegoglozano/revector
1•diegoglozano•5m ago•0 comments

Show HN: hnsubstacks – A Hacker News clone listing only Substacks

https://hnsubstacks.com/
1•cartucho1•6m ago•0 comments

Mozilla's Otari: The Open Source LLM Control Plane

https://www.mozilla.ai/product/otari
1•nunodonato•7m ago•0 comments

I ran the official MCP conformance suite against a real server

https://www.barefootdigital.dev/blog/what-the-official-mcp-conformance-suite-actually-tells-you-a...
1•barefootdifital•8m ago•0 comments

Treasury Has an Internal Report Warning About the Dangers of an AI Bubble

https://www.notus.org/economy/treasury-internal-report-warning-dangers-ai-bubble
4•petethomas•11m ago•0 comments

Pqc-scan: scan your codebase for quantum-vulnerable cryptography

https://github.com/sachhg/pqc-scan
1•sachitm21•13m ago•0 comments

United Airlines Loses Bid to Dismiss Lawsuit over 'Windowless' Window Seats

https://simpleflying.com/united-airlines-loses-bid-to-dismiss-lawsuit-over-windowless-window-seats/
1•randycupertino•14m ago•1 comments

A Peek Inside Jim Henson's Creature Shop, Where Whimsical Puppets Are Designed

https://www.smithsonianmag.com/travel/a-peek-inside-jim-hensons-creature-shop-where-sesame-street...
1•pseudolus•14m ago•0 comments

Chat Control 1.0 and 2.0 Explained

https://fightchatcontrol.eu/chat-control-overview
3•gasull•14m ago•0 comments

Rising Floor, Runaway Ceiling

https://juanloco.dev/posts/rising-floor-runaway-ceiling/
1•juanloco•15m ago•0 comments

UK Train Platform Finder

https://www.whatplatform.co.uk
1•bookofjoe•15m ago•0 comments

Researchers Reveal the Power of 'Quantum Proofs'

https://www.quantamagazine.org/researchers-reveal-the-power-of-quantum-proofs-20260706/
1•Brajeshwar•16m ago•0 comments

Repurposing crypto mining hardware as a budget Linux gaming PC

https://bc250.info/
1•ClifReeder•17m ago•0 comments

Sodium-ion "salt" batteries will revolutionize electric-vehicle and grid storage

https://www.newscientist.com/article/2532997-salt-batteries-are-about-to-shake-up-evs-and-grid-st...
5•ck2•18m ago•1 comments

ArcadeDB Cloud Observability: OpenTelemetry Tracing, Structured Logging, K8s

https://arcadedb.com/blog/arcadedb-cloud-observability-opentelemetry-kubernetes/
2•lvca•18m ago•0 comments

DRAM prices are killing the cheap smartphone

https://www.theregister.com/personal-tech/2026/07/07/dram-prices-are-killing-the-cheap-smartphone...
2•LorenDB•19m ago•0 comments

Bees 'facial expressions' may be a sign of their inner live

https://theconversation.com/bees-facial-expressions-may-be-a-sign-of-their-inner-lives-286839
1•andsoitis•19m ago•0 comments

Show HN: I scratched my own itch by solving a niche Basecamp problem

https://feedhammer.com
1•bhagyeshsp•19m ago•1 comments

Build an AI Audiobook Narrator with Telnyx AI Inference, TTS, and Cloud Storage

https://lowlatencyclub.ai/blog/posts/ai-audiobook-narrator-python
1•harpreetseehra•20m ago•0 comments

Hines v. Stamos, Dismissed in Full

https://reneediresta.substack.com/p/hines-v-stamos-dismissed-in-full
3•hn_acker•22m ago•1 comments

Trump's Art of the Self-Deal

https://www.thefp.com/p/trump-finance-crypto-corruption
1•surprisetalk•22m ago•0 comments

Distributed System Is Slower Than a Laptop

https://codegood.co/writing/your-distributed-system-is-slower-than-a-laptop
1•iolloyd•23m ago•0 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.