frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What happens if you eat too many gummy vitamins?

https://www.popsci.com/science/can-you-overdose-gummy-vitamins/
2•gmays•1m ago•0 comments

ProsFiles – local-first media utilities with URL ingest (OSINT smoke test)

https://www.prosfiles.com/
1•experimenteur•2m ago•0 comments

NanoClaw and Echo patch vulnerabilities in agent's runtime, browser, and libs

https://nanoclaw.dev/blog/nanoclaw-echo-hardened-agent-runtime/
1•four_fifths•4m ago•0 comments

Keyboardion

https://ianthehenry.com/posts/keyboardion/
1•bobbiechen•4m ago•0 comments

JLC PCB SMD Assembly Component Catalogue

https://yaqwsx.github.io/jlcparts/
1•gregsadetsky•7m ago•0 comments

Lorenz and Little: How Much Does Your Tail Cost?

https://brooker.co.za/blog/2026/07/29/lorenz-and-little.html
1•mfiguiere•7m ago•0 comments

Verifiable Bookmarklets

https://robertovg.com/blog/verifiable-bookmarklets/
1•speckx•7m ago•0 comments

Addiction to Ideas: How to Break the Cycle (2017)

https://colleenrobb.com/2017/03/18/addiction-to-ideas-how-to-break-the-cycle/
1•chistev•7m ago•0 comments

How much can you delegate to agents?

https://newsletter.posthog.com/p/agent-autonomy
1•duck•8m ago•0 comments

After 30 days, what I got wrong about Educative vs. AlgoMonster

https://leetcopilot.dev/blog/educative-vs-algomonster-2026
1•alexwang24•9m ago•0 comments

Ask HN: Are you ready for non crashing valuations for AI?

2•kingleopold•9m ago•0 comments

FCC ban humanoid robots from China

https://www.theguardian.com/us-news/2026/jul/28/fcc-ban-humanoid-robots-china
2•oco101•11m ago•0 comments

I cloned Apples passdesigner as a webapp

https://passdesigner.app/
1•bahrtw•13m ago•1 comments

Epoch.ai: Parallelization constraints could delay a technological singularity

https://twitter.com/epochairesearch/status/2082534303955890505
2•dataking•16m ago•0 comments

Claude Opus 5 cheated when tasked with running a vending machine

https://techcrunch.com/2026/07/29/claude-opus-5-became-downright-ruthless-when-tasked-with-runnin...
2•mikelgan•17m ago•2 comments

Lightweight, zero-dependency prompt that prevents AI agents from losing context

https://gist.github.com/sourdecor/78b2ff9016f3f597934150a3501427ff
2•sourdecor•18m ago•0 comments

Commodification of Intelligence: Good, Bad, and Ugly Circular AI Deals

https://www.emergingtrajectories.com/lh/commodification-and-circularity/
6•cl42•18m ago•3 comments

When Reading Roman History

https://rozumem.xyz/posts/18
2•rozumem•19m ago•0 comments

Show HN: Edge Drop – Doing what Microsoft should do for Win+V(Clipboard)

https://github.com/Deepender25/Edge-Drop
2•Deepender25•19m ago•0 comments

I dropped ML and built a BTC predictive engine using geometric topology

https://motorv7cqt.vercel.app/
2•CQT_VE•20m ago•0 comments

A New Chapter for Reve

https://blog.reve.com/posts/a-new-chapter-for-reve/
3•aaraujo002•21m ago•0 comments

Nobody owns the 30 seconds an LLM spends thinking, so I made an arcade there

https://github.com/The747Lab/747-terminal-games
2•the747lab•22m ago•0 comments

Xberg 1.0 released: document extraction for a world of tooling

https://bytecode.news/posts/2026/07/xberg-1-0-released-document-extraction-for-a-world-of-tooling
3•jottinger•22m ago•0 comments

Ace up the sleeve: Hacking into Apple's new USB-C Controller (2024) [video]

https://media.ccc.de/v/38c3-ace-up-the-sleeve-hacking-into-apple-s-new-usb-c-controller
2•gregsadetsky•22m ago•0 comments

Show HN: Capitolisation – Trade like the bests elected officials

https://www.capitolisation.com
2•Alannnn•23m ago•0 comments

AI "Proves" Collatz Conjecture with Lean 4 Bug

https://twitter.com/gro_tsen/status/2082483878480977959
5•pfdietz•24m ago•0 comments

Austerity Breeds Financial Protectionism

https://theloop.ecpr.eu/who-the-welfare-state-protects-shapes-a-countrys-financial-openness/
7•kome•25m ago•1 comments

Show HN: Blender in WebAssembly

https://developer.puter.com/labs/blender/
3•ent101•25m ago•1 comments

Getting Away from the Algorithm

https://antoniosantos.io/getting-away-from-the-algorithm/
2•theorchid•26m ago•0 comments

Engy – Verified LLM Inference

https://engy.ai/
2•poidos•26m 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.