frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Personal Biohacking Lab

https://selfassay.com
1•ainthusiast•37s ago•0 comments

I trained a 113M-parameter earthquake LLM from absolute scratch

https://github.com/jiazhe868/nanogpt-seis
1•jzsfg•2m ago•0 comments

"A Clockwork Orange" Nadsat Dictionary

https://www.mattiavaccari.net/mis/nadsat.html
1•yubblegum•3m ago•0 comments

I built a community ranking platform for everything – would love brutal feedback

https://peakd.io
1•GroguMaster•5m ago•0 comments

Believe the Hype About Teen Takeovers

https://www.theatlantic.com/ideas/2026/07/teen-takeovers-violence-dc/687866/
1•paulpauper•8m ago•0 comments

American Loneliness

https://www.theatlantic.com/ideas/2026/07/america-birthday-250-roadtrip/687877/
2•paulpauper•9m ago•0 comments

UI Degrades over Time

https://grumpy.website/1723
2•petilon•9m ago•0 comments

AI is the new Printing Press (another trite take)

https://idan.substack.com/p/ai-is-the-new-printing-press
1•idanb•11m ago•0 comments

Profiling the "Abundance" housing bottleneck with real data

https://laxmena.com/same-capacity-less-throughput
1•laxmena•15m ago•0 comments

Show HN: Almanac – A self-updating wiki from your files

https://usealmanac.com
1•reveriedev•16m ago•0 comments

Full Emoji List, v17.0

https://unicode.org/emoji/charts/full-emoji-list.html
1•mooreds•16m ago•0 comments

Archaeology team unearths 'prototype' of world-famous Stonehenge monument

https://apnews.com/article/stonehenge-britain-discovery-summer-solstice-36f8517159a9e750c1042bebd...
2•zdw•19m ago•0 comments

I made a free Islamic prayer app to quit saying "I'll pray in 5 minutes"

https://better-prayer.com
2•Adam-Hincu•20m ago•1 comments

Why recruiters can't find workers and new grads can't find jobs (it's not AI)

https://www.washingtonpost.com/education/2026/07/12/why-recruiters-cant-find-workers-new-grads-ca...
1•rustoo•20m ago•1 comments

Nuclear war survival guide reveals seven everyday items if disaster strikes

https://www.dailymail.com/sciencetech/article-15795297/Forgotten-nuclear-war-survival-guide-revea...
4•Bender•26m ago•1 comments

Crayola Marker Airbrush Kit

https://www.crayola.com/products/toys/marker-airbrush-kit-747669
1•turtleyacht•27m ago•0 comments

MacSurf 2.0 – Netsurf for Mac OS 9 Released

https://github.com/mplsllc/macsurf/releases/tag/v2.0
1•mplsllc•29m ago•0 comments

Show HN: PitchTrail – Perfect Pitch for Kids

https://pitchtrail.app/
2•theckel•31m ago•0 comments

UN adopts first binding framework for automated driving systems

https://www.heise.de/news/Meilenstein-fuer-Robotaxis-UN-verabschiedet-globales-Recht-fuer-autonom...
1•logickkk1•33m ago•0 comments

What if Berlin needs its bunkers back?

https://www.ft.com/content/ec954bd3-a008-4561-978c-be1039f607d2
1•leonidasv•33m ago•1 comments

Kode Dot Programmable pocket device for makers, pentesters and geeks

https://kode.diy
4•iNic•33m ago•0 comments

Anthropic extends Fable 5 access through July 19

2•dboreham•33m ago•0 comments

Ask HN: List of functional institutions fighting towards a free internet

1•ronfriedhaber•34m ago•0 comments

Ask HN: What Are You Working On? (July 2026)

1•david927•34m ago•0 comments

Show HN: Tenclicker – a WebLLM clicker game about whatever you want

https://tenclicker.com
1•mattcheston•38m ago•0 comments

Analysis: Popular Chrome Extension ModHeader Exfiltrates User Data

https://aydinnyunus.github.io/2026/07/12/modheader-data-exfiltration-stanfordstudies/
2•runtimepanic•39m ago•0 comments

Free Community Radio Player (Win, Linux, Android, iOS)

https://radiodock.app/
2•bitmancer•42m ago•0 comments

Uber is lobbying to keep robotaxi rides 85% human in New Jersey

https://www.wired.com/story/ubers-autonomous-vehicle-strategy-slow-their-adoption/
4•logickkk1•42m ago•0 comments

Show HN: Capn-hook for coding agents – don't grep the same mystery twice

https://github.com/cyrusNuevoDia/capn-hook
3•knrz•43m ago•0 comments

We're extending Claude Fable 5 access through July 19

https://xcancel.com/claudeai/status/2076351399999557669
2•quantisan•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.