frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Wrote that Boomers were choking America's economy. Their responses are revealing

https://fortune.com/2026/05/31/boomer-reaction-economy-feel-stuck-confused-angry-sad-insecure/
1•ourmandave•3m ago•0 comments

State Engineering for Agents

https://twitter.com/kleptobyte/status/2060973079140929823
2•Kleptobyte•24m ago•0 comments

CXL-ClusterSim: Modeling CXL-Based Disaggregated Memory

https://arxiv.org/abs/2605.27745
1•rbanffy•25m ago•0 comments

Dear Steve Lemay

https://ilyabirman.net/meanwhile/all/dear-steve-lemay/
1•exizt88•29m ago•0 comments

Review of the MoErgo Glove80 Keyboard

https://arslan.io/2024/04/22/review-of-the-moergo-glove80-keyboard/
1•akyuu•30m ago•0 comments

Show HN: TIL – a timeline file format with a spiral viewer and editor

https://til.rfy.nz
1•rellfy•30m ago•0 comments

Show HN: Monolith, live typed queries on real Postgres for Java (no JDBC)

https://github.com/singlr-ai/monolith
1•uday_singlr•32m ago•0 comments

A Brief-Ish History of SETI. Part VIII: Paradox? What Paradox?

https://www.universetoday.com/articles/a-brief-ish-history-of-seti-part-viii-paradox-what-paradox
1•tcp_handshaker•40m ago•0 comments

Go Hug an Open Source Maintainer (and Is Rsync Slop Now?)

https://techstackups.com/articles/the-rsync-thing-and-why-you-should-be-nice-to-open-source-maint...
1•ritzaco•41m ago•0 comments

Tell HN: Meta's AI support feature allows Instagram accounts to be stolen

6•parable•41m ago•1 comments

Mapa.ua – Ukraine War Map

https://mapa.ua/
1•airlabs-co•42m ago•0 comments

Can I just say f*** AI, f*** AI, f*** AI? [video]

https://www.youtube.com/shorts/0z7Q0Bg9TAY
1•tcp_handshaker•42m ago•1 comments

Show HN: Font Wizard Pro – a font manager for iPhone and iPad

https://apps.apple.com/us/app/font-wizard-pro-font-manager/id352966034
1•stalinkay•43m ago•0 comments

Simple systems are the best systems

https://jerodsanto.net/2026/05/simple-systems-are-the-best/
2•jerodsanto•47m ago•0 comments

Economic Growth and Community Well-Being Are Not Opposites

https://www.civicbrand.com/insights/articles/economic-growth-and-community-well-being-are-not-opp...
1•mooreds•48m ago•0 comments

Beyond the API: Why Critical Infrastructure Is Going Streaming

https://schematichq.com/blog/beyond-the-api-why-critical-infrastructure-is-going-streaming
2•mooreds•48m ago•0 comments

Tiendli – e-commerce, reservations and marketplace for Latam SMEs

https://tiendli.com
2•zuomy•51m ago•0 comments

Spaniel – OpenTelemetry viewer for local development (Postman for your traces)

https://github.com/zfogg/spaniel
1•zfogg•52m ago•0 comments

It's Not Just X. It's Y

https://mail.cyberneticforests.com/its-not-just-data-its-post-training/
23•mooreds•55m ago•2 comments

Linear CEO Responds to Corgi (YC S24) CEO on Grindmaxxing

https://twitter.com/karrisaarinen/status/2061139112426623054
3•hbcdbff•56m ago•0 comments

Atherton spent $145K to delay train electrification. The rest of us paid $400M

https://peninsulaforeveryone.org/blog/atherton-spent-145k-to-delay-caltrain-electrification-the-r...
77•mslate•57m ago•13 comments

Fish Sleep a Lot Like Us. (They Even Nap.)

https://www.nytimes.com/2026/05/27/science/fish-sleep-a-lot-like-us-they-even-nap.html
1•cainxinth•59m ago•0 comments

Ask HN: Do you use Cloudflare bot protection? If so, why do you use it?

2•Velocifyer•1h ago•0 comments

Agent-stack – one command to make any repo token-efficient for Claude Code

https://github.com/drmahdikazempour/agent-stack
1•mahdikaz•1h ago•0 comments

G7 Agrees on Shared Language Around Open-Source AI, Open Weights AI

https://www.phoronix.com/news/G7-On-Open-Source-AI
1•winter_blue•1h ago•0 comments

JavaScript Crossword

https://lyra.horse/fun/jscrossword/
3•marvinborner•1h ago•0 comments

Show HN: Pictolab (online HDR image editor)

https://pictolab.io/
2•ChadNauseam•1h ago•2 comments

What Is Code

https://martinfowler.com/articles/what-is-code.html
3•wapasta•1h ago•0 comments

Pixelnet – The social network for game developers

https://pixelnet.flarum.cloud
2•telui•1h ago•1 comments

The need for a socialist planned economy (2021)

https://www.marxist.ca/article/the-need-for-a-socialist-planned-economy
16•vhantz•1h ago•4 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.