frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Among European Companies That Use a CDN, Nearly 9 in 10 Use Cloudflare

https://ciphercue.com/blog/european-cdn-concentration-cloudflare-nine-in-ten
237•adulion•4h ago•198 comments

Antiquated HTML Snippets and Artefacts

https://vale.rocks/posts/html-relics
101•patadune•3h ago•28 comments

PISA 2025 Students' reading and mathematics performance declined across the OECD

https://www.oecd.org/en/about/news/press-releases/2026/09/pisa-2025-students-reading-and-mathemat...
44•mazokum•2h ago•35 comments

I've factored the RSA keys of a Certificate Authority from the 90s

https://mcpherrin.ca/2026/09/07/rsa.html
397•ahlCVA•12h ago•76 comments

Why getting your hands dirty is good for you

https://www.bbc.com/future/article/20260904-how-getting-your-hands-dirty-boosts-your-health-withi...
90•HatchedLake721•3h ago•64 comments

There's a new "Google Jail" for independent wikis

https://weirdgloop.org/blog/google-jail
278•pizzaiolo•11h ago•104 comments

We built our house for LAN parties (2024)

https://lanparty.house/
240•fittingopposite•2d ago•150 comments

Picolibrary: A Small Press

https://novalis.org/blog/2026-08-31-picolibrary-a-very-small-press.html
14•luu•3d ago•1 comments

End-to-end infrastructure for training and inferencing open weight models

https://docs.appliedcompute.com
30•Bluestein•3d ago•5 comments

TALA Is Open-Source

https://d2lang.com/blog/tala-is-open-source/
256•alixanderwang•13h ago•22 comments

Mistral raises €3B

https://mistral.ai/news/mistral-makes-sovereign-open-weight-ai-to-frontier/
618•kuberwastaken•8h ago•435 comments

How well do agents use test/verification techniques?

https://danluu.com/agentic-testing/
124•vinhnx•10h ago•45 comments

Multi-Agents LLM Financial Trading Framework

https://github.com/TauricResearch/TradingAgents
85•fittingopposite•7h ago•53 comments

Leaving VMware just got harder after Broadcom pulled VDDK downloads

https://www.virtualizationhowto.com/2026/09/leaving-vmware-just-got-harder-after-broadcom-pulled-...
227•josephcsible•16h ago•111 comments

Watch Los Angeles get built, one building at a time (1880–2026)

https://lax-skyline.parcelscope.net/
315•rustywasm•18h ago•153 comments

Arm Mali G2-Ultra NX GPU: desktop-class mobile gameplay with AI-native graphics

https://newsroom.arm.com/blog/arm-mali-g2-ultra-nx-ai-native-mobile-graphics
60•Re-Tails•9h ago•43 comments

Ask HN: Are others seeing Google's reCAPTCHA rejecting Firefox users?

80•Animats•4d ago•28 comments

Robot writes in languages it has never seen before (2019)

https://www.wired.com/story/robot-writing/
14•euanming•2d ago•7 comments

WeatherNext 3

https://deepmind.google/science/weathernext/
367•matthieu_bl•4d ago•91 comments

Jellyfin 12.0

https://jellyfin.org/posts/jellyfin-release-12.0/
465•0xC0ncord•11h ago•213 comments

Scientists observe Einstein's gravity in the quantum world

https://www.ox.ac.uk/news/2026-08-28-scientists-observe-einsteins-gravity-in-the-quantum-world
244•mudil•3d ago•75 comments

John Margolies' photographs of roadside America

https://publicdomainreview.org/collection/john-margolies-photographs-of-roadside-america/
99•duck•4d ago•31 comments

The VMs Powering Mobile Agents (Instinct, Claude Code)

https://rohanadwankar.github.io/posts/platforms.html
49•RohanAdwankar•8h ago•9 comments

Trusting-Trust Attack against an Entire Linux Distribution

https://arxiv.org/abs/2607.24888
223•signa11•3d ago•50 comments

My Feed, My Way

https://www.pm.gov.au/media/my-feed-my-way
154•dotcoma•8h ago•128 comments

Extinct Tasmanian tiger's 'snap' unlike any living mammal's bite

https://www.cnn.com/2026/09/02/science/tasmanian-tiger-skull-bite-force
40•cisc•5d ago•8 comments

Emacs Bedrock 2.0

https://lambdaland.org/posts/2026-09-06-bedrock-v2/
144•ashton314•17h ago•34 comments

Icy Moons Are Ocean Worlds

https://mceglowski.substack.com/p/icy-moons-are-ocean-worlds
199•worldvoyageur•2d ago•35 comments

Understanding Computer Memory Architecture and SSD Internals

https://codingpirate.com/understanding-computer-memory-architecture-ac9320110787
58•Deeptiman•1d ago•8 comments

This Month in Ladybird – August 2026

https://ladybird.org/newsletter/2026-08-31/
255•exploraz•3d ago•64 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.