frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I wrote a book for engineers building production AI systems

https://productionaibook.com
1•aroussi•44s ago•0 comments

Show HN: I built a local fuzzing tool to red-team LLM agents (Python, SQLite)

1•woozyrabbit•1m ago•0 comments

Spanish court orders Meta to pay nearly half a billion euros in damages

https://apnews.com/article/meta-spain-fine-privacy-data-media-c97a7e46d923ba446c6974937e95a827
1•1vuio0pswjnm7•1m ago•0 comments

TSMC in a tight spot: demand for high-end chips exceeds capacity by factor of 3

https://www.igorslab.de/en/tsmc-in-a-tight-spot-demand-for-high-end-chips-exceeds-capacities-by-a...
1•speckx•2m ago•0 comments

Show HN: I made an AI SEO tool for people who hate writing content

https://scribepilotai.com/
1•lastFitStanding•3m ago•0 comments

Big attack on NPM – Shai-Hulud 2.0

https://about.gitlab.com/blog/gitlab-discovers-widespread-npm-supply-chain-attack/
1•thomasfl•3m ago•0 comments

Cryptology firm cancels elections after losing encryption key

https://www.bbc.com/news/articles/c62vl05rz0ko
4•tagawa•4m ago•1 comments

Show HN: A terminal based voice over IP service

https://github.com/THE-TARS-PROJECT/tars-comm
1•cooper258•5m ago•0 comments

Show HN: Open-Source Email Verifier

https://github.com/yolodex-ai/email-verifier
2•marcushyett•5m ago•0 comments

My Experience Using Tinker

https://www.rajan.sh/tinker
1•gmays•6m ago•0 comments

Show HN: A browser tool that tracks your hands in real-time

https://webinterac.vercel.app/
2•warrowarro•8m ago•0 comments

Idempotency Keys

https://www.morling.dev/blog/on-idempotency-keys/
3•furkansahin•8m ago•0 comments

OpenTransit – A MassTransit Fork

1•Nakib•9m ago•0 comments

A Software Language That Vibe Coding Kids Deserve

https://github.com/MatthiasKainer/matthiashihic
2•mat_the_k•9m ago•0 comments

Show HN: I built a "Hot or Not" for startups to get the feedback YC doesn't give

https://yci.vercel.app/vote
1•alielroby•10m ago•0 comments

A Power Grid-Aware Website

https://fershad.com/grid-aware-site/
1•vintagedave•11m ago•1 comments

A We-Free December

https://hollisrobbinsanecdotal.substack.com/p/a-we-free-december
1•HR01•11m ago•1 comments

Show HN: Product Loop – Automated AI customer interviews

https://productloop.io
1•satssehgal•12m ago•0 comments

Show HN: Tree Dangler

https://www.jasonthorsness.com/34
1•jasonthorsness•12m ago•0 comments

Show HN: Smart Bill Splitter: Split bills in browser without login, ads, cookies

https://smartbillsplitter.com
1•truetotosse•12m ago•0 comments

Getting Started with Claude Code

https://realpython.com/courses/getting-started-claude-code/
1•meysamazad•13m ago•0 comments

Browserbench.ai is launched to evaluate browser runtimes for AI Agents

https://www.browserbench.ai
2•idanraman•15m ago•1 comments

Ruthless prioritization while the dog pees on the floor

https://longform.asmartbear.com/prioritization/
2•gk1•17m ago•0 comments

Alphabet (Googl) Gains on Report Meta to Use Its AI Chips

https://www.bloomberg.com/news/articles/2025-11-25/alphabet-gains-on-report-that-meta-will-use-it...
1•mgh2•18m ago•0 comments

Ageing Populations Will Lead to Lower Living Standards, Warns Study

https://www.ft.com/content/3a675f7f-ff46-4b8d-9744-08dfed18d23a
2•skx001•18m ago•2 comments

Show HN: A seeded, deterministic chaos simulation runtime for async Rust

https://github.com/ZA1815/fracture
1•Crroak•19m ago•1 comments

The State of AI: don't share your secrets with a chatbot

https://www.ft.com/content/9cdd07b0-567e-4715-9ebd-435b1d685e4b
1•1vuio0pswjnm7•19m ago•0 comments

Questioning an Interface: From Parquet to Vortex

https://www.polarsignals.com/blog/posts/2025/11/25/interface-parquet-vortex
2•asubiotto•20m ago•0 comments

Show HN: Fractalbits – S3 compatibe store,1M iops p99~5ms,using Rust and Zig

https://github.com/fractalbits-labs/fractalbits-main
5•thomas_fa•22m ago•0 comments

Ask HN: Is There a Market for a "Phone-Only" VA Proxy?

2•ibogunov•22m ago•1 comments
Open in hackernews

Against SQL (2021)

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

Comments

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