frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MiMo v2.6

https://mimo.xiaomi.com/mimo-v2-6
672•volf_•8h ago•323 comments

Spymarks, Not Watermarks

https://brand.io/article/spymarks/
229•possibilistic•5h ago•42 comments

What Sun got wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
536•chmaynard•14h ago•311 comments

I don't want to read what you didn't write

https://blog.colinbreck.com/i-dont-want-to-read-what-you-didnt-write/
438•mooreds•6h ago•146 comments

Transformers Explained Visually

https://poloclub.github.io/transformer-explainer/
257•aray07•8h ago•41 comments

Attention is all you have

https://alicegg.tech/2026/09/21/attention
644•zer0tonin•14h ago•194 comments

NASA’s Mars Sample Return mission is dead

https://www.science.org/content/article/nasa-s-mars-sample-return-mission-dead
340•Muhammad523•9h ago•275 comments

PDF Forgeries Are Surprisingly Rare (2022)

https://gwern.net/blog/2022/pdf-forgery
13•1317•1d ago•8 comments

AI coding has made CI a bottleneck, so we reworked ours to keep up

https://linear.app/now/ci-bottleneck-reworked
172•julian_digital•9h ago•181 comments

Claude Status – Elevated errors for multiple models

https://status.claude.com/incidents/7g1qpkyz5gxh
78•corvad•3h ago•60 comments

Looking forward to Git 2.56 – and 3.0

https://lwn.net/SubscriberLink/1094575/2385e98583715c2b/
60•chmaynard•5h ago•24 comments

Socrates vs. the Written Word (2011)

https://wondermark.com/socrates-vs-writing/
24•spectraldrift•4h ago•7 comments

Divide by depth for instant 3D

https://gabrieloc.com/2026/09/15/perspective.html
105•gabrieloc•2d ago•17 comments

The Advisory Group on Mathematics and Artificial Intelligence

https://terrytao.wordpress.com/2026/09/21/advisory-group-on-mathematics-and-artificial-intelligence/
109•digital55•9h ago•54 comments

Paper Models of Polyhedra

https://www.polyhedra.net/en/
13•pykello•2d ago•0 comments

How do traffic signals work? (2019)

https://practical.engineering/blog/2019/5/11/how-do-traffic-signals-work
71•at1as•12h ago•52 comments

More floating point alternatives

https://wizardzines.com/comics/floating-point-alternatives/
14•vismit2000•2d ago•11 comments

Frontier AI on Your Own Hardware

https://timdettmers.com/2026/09/21/dlab-open-source-week/
123•pretext•9h ago•63 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
418•tosh•21h ago•191 comments

First Shader from Zero in Godot 4

https://www.gdquest.com/library/first_shader_godot4_portal/
44•ibobev•17h ago•6 comments

Turn off and restrict access to Apple Intelligence features on Mac

https://support.apple.com/guide/mac-help/turn-restrict-access-apple-intelligence-mchlb2e44f94/mac
263•alwillis•11h ago•180 comments

HERMES radio enables voice and data communication over vast distances

https://spectrum.ieee.org/hermes-shortwave-radio-digital-data
112•SamuraiLion•12h ago•49 comments

Grok 4.7

https://x.ai/news/grok-4-7
523•meetpateltech•12h ago•448 comments

Python Workers are now generally available

https://blog.cloudflare.com/python-workers-ga/
198•torutofu•14h ago•33 comments

Apple Copland D11E4 Booting in the Browser

https://www.pagetable.com/300
112•luu•10h ago•32 comments

Copper-Rs: Live Telemetry Deterministic Twins for Robots

https://www.copper-robotics.com/whats-new/copper-12-live-telemetry-and-replayable-logs-over-a-los...
6•gbin•2d ago•1 comments

Truman World

https://trumanworld.live
10•trollied•1d ago•12 comments

Why does mathmain need an encrypted loader?

https://safedep.io/mathmain-encrypted-loader/
120•abhisek•10h ago•35 comments

TXR: An Original, New Programming Language for Convenient Data Munging

https://www.nongnu.org/txr/
28•andsoitis•23h ago•3 comments

Roboharm: Do frontier robot policies refuse unsafe instructions?

https://robocurve.org/roboharm/
40•msadowski•9h ago•21 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.