frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Europe is killing makers and micro-entrepreneurs

https://lectronz.com/u/lectronz/articles/how-europe-is-killing-makers-and-micro-entrepreneurs
146•l-one-lone•50m ago•49 comments

SeL4 security proofs now complete on AArch64

https://proofcraft.systems/news-2026/#2026-08-21
70•snvzz•2h ago•16 comments

I were 17, I'd learn how to build LLMs from scratch

https://twitter.com/paulg/status/2091544343589060625
285•bilsbie•17h ago•400 comments

Everything I own, owned

https://schlarp.com/posts/everything-i-own-owned/
1140•schlarpc•15h ago•302 comments

Executable Is a SQLite Database

https://fzakaria.com/2026/08/23/your-executable-is-a-sqlite-database
219•setheron•9h ago•41 comments

FDA clears blood test to aid evaluation for Alzheimer's disease

https://medicine.washu.edu/news/fda-clears-blood-test-to-aid-evaluation-for-alzheimers-disease/
96•dabinat•7h ago•34 comments

The Future Belongs to the Weird

https://essays.georgestrakhov.com/weird/
69•georgestrakhov•5h ago•37 comments

Anthropic's best AI model struggles to attract users as cheaper tools thrive

https://www.ft.com/content/5ee49718-c258-4f01-aa32-7e5b76ae5245
640•naves•19h ago•560 comments

Fast drilldown dashboards from a single Parquet file

https://www.hamiltonulmer.com/customer-dashboards-r2-hyparquet/
80•v3gas•5h ago•1 comments

Why older tech is sometimes safer from hackers

https://www.bbc.com/future/article/20260821-why-older-tech-is-sometimes-safer-from-hackers
16•tchalla•2h ago•6 comments

How I find problems to solve as a staff engineer

https://lalitm.com/post/find-problems-staff-engineer/
468•vanpra•18h ago•140 comments

Agent Is Not the Model

https://code.joejag.com/2026/your-agent-is-not-the-model.html
29•joejag•2h ago•8 comments

Andreessen Horowitz is investing billions into a bleak future

https://www.modelrepublic.org/articles/a16z-portfolio
370•reasonableklout•6h ago•134 comments

I built a low-latency AI companion that plays Skyrim with me

https://pantel.is/projects/ai-gaming-companion/
245•pantelisk•14h ago•45 comments

OCR It – pull text out of un-copyable documents for your LLM

https://github.com/thiagotigaz/ocr-it
80•thiagolima•7h ago•18 comments

The treasury bond mess: is this the demise of the US as a safe haven?

https://www.theguardian.com/business/2026/aug/24/treasury-bonds-trump-administration-debt
77•fittingopposite•3h ago•49 comments

Woman stranded in Spain after UK's eVisa system mistakes her for twin sister

https://www.theguardian.com/uk-news/2026/aug/24/woman-stranded-spain-uk-evisa-system-mistakes-twi...
103•giuliomagnifico•4h ago•79 comments

Google Workspace thinks my domain is an email provider (2025)

https://blog.elis.cc/articles/google-workspace-thinks-my-domain-is-an-email-provider/
346•el1s7•18h ago•119 comments

What Is a Harness?

https://earendil.com/posts/what-is-a-harness/
495•tosh•23h ago•159 comments

My agent.md to improve LLM-assisted code quality

https://fabiensanglard.net/agent.md/index.html
342•ibobev•19h ago•146 comments

New EU-wide product repair rules come into force

https://www.rte.ie/news/business/2026/0824/1588931-repair-rules/
182•austinallegro•8h ago•106 comments

Mourning Steve French

https://lwn.net/Articles/1090098/
40•mfrw•9h ago•0 comments

Show HN: Vanilla OS 3 Reunion – Immutable and Reproducible Operating System

https://vanillaos.org/blog/article/2026-08-24/vanilla-os-3-reunion---stable-release
8•NN708•3h ago•0 comments

How Complex Systems Fail (1998)

https://how.complexsystems.fail/
342•shortcrct•22h ago•72 comments

Malware infects Android-based automotive head unit firmware

https://securelist.com/android-head-unit-malware/121106/
251•campuscodi•1d ago•127 comments

AI Chip Architectures

https://www.jepeake.com/ai-chip-architectures
105•Finbarr•1d ago•36 comments

