frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Endless sitcom using Minimax H3 and a turbo LoRA

https://www.twitch.tv/dereactorwah
1•ttul•1m ago•0 comments

About YC Founder PG

https://twitter.com/PalmerLuckey/status/2094192472348098699
1•kappi•3m ago•0 comments

Exponential Smoothing

https://lisyarus.github.io/blog/posts/exponential-smoothing.html
1•ffin•8m ago•0 comments

The Part of Me That Doesn't Believe AI Is Fine

https://danunparsed.com/p/ai-is-fine
1•sambellll•10m ago•0 comments

HermOS – a local-first AI agent IDE

https://hermos.is-a.dev/
1•WFekik•11m ago•0 comments

We tackled the blockchain trilemma with multi‑bucket parallelism (niumeta)

https://github.com/niumeta/niumeta
1•niumeta_TZ•12m ago•1 comments

Lyft Charged Me $150 for Vomiting in a Car, but I Didn't Do It

https://www.nytimes.com/2026/08/20/travel/lyft-cleaning-charge.html
1•lxm•15m ago•0 comments

Domestic cats kill 1.3–4.0B birds and 6.3–22.3B mammals annually

https://www.nature.com/articles/ncomms2380
2•agnosticmantis•17m ago•0 comments

Just finished building a security audit tool

1•AIwebPageSEO•20m ago•0 comments

Stay logged out of Reddit and keep the old.reddit.com layout. Beta testers plz

https://github.com/kookaburrabarrel/sheddit/
1•kookaburrabarre•20m ago•1 comments

The Airlink Embraers just flew dangerously low over DHL Stadium in Cape Town

https://www.reddit.com/r/aviation/comments/1w1pcbs/the_airlink_embraers_just_flew_dangerously_low/
1•mcapodici•20m ago•0 comments

Show HN: RecQL – A portable query language for search and recommendation

https://github.com/recql
2•jonahharris•23m ago•0 comments

Show HN: Niu Lai Series Website

https://niulaify.com
1•bookbyter•24m ago•0 comments

Show HN: Shell utility for encrypting and decrypting files using scrypt

https://github.com/nodesocket/cryptr
1•nodesocket•25m ago•0 comments

Show HN: How to Fish Game Wiki

https://howtofish-game.org/
1•bookbyter•25m ago•0 comments

The Absurdity of Desktop Linux

https://www.augustl.com/blog/2026/absurdity-of-desktop-linux/
2•ingve•27m ago•1 comments

Copilot code review: Resolution reasons and expanded capabilities

https://github.blog/changelog/2026-08-27-copilot-code-review-resolution-reasons-and-expanded-capa...
1•kyisaiah47•35m ago•0 comments

Before NTP there were Time and Daytime

https://www.jeffgeerling.com/blog/2026/rfc-867-868-time/
1•ingve•40m ago•0 comments

The Shapes of Agent Memory – Files, Stores, and Experience

https://pinglin.tw/blog/the-shapes-of-agent-memory/
1•gmays•42m ago•0 comments

Special Is Optional

https://nik.art/special-is-optional/
2•herbertl•45m ago•0 comments

Creative Clarity

https://herbertlui.net/creative-clarity/
3•herbertl•46m ago•0 comments

Clips Kitty Open-source local AI video clipping and editing

https://github.com/ColinGPT9/clips-studio
1•ColinGPT•49m ago•1 comments

Understanding ChatGPT Work

https://simonwillison.net/2026/Aug/30/understanding-chatgpt-work/
21•gmays•52m ago•1 comments

Reimagine-it – redesign existing HTML from its own content (CLI)

https://github.com/Kayforkind/reimagine-it
1•kazimrmerchant1•57m ago•0 comments

PocketJS: UI runtime for every kind of computer

https://pocketjs.dev/
4•tomcam•1h ago•1 comments

Transitous – Community-run public transport routing service

https://transitous.org
2•rickcarlino•1h ago•0 comments

Learn about Meshtastic and Austin Mesh

https://www.austinmesh.org/about/
1•simonpure•1h ago•0 comments

Cursor launches Origin code hosting platform as GitHub outage exposes opening

https://venturebeat.com/infrastructure/cursor-launches-origin-code-hosting-platform-as-github-out...
2•gmays•1h ago•0 comments

Minutes to 33 Seconds

https://luca.lowndes.net/blog/bun-tests-10-minutes-to-33-seconds
2•lucalow•1h ago•0 comments

Sitegeist – The ultimate design extraction toolkit

https://chromewebstore.google.com/detail/sitegeist/npgjkgkkjcbbafihmojgodekkfgnjgdc
2•BillyMangino•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.