frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: KeyEnv – manage team secrets without scattered .env files

https://keyenv.dev/
1•ivannovazzi•1m ago•0 comments

Homelab [video]

https://www.youtube.com/watch?v=-KJ0jmUgAmw
1•Brajeshwar•1m ago•0 comments

When Pills Start Acting Like Machines

https://spectrum.ieee.org/ingestible-electronics
1•Brajeshwar•2m ago•0 comments

Lyte2D: A comfy little game engine

https://relaxing.run/lyte-intro/
2•Boxxed•2m ago•1 comments

Fitscroll: TikTok like experience for outfit ideas

https://github.com/VicPitic/fitscroll
1•vicpitic•2m ago•1 comments

FPScanner: A lightweight browser fingerprinting library for bot detection

https://github.com/antoinevastel/fpscanner
1•thefindev•2m ago•0 comments

KaOS Explains Why It's Ending Its 12-Year KDE Plasma Era

https://kaosx.us/news/2026/systemd_kaos/
1•azurenumber•4m ago•0 comments

Show HN: I Redesigned IRIXNet

https://irixnet.org/
1•ThatGuyRaion•4m ago•0 comments

A safer, cost-effective solution for large-scale energy storage

https://phys.org/news/2026-02-safer-effective-solution-large-scale.html
1•PaulHoule•5m ago•0 comments

Show HN: Turn human decisions into blocking tool-calls for AI agents (iOS+CLI)

https://github.com/egradman/extendo-cli
1•egradman2•5m ago•0 comments

Stripe called at $159B in tender offer

https://www.cnbc.com/2026/02/24/stripe-value-stock-sale-tender-offer.html
1•tyre•5m ago•0 comments

What Happens to Business When You Close a Street to Cars

https://maxmautner.com/2026/02/22/pedestrianization.html
1•freediver•5m ago•0 comments

TLA+ by Example

https://tlabyexample.com/
1•todsacerdoti•6m ago•0 comments

PeerNS (Peerns.com) – DNS for PeerJS

https://peerns.com
1•smileytechness•6m ago•1 comments

Show HN: SQL-tap now has a browser-based Web UI

1•mickamy•7m ago•0 comments

Show HN: Bel interpeter vibe coded with Claude Code

https://github.com/Tomasmillar/Rust-Bel
1•Tomasmillar•8m ago•0 comments

Show HN: DataPorter – Rails engine for data imports

https://seryllns.github.io/data_porter/
1•Slns•9m ago•0 comments

The Seamstress Who Solved the Ancient Mystery of the Argonaut

https://www.themarginalian.org/2026/02/23/jeanne-villepreux-power-argonaut/
1•cyanbane•14m ago•0 comments

Show HN: Rungs.dev – IDE for PLC AOIs with Structured Text and Ladder Logic

https://rungs.dev/
1•Dagryl•14m ago•0 comments

Gogi – An AI-powered terminal assistant with native device-code OAuth

https://gogi.webdeb.de
1•thedumbuser•15m ago•2 comments

Timing Superintelligence

https://importai.substack.com/p/import-ai-445-timing-superintelligence
1•andsoitis•15m ago•0 comments

A simple L7 proxy for vLLM that manages LoRA adapter storage via NVMes

https://github.com/shayonj/loraplex
1•shayonj•16m ago•0 comments

React Native Comes to Meta Quest

https://reactnative.dev/blog/2026/02/24/react-native-comes-to-meta-quest
1•soheilpro•16m ago•0 comments

Matrix Inverse Square Root (SPD) with Fixed-Budget GEMM Kernels

https://jiha-kim.github.io/posts/fast-matrix-inverse-square-root/
1•ibobev•16m ago•0 comments

Rascal's Wager

https://sergey.substack.com/p/rascals-wager
4•neural_thing•17m ago•0 comments

An AI doomsday report shook US markets

https://www.theguardian.com/technology/2026/feb/24/feedback-loop-no-brake-how-ai-doomsday-report-...
2•geox•17m ago•0 comments

Flake Checks in Shell

https://entropicthoughts.com/flake-checks-in-shell
2•ibobev•17m ago•0 comments

Another Viral AI Doomer Article, the Fundamental Error, DoorDash's AI Advantages

https://stratechery.com/2026/another-viral-ai-doomer-article-the-fundamental-error-doordashs-ai-a...
1•swyx•18m ago•0 comments

The Edge of Mathematics – Interview with Terence Tao

https://www.theatlantic.com/technology/2026/02/ai-math-terrance-tao/686107/
1•haomiao•18m ago•0 comments

Zero Human Involvement: Why Full Autonomy Is the Only Measure of Personalisation

https://swifterm.com/zero-human-involvement-personalisation-maturity/
1•SwiftERM•19m ago•1 comments
Open in hackernews

Against SQL (2021)

https://www.scattered-thoughts.net/writing/against-sql/
4•yladiz•10mo ago

Comments

rawgabbit•10mo 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.