frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
243•mpweiher•4h ago•47 comments

I Changed My License

https://bergie.iki.fi/blog/eupl/
45•jllyhill•1h ago•44 comments

Cloud in a Bottle: making self-hosting accessible to everyone

https://cloudinabottle.org/blog/launch-post
445•zplizzi•11h ago•218 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
394•chmaynard•14h ago•163 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
169•birdculture•3d ago•82 comments

Pigeon, a signed Pass for what a sub-agent may do

https://github.com/pigeonlabsHQ/pigeon
5•pigeonlabshq•55m ago•4 comments

M-DISC – DVD/Blu-ray compatible discs that may last up to 1000 years

https://en.wikipedia.org/wiki/M-DISC
21•gurjeet•4d ago•7 comments

IBM Quantum Nighthawk R2

https://www.ibm.com/quantum/blog/nighthawk-r2
22•fuglede_•3d ago•8 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
74•sohkamyung•4d ago•11 comments

AI, Tools and Transformation

https://www.ben-evans.com/benedictevans/2026/9/3/ai-tools-and-transformation
75•firexcy•9h ago•30 comments

"We Have to Assume That the Internet Will Go Offline in the Next Few Years"

https://www.trendingtopics.eu/emad-mostaque-ai-internet-outlook-english/
14•gumby•3h ago•4 comments

AMD Based FreeBSD Desktop Reloaded

https://vermaden.wordpress.com/2026/09/06/amd-based-freebsd-desktop-reloaded/
61•vermaden•9h ago•7 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2196•moultano•1d ago•1552 comments

OpenBSD Stories: Strange Medieval Devices

http://miod.online.fr/software/openbsd/stories/smd.html
71•zdw•3d ago•14 comments

Learn Programming with OCaml

https://usr.lmf.cnrs.fr/lpo/
264•elvis70•18h ago•100 comments

You Don't Have a Right to Safe Drinking Water, US Court Rules

https://www.motherjones.com/politics/2026/09/drinking-water-mississippi-lawsuit/
148•vrganj•2h ago•89 comments

Show HN: Keen Bean – Mac meeting notes that draft the spec while you talk

https://keenbean.app/
5•SavvyMonkey•1h ago•0 comments

Chrome again exempts Google from user site data settings

https://lapcatsoftware.com/articles/2026/9/1.html
437•ExMachina73•12h ago•66 comments

The Empire of Information

https://lareviewofbooks.org/article/data-empire-roopika-risam-information-organize-control-dominate/
5•Petiver•3d ago•0 comments

A Computer History Time Capsule

https://blog.archive.org/2026/08/27/a-computer-history-time-capsule/
12•mooreds•4d ago•0 comments

The "$60 Gaming PC" – AMD BC-250 (2025)

https://devquasar.com/hardware/the-60-gaming-pc-amd-bc-250/
350•networked•22h ago•103 comments

Private German rocket makes history, reaches orbit from European soil

https://www.space.com/space-exploration/launches-spacecraft/isar-aerospace-second-launch-norway-a...
637•bookmtn•15h ago•341 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
685•Cider9986•1d ago•357 comments

LLMs as a Cognitive Virus

https://arxiv.org/abs/2609.03344
288•canjobear•15h ago•205 comments

Topologist's Map of the World

https://www.futilitycloset.com/2026/09/01/small-world-20/
103•beardyw•4d ago•25 comments

Visualizing Rust's Vtables: How dyn Trait Works In Memory

https://sofiabelen.github.io/projects/visualizing-rusts-vtables-how-dyn-trait-works-in-memory/
180•torutofu•22h ago•38 comments

GPT-6 Astra on robot arms

https://openai.robocurve.org/gpt-6-astra/
204•Anon84•9h ago•152 comments

RecurseCenter.return()

https://mm-dev.rocks/series/recursecenter.return/
53•evakhoury•4d ago•8 comments

How Swiss tables work in Go built-in map

https://victoriametrics.com/blog/go-swiss-table-map/index.html
83•valyala•2d ago•6 comments

Delidded Intel I9-14900KS CT Scan

https://www.lttlabs.com/articles/2026/09/02/delidded-intel-i9-14900ks
109•willx86•3d ago•11 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.