Fable and the end of the free lunch

https://www.dbreunig.com/2026/08/23/fable-the-end-of-moore-s-law.html
188•dbreunig•18h ago•174 comments

Over 5,200 Ebola cases recorded in Congo

https://www.afro.who.int/countries/democratic-republic-of-congo/news/over-5200-cases-recorded-dem...
92•simonebrunozzi•6h ago•39 comments

My favorite nonfiction books about cults, scams, and schemes

https://bookdna.com/best-books/nonfiction-about-cults-scams-and-schemes
255•bwb•1d ago•105 comments

Ask HN: Why do corporate failures always seem to punish the wrong people?

82•mittermayr•1h ago•60 comments
Open in hackernews

QueryLeaf: SQL for Mongo

https://github.com/beekeeper-studio/queryleaf
23•tilt•1y ago

Comments

ttfkam•1y ago
Would much rather have "Mongo" for SQL like this:

https://github.com/microsoft/documentdb

I am skeptical that SQL with Mongo backing it would be at all performant except in the most trivial cases. On the flip side, Postgres's jsonb indexing makes the inverse very doable.

Zambyte•1y ago
https://www.ferretdb.com/
VWWHFSfQ•1y ago
We're seeing a convergence of document DBs adding relational features, and relational DBs adding document features. At this point I find the best of both worlds to simply be PG with JSONB.

    create table document (
      id uuid primary key default gen_random_uuid(),
      doc jsonb
    );

This alone will give you a huge number of the features that Mongo provides, but also the full power of Postgres for everything else.
victor106•1y ago
this makes so much sense.

I also wonder if there are some specific capabilities of MongoDB that this pattern does not support?

etse•1y ago
Maybe not capabilities, but I'm wondering if Postgres has gotten any easier to scale horizontally. The administrative overhead of scaling and maintenance with MongoDB seemed lower to Postgres to me.

Would love to hear from others with more Postgres than I.

ttfkam•1y ago
Excluding conversations about MongoDB compatibility, PG16 added bidirectional replication for multiple writers and there are Postgres-compatible options out there for a distributed database including Citus, EDB Postgres Distributed, Yugabyte, CockroachDB, Aurora Limitless, etc.

The choices require some nuance to figure out a best fit, but then again so does any MongoDB installation (despite the marketing hype to the contrary as there are no free lunches).

You might be surprised how far most folks can typically scale with just read replica(s) on a reasonably sized writer. Add in bidirectional replication for multiple writers, and you can go even further. Beyond that, even vanilla Postgres can do it, but you'll need to do some combinations of partitioning and foreign tables.

zareith•1y ago
Curious if there is something similar that works with sqlite.
maxbond•1y ago
As of 3.38 (or 3.45 if you meant a binary JSON structure specifically) https://sqlite.org/json1.html
zareith•1y ago
We can use json type, but the dx around directly using that is not comparable to mongodb. Which is why I was looking for a similar abstraction.
aleksi•1y ago
There is FerretDB v1, which provides MongoDB protocol for SQLite. See https://github.com/FerretDB/FerretDB/tree/main-v1
zareith•1y ago
They seemed to have moved away from that.

From https://docs.ferretdb.io/migration/migrating-from-v1

> Unlike v1.x that provides options for PostgreSQL and SQLite as backend, FerretDB v2.x requires a PostgreSQL with DocumentDB extension as the backend

aleksi•1y ago
FerretDB v2 is built on top of this extension. See https://github.com/FerretDB/FerretDB
gavinray•1y ago
It's somewhat of a secret, but AWS's JDBC driver for DocumentDB supports Mongo as well

Let's you interact with Mongo as if it were a regular SQL JDBC database

https://github.com/aws/amazon-documentdb-jdbc-driver

bdcravens•1y ago
That driver is read-only
gitroom•1y ago
Honestly, putting Mongo and SQL together always confuses me a bit. I'm way more comfy with Postgres and jsonb. Anyone else feel like scaling Postgres is still kinda a pain?
sparky_•1y ago
I can appreciate the technical aspect of a translation layer, but I struggle to understand the use case for a tool like this. If your data is inherently relational, then you should be using a relational store anyway. And if it isn't, trying to hammer it on-demand into something that looks relational is going to eat you with performance implications. Unless I'm missing something.