frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Faraday Security Enforcing and HyDE Recall

https://medium.com/@vektormemory/vektor-slipstream-real-tool-calling-faraday-security-enforcing-h...
1•vektormemory•1m ago•0 comments

Show HN: Open-source tool to sell your Claude Code and Codex sessions

https://github.com/cookiy-ai/sell-sessions-skill
1•YouchaoDong•3m ago•0 comments

Moving coding-agent guardrails from prompts to hooks

https://tesseracted-labs-blog.vercel.app/enforcing-coding-agent-guardrails-in-the-runtime-instead...
1•kkm•4m ago•0 comments

Intel TDX Remote Attestation Verifier Without Intel Trust Authority

https://zatona.dev/blog/intel-tdx-remote-attestation-verifier
1•dzatona•4m ago•0 comments

Saving Jet Fuel

https://tech.marksblogg.com/scikit-decide-openap-optimal-flight-planning.html
1•marklit•4m ago•0 comments

Ask HN: Why serialize documents to disk instead of memory-mapping runtime state?

1•ShengATsao•5m ago•0 comments

The Ex-Cop Who Stole Millions to Become a Real-Life Robin Hood

https://magazine.atavist.com/2026/the-bleeding-hearts-austria-robbery
1•gmays•6m ago•0 comments

"The Secret Life of Circuits" is here

https://blog.coredump.cx/p/the-secret-life-of-circuits-is-here
1•surprisetalk•7m ago•0 comments

Astra's chess reward hacking fell from 30% to 0% with a 95-word agreement

https://www.echohive.ai/can-an-agreement-reduce-ai-cheating-at-chess
2•echohive42•8m ago•0 comments

Gravity Linux – Linux for Apple Silicon M4 and Above

https://gravitylinux.org/blog/hello-gravity/
2•xlmnxp•9m ago•1 comments

Clarity Act Stalls in Senate as Crypto Bill Fails to Clear Key Vote

https://decrypt.co/378283/clarity-act-fails-senate-hurdle
3•consumer451•15m ago•0 comments

Update Security Baseline: Hardening Ubuntu Desktop 24.04/26.04 LTS

https://github.com/EugeXo/security-baseline-ubuntu
1•EugeXo•18m ago•0 comments

Introduction Video Gen in Img Play

https://apps.apple.com/az/app/img-play-ai-image-generator/id6745093585
1•hack88171•20m ago•0 comments

Google Project Genie. Explore infinitely diverse worlds

https://labs.google/fx/
2•fragmede•20m ago•0 comments

Understanding the Baby Boom

https://worksinprogress.co/issue/understanding-the-baby-boom/
1•debo_•21m ago•0 comments

Operation Epic Fury [pdf]

https://media.defense.gov/2026/Sep/09/2003993626/-1/-1/1/OEF_Q3_JUN2026_FINAL_508%20SECURE.PDF
2•layer8•22m ago•0 comments

Say No to AI Filters

https://percentshop.vercel.app/
1•vladavetisian•23m ago•0 comments

Digital Asset Market Clarity Act Fails in Senate

https://www.therage.co/clarity-act-fails-in-senate/
1•iamnothere•25m ago•0 comments

Salesforce in Claude

https://claude.com/blog/salesforce-in-claude
1•vertigoruntime•27m ago•0 comments

Has anyone made any money/successes making SaaS's with AI?

1•kraig911•28m ago•1 comments

Automatic Motor Learning Is the Secret to Our Effortless Walk

https://dailyneuron.com/automatic-motor-learning-effortless-walk/
1•MarlonPro•29m ago•0 comments

Recreating Voodoo Graphics and a Late-1990s Gaming PC on an FPGA

https://nand2mario.github.io/posts/2026/zsst-voodoo/
2•zdw•31m ago•0 comments

Run cloud agents on machines you manage

https://cursor.com/blog/self-hosted-machines
1•gmays•33m ago•0 comments

The State of Allocators in 2026 – 6 Months Later

https://cetra3.github.io/blog/state-of-allocators-2026-part-2/
1•agluszak•33m ago•0 comments

Toymodel (By Semiqlassical) – Modular Sci-ML

https://semiqlassical.tech/toymodel/
1•banerjeeav•33m ago•1 comments

Cohere CEO says calls for coordinated slowdown amounts to 'cartel' behaviour

https://www.theglobeandmail.com/business/technology/article-cohere-ceo-aidan-gomez-criticizes-cal...
5•neom•34m ago•0 comments

Benchmark Fatigue

https://www.pcmag.com/opinions/why-ai-benchmarks-are-total-bs-and-how-openai-and-anthropic-use-th...
1•eazae•35m ago•0 comments

Anthropic Confirms Claude AI Use in Weapons and Surveillance

https://thedefensepost.com/2026/09/15/anthropic-claude-weapons-surveillance/
2•EA-3167•35m ago•0 comments

Late-life semaglutide treatment slows ageing and extends lifespan in female mice

https://www.nature.com/articles/s41586-026-10940-7
2•gmays•37m ago•0 comments

Skill Poisioning turning AI agents into malware droppers

https://ministryofcyberaffairs.com/news/skill-poisioning-turning-ai-agents-into-malware-droppers-...
1•giuliomagnifico•38m 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.