frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JetKVM Mini

https://jetkvm.com/blog/introducing-jetkvm-mini
15•taubek•32m ago•6 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
158•jonifico•7h ago•183 comments

The Interim Computer Museum

https://icm.museum/
101•mulmen•5h ago•9 comments

Make your first edit to OpenStreetMap

https://high5apps.github.io/josm-plugin-website-wizard/
439•juliantigler•15h ago•105 comments

I Added a Non-Wi-Fi Mitsubishi AC to Home Assistant

https://medium.com/@ivangomezarnedo/how-i-added-a-non-wi-fi-mitsubishi-ac-to-home-assistant-22770...
61•ichacas•2d ago•29 comments

Aligned to whom?

https://hyperbo.la/w/aligned-to-whom/
34•lopopolo•5h ago•9 comments

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/
199•NaOH•4d ago•51 comments

Nvidia is the central bank of AI

https://www.economist.com/interactive/briefing/2026/09/03/nvidia-is-the-central-bank-of-ai
469•tolugenius•17h ago•330 comments

Everyone should slow down AI development except for me

https://xeiaso.net/notes/2026/everyone-slowdown-but-me/
417•xena•7h ago•248 comments

Stabilizing Rust's Never Type

https://lwn.net/SubscriberLink/1091015/d9e48318ed242b41/
181•cjd8•3d ago•51 comments

A succession crisis that tore England apart (2023)

https://www.historytoday.com/archive/feature/succession-crisis-tore-england-apart
29•pepys•5h ago•13 comments

Don't be the out of touch Kung Fu master

https://twitter.com/ID_AA_Carmack/status/2098443262214230095
106•dsubburam•10h ago•88 comments

AgentsDock: An IDE designed for agentic AI research

https://agentsdock.net/
45•ZihuiGeorgia•8h ago•23 comments

A wandering black hole caught feeding on the run

https://phys.org/news/2026-08-black-hole-caught.html
13•wglb•4h ago•2 comments

P(doom)

https://lucumr.pocoo.org/2026/9/12/pdoom/
70•lumpa•10h ago•38 comments

Vintage Scientific Papers with LaTeX

https://github.com/Foadsf/vintage-latex
58•petalmind•3d ago•6 comments

Durable execution without history replay

https://trigora.dev/blog/durable-execution-without-history-replay/
17•hypervs•3d ago•3 comments

LG denies TV spying claims, says tracking and snooping concerns 'not true'

https://www.tomshardware.com/tech-industry/big-tech/lg-strongly-denies-tv-security-claims-says-tr...
512•datakan•2d ago•404 comments

Operation Smart Kettle – Börzels Blog

https://blog.boerzel.de/de/blog/operation-smart-kettle
3•marbartolome•2d ago•1 comments

Liesegang Rings

https://chillphysicsenjoyer.substack.com/p/liesegang-rings
34•surprisetalk•3d ago•4 comments

Getting 50 GB/S Back from the Apple Neural Engine

https://eiln.github.io/posts/ane-dma.html
134•eiln•3d ago•26 comments

We must pace the frontier

https://darioamodei.com/post/we-must-pace-the-frontier
631•apsec112•18h ago•885 comments

After Math

https://terrytao.wordpress.com/2026/09/12/after-math/
59•throwaway81523•5h ago•40 comments

Why So Many AI Researchers Think the Machines Could Kill Everyone

https://www.wired.com/story/why-so-many-ai-researchers-think-the-machines-could-kill-everyone/
8•joozio•1h ago•3 comments

Will there be a 7G?

https://arxiv.org/abs/2609.01877
97•Betelbuddy•15h ago•157 comments

Real-SWE: Benchmarking AI models on private, real-world, enterprise codebases

https://withspecific.com/benchmarks/real-swe
233•theanonymousone•11h ago•133 comments

I made a build visualizer to understand Bun's compile times

https://lalitm.com/post/buildprof/
125•lalitmaganti•17h ago•23 comments

Microcode in Intel's 8087 floating-point chip: the scale instruction

https://www.righto.com/2026/09/8087-microcode-reverse-engineering-fscale.html
105•pwg•16h ago•33 comments

When anyone can build software, who decides what not to build?

https://architectureintel.com/when-anyone-can-build-software-who-decides-what-not-to-build-ae07fd...
29•younss•2h ago•20 comments

Linux Zoom client proactively reading everything written to X11 clipboard

https://hachyderm.io/@simontatham/117201594980991062
290•encyclopedism•13h ago•88 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.