frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The impossible song we'll remember in 500 years [video]

https://www.youtube.com/watch?v=XLqhOEzpWyo
1•layer8•4m ago•0 comments

Freediving, Embodiment and Humanity

https://tracesofhumanity.org/freediving-embodiment-and-humanity/
1•nathanh•7m ago•0 comments

The Psychology of Choice in an Age of Abundance

https://medium.com/@sachin255701/the-psychology-of-choice-in-an-age-of-abundance-8843d4e49ce7
1•_day_dr3am3r_•8m ago•1 comments

Fluiq – LLM observability, evals and optimization in two lines of Python

https://getfluiq.com
1•SaurabhKumbhar•10m ago•0 comments

Show HN: Aura – Desktop AI Orchestration IDE with Planner/Worker Architecture

https://github.com/CarpseDeam/Aura-IDE
2•ConfusedData89•14m ago•0 comments

Jumping Spiders Shouldn't Be This Smart [video]

https://www.youtube.com/watch?v=kRQMOF5c2Z8
1•hermitcrab•15m ago•0 comments

Is this a bad moment for a math career?

https://mathoverflow.net/questions/486675/is-this-a-bad-moment-for-a-math-career
1•bananaflag•16m ago•0 comments

Ask HN: Will low quality AI customer support be the new normal?

2•0-bad-sectors•16m ago•1 comments

A NLM enhanced writers workbench

https://www.redwoodrhetorica.com/
1•homeonthemtn•20m ago•1 comments

Linux gaming is faster because Windows APIs are becoming Linux kernel features

https://www.xda-developers.com/linux-gaming-is-getting-faster-because-windows-apis-are-becoming-l...
2•haunter•20m ago•0 comments

Nuke All Routers

https://github.com/maxbrito500/esp32-c5-deauth
1•nunobrito•23m ago•0 comments

Forza Horizon 6 just leaked on Steam, letting pirates play it

https://www.neowin.net/news/looks-like-forza-horizon-6-just-leaked-on-steam-letting-pirates-play-...
3•bundie•27m ago•1 comments

Hair Maths: Curl Geometry and Braids [pdf]

https://tomrocksmaths.com/wp-content/uploads/2025/09/hair-maths-curl-geometry-and-braids-copy-3-i...
1•marysminefnuf•29m ago•0 comments

Low Frequencies

https://computer.rip/2026-05-09-extremely-low-frequencies.html
2•Sniffnoy•29m ago•1 comments

Droidian, a Phone OS for Patient People

https://theprivacydad.com/droidian-an-awesome-phone-os-for-patient-people-guest-post/
1•Brajeshwar•30m ago•0 comments

The AI That Took a Sunday Off

https://debarshibasak.github.io/readables/blogs/eu-ai-right.html
1•debarshri•33m ago•0 comments

Do Ten Times as Much

https://www.betonit.ai/p/do-ten-times-as-much
1•kristianp•35m ago•1 comments

Show HN: Hustler Bingo – a tiny bingo game about startup Twitter clichés

https://hustlerbingo.app
1•lackoftactics•38m ago•0 comments

sixos: a nix os without systemd [video]

https://media.ccc.de/v/38c3-sixos-a-nix-os-without-systemd
1•bmacho•39m ago•1 comments

Laptops all have built-in security tokens these days

https://ahelwer.ca/post/2026-05-08-builtin-u2f/
2•birdculture•40m ago•0 comments

Referer Reality

https://www.robinsloan.com/lab/referer/
2•tobr•43m ago•0 comments

TrackMoose, a music discovery tool that blends up to 100 artists

https://www.trackmoose.com
1•vikdean•46m ago•0 comments

I have build "Cursor for everything" desktop app

https://trydekaai.com/
1•arnurTogambayev•56m ago•1 comments

Show HN: Launch Party – a community for early-stage B2B SaaS founders

https://joinlaunchparty.com
2•superamped•1h ago•1 comments

Show HN: Miro-pdf v0.9.0 – Multi-page support

https://github.com/vincent-uden/miro
1•vincent-uden•1h ago•1 comments

Show HN: Deterministic, Replayable Demos for Phoenix LiveView

https://hexdocs.pm/demo_director/0.1.5/readme.html
1•ralmidani•1h ago•0 comments

Canada's unemployment rate rises to 6.9% as economy sheds more jobs

https://financialpost.com/news/economy/canada-unemployment-rate-rises-economy-sheds-jobs
7•geox•1h ago•1 comments

Summer of PLT

https://collin.tngl.io/soplt.html
1•bluedragon1221•1h ago•0 comments

The Struggle Is Gone

https://dogdogfish.com/blog/2026/05/10/the-struggle-is-gone/
1•matthewsharpe3•1h ago•0 comments

Prpack – Pack a pull request into one Markdown file for LLM code review

https://github.com/Lucas2944/prpack
1•claudetester89•1h 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.