frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Middle powers are rethinking espionage

https://www.economist.com/international/2026/09/22/how-middle-powers-are-rethinking-espionage
1•harry_nutsachs•23s ago•0 comments

A Million Agents Is a Distributed System Problem

https://www.instacloud.com/blogs/a-million-agents-is-a-distributed-systems-problem
1•tonychang430•1m ago•0 comments

The Pitești Experiment

https://undevaincomunism.com/the-pitesti-experiment-darkest-chapter-of-reeducation-torture-and-be...
1•jruohonen•2m ago•0 comments

Jensen Huang vs. the A.I. Doomers [the Ezra Klein Show]

https://www.nytimes.com/2026/09/23/opinion/ezra-klein-podcast-jensen-huang.html
1•paulpauper•3m ago•0 comments

From the Voice of Dickie Jones

https://blog.nathanlangley.dev/posts/dickie-jones.html
1•ninjahawk1•3m ago•1 comments

Lifelogging with Large Language Models

https://jaan.io/lifelogging-with-large-language-models
1•paulpauper•3m ago•0 comments

Mysteries of AI Generalization

https://www.astralcodexten.com/p/mysteries-of-ai-generalization
1•paulpauper•4m ago•0 comments

The Power of AI: Mass Collaboration

https://www.cppdepend.com/blog/ai-real-power-mass-collaboration/
2•cppfirst•4m ago•0 comments

Show HN: DeutschDNA – German Tutor Skill for Claude Code and Codex

https://github.com/ahmtsahin/deutsch-dna
1•impala64•5m ago•0 comments

Show HN: Busbar self-hosted execution boundary for Agentic Apps

https://github.com/GetBusbar/busbar
1•mangatgoyal•5m ago•0 comments

Show HN: Whiteboard (YC W26) – an open-source IDE for thoughtful software design

https://github.com/devdotfast/whiteboard
4•sidharthkmenon•6m ago•0 comments

Show HN: Devc – an alternate CLI for launching devcontainers

https://github.com/rameshvarun/devc
1•varunramesh•10m ago•0 comments

Open AI in the Wild: Adoption and Adaptation of Open Models on R/LocalLLaMA

https://dl.acm.org/doi/abs/10.1145/3805689.3812421
1•theanonymousone•11m ago•0 comments

Return-to-office policy in 2026: 8 of 75 top UK employers require 5 office days

https://www.wfhjobs.co.uk/wfh-jobs-research/rto-policy-facts-and-statistics
2•FreddieSO•11m ago•1 comments

Paper2agent Turns Static Papers into Live AI Tools

https://spectrum.ieee.org/paper2agent-ai-agents-research-papers
2•rbanffy•11m ago•0 comments

35 years ago I did it all myself

https://twitter.com/jasonfried/status/2103170272467767753
2•tosh•12m ago•0 comments

For Computer Use, the harness matters as much as the model

https://www.stagehand.dev/evals
10•MiguelG719•13m ago•3 comments

Meta employees don't like to be filmed with there own glasses [video]

https://www.youtube.com/shorts/6Abwd13odL4
2•pixvi•14m ago•0 comments

Show HN: Guardmcp – I scanned the official MCP registry with a config scanner

https://github.com/BerkantACUN/guardmcp
1•melalonsra•14m ago•0 comments

Developer ported Word for Windows 1.1a from 1990 to run natively on Windows 11

https://www.neowin.net/news/developer-ported-word-for-windows-11a-from-1990-to-run-natively-on-wi...
2•bundie•14m ago•0 comments

Does Georgism Work? Five Years Later

https://www.astralcodexten.com/p/does-georgism-work-five-years-later
2•iamnothere•14m ago•0 comments

"Antedisciplinary" Science (2005)

https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.0010006
1•the-mitr•14m ago•0 comments

Why does a Nix store path survive garbage collection?

https://www.labcraft.dev/blog/nix-gc-roots
1•anandsuresh•15m ago•0 comments

Show HN: ThimbleDb, an encrypted lightweight low latency open source database

https://github.com/Jason-Doyle/thimble
2•randomlurker2•15m ago•0 comments

We Have Named Arguments at Home

https://corrode.dev/blog/named-arguments-at-home/
2•dimonomid•16m ago•1 comments

OpenRouter: Server Tools Marketplace

https://openrouter.ai/tools
1•theanonymousone•17m ago•0 comments

Shared Memory for Coding Agents

https://getbelay.vercel.app/
1•doplexlabs•18m ago•0 comments

Lifestreams: A storage model for personal data: ACM SIGMOD Record: Vol 25, No 1

https://dl.acm.org/doi/10.1145/381854.381893
1•rbanffy•19m ago•0 comments

US plan for 90 day diesel export ban could have significant impact on Europe

https://www.politico.eu/article/eu-launches-diplomatic-offensive-to-stop-trumps-diesel-export-ban/
1•ck2•20m ago•1 comments

Open OCI spec for agent sandboxes

https://www.linux.com/featured/docker-commits-to-bringing-the-sandbox-kit-spec-to-the-cncf/
1•pploug•20m 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.