frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A seamless private messenger and workspace for iOS and macOS

https://blog.neutrontech.ai/2026/08/13/private-messaging-workspace-without-a-phone-number-why-hub...
1•NeutronTech_ai•1m ago•0 comments

ProbeDeck for ClickHouse iOS App for Interactions During Incidents

1•chamav•1m ago•0 comments

CUDA Shared Memory Swizzling

https://leimao.github.io/blog/CUDA-Shared-Memory-Swizzling/
1•jxmorris12•2m ago•0 comments

Show HN: Orca – Instant cross-platform in-app purchase orchestration

2•pcvetkovski•4m ago•0 comments

Heart Aerospace Completes First Flight of Largest Electric Aircraft

https://www.heartaerospace.com/newsroom/heart-aerospace-completes-first-flight-of-world-s-largest...
2•chha•4m ago•1 comments

A decades-old bug in Knuth's long division (TAOCP Vol II, Algorithm 4.3.1D)

https://kolja.rs/algorithm-d/
2•nk_kolja•4m ago•1 comments

Show HN: Neal – Claude and Codex working together

https://github.com/navels/neal
2•navels•5m ago•0 comments

Making Of: My Website

https://ocelot.lol/blog/2026/08/07/site-making-of
2•HypnoticOcelot•6m ago•1 comments

My benchmark, it beat Ponytail on code, tokens, cost, and time

https://github.com/ujjwalredd/Dopamine
2•ujjwalreddyks•6m ago•0 comments

Show HN: NanoRL – RL training for LLMs in ~1,800 lines

https://github.com/alex000kim/nanoRL
7•alex000kim•7m ago•0 comments

I Use NoScript

https://daft.red/2026/08/why-i-use-noscript/
2•speckx•7m ago•0 comments

Build a Stratum 1 PTP Grandmaster on a Budget

https://opscode.io/posts/ptp-grandmaster-cm4-sr1723u10/
2•malcolmfrazier•7m ago•0 comments

Show HN: Prompts Suno follows, not longer prompts

https://sunomarket.com
2•wowinter15•8m ago•0 comments

Weekly VSCode Grumbling

2•azatom•10m ago•0 comments

Show HN: WikiZipf – Guess the most frequent words of a Wikipedia article

https://wikizipf.com/?lang=en
2•Madki•11m ago•0 comments

White House taps security firms for offensive hack-back operations

https://www.bleepingcomputer.com/news/security/white-house-taps-security-firms-for-offensive-hack...
2•ilamont•11m ago•0 comments

GitHub Stacks in Jujutsu

https://alan.norbauer.com/articles/github-stacks-with-jujutsu/
2•Kinrany•12m ago•0 comments

Flock changes surveillance rules after cops used it to stalk exes

https://www.theverge.com/policy/979339/flock-ceo-audits-data-retention
2•BlueBerry2001•13m ago•1 comments

Tell HN: The e-mail service Posteo (dot de) is down

https://posteo.de
3•a3w•14m ago•1 comments

I Outsmarted Pro Car Thieves [video]

https://www.youtube.com/watch?v=h0EGCnBjTVk
3•surprisetalk•15m ago•0 comments

Show HN: Modern Alternative to Plausible

https://getopen.so
5•rahulbridge•16m ago•1 comments

Bending Spoons Customers Decry 'Outrageous' App Price Hikes

https://www.bloomberg.com/news/articles/2026-08-13/bending-spoons-customers-decry-outrageous-app-...
4•helsinkiandrew•17m ago•1 comments

Show HN: MCP Memory – Fast Agent Memory Using Google's OKF and SQLite FTS5

https://github.com/fellowgeek/mcp-memory
4•pcbmaker20•18m ago•0 comments

LocalSend v1.18.0 and v1.18.1 Released

https://github.com/localsend/localsend/releases
4•exploraz•18m ago•0 comments

AI Generated 3D Models Flood Market, but Almost No One Is Buying Them

https://www.404media.co/ai-generated-3d-models-flood-market-but-almost-no-one-is-buying-them/
2•Jimmc414•19m ago•0 comments

Tell HN: Claude Code Is Down

3•aurareturn•19m ago•0 comments

The Reasons Agentic Commerce Hasn't Taken Off Yet

https://authoryze.ai/blog/the-reasons-agentic-commerce-hasnt-taken-off-yet
2•kevinfee•20m ago•3 comments

Show HN: I told Claude Code never to reveal my secrets. It sent 3 of 4 anyway

https://github.com/crp4222/PrivAiTe
6•crp4222•20m ago•0 comments

Time to Move On: Querying Without Nulls and Bags

https://arxiv.org/abs/2608.10863
3•Jimmc414•21m ago•0 comments

Spec Sheets Are Not Kernels: INT8 Availability on Nvidia Blackwell Ultra

https://arxiv.org/abs/2608.11693
2•Jimmc414•21m 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.