frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Fable 5.1 and Claude Mythos 5.1

https://www.anthropic.com/claude-fable-and-mythos-5-1
1057•denysvitali•11h ago•986 comments

True Rate of Unemployment

https://www.lisep.org/tru
90•ptrhvns•2h ago•30 comments

The Emergent Symbolic Structure of Artificial Neural Networks

https://arxiv.org/abs/2608.29530
26•schmuhblaster•1h ago•2 comments

How accurate have Ed Zitron's AI skeptic predictions been?

https://danluu.com/zitron/
558•jatins•10h ago•640 comments

WebFPGA

https://webfpga.io/
20•gurjeet•1h ago•10 comments

Fine, I'll build my own text editor

https://dbushell.com/2026/09/01/text-editor/
29•Alephinitesimal•12h ago•9 comments

FBI Probes Service Selling 153M+ Drivers Licenses

https://krebsonsecurity.com/2026/09/fbi-probes-service-selling-153m-drivers-licenses/
108•tatersolid•6h ago•35 comments

The efficient frontier of LLM inference

https://www.baseten.co/blog/the-efficient-frontier-of-llm-inference/
75•philipkiely•5h ago•19 comments

My local model setup on an M4 Pro Mac Mini

https://lws.io/blog/my-local-model-setup/
122•raybb•6h ago•60 comments

Show HN: Weedout – Safari extension that hides YouTube AI-labeled videos

https://masteranza.github.io/weedout/
92•masteranza•7h ago•31 comments

Introducing Ad Blocker for Firefox on iOS

https://blog.mozilla.org/en/firefox/ad-blocker-on-ios/
370•HieronymusBosch•15h ago•126 comments

Sonic Pi

https://sonic-pi.net/
78•Bluestein•4d ago•11 comments

The ChatGPT/Codex app bundles a full copy of LibreOffice

https://simonwillison.net/2026/Sep/1/codex-libreoffice/
317•timpera•9h ago•146 comments

Path to Astra: critical capabilities and frontier safeguards

https://openai.com/index/path-to-astra/
112•jithinraj•9h ago•50 comments

Launch HN: Nori Robotics (YC S26) – A low-cost humanoid robot for development

https://www.norirobotics.com/
127•AntonioLi•11h ago•43 comments

The creator of Jujutsu has joined ERSC

https://ersc.io/blog/martin-joins-ersc
209•steveklabnik•11h ago•153 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
63•all2•8h ago•30 comments

Ambient CSS v3 – Blender meets CSS

https://ambientcss.vercel.app/
221•kikkupico•13h ago•70 comments

Movie Scene Map – 13,312 films, series, games, anime and manga

https://moviescenemap.com/
186•Flightmussy•12h ago•30 comments

Laurie Anderson’s next manuscript to be locked away for 88 years

https://www.theguardian.com/books/2026/aug/29/laurie-anderson-manuscript-88-years-future-library-...
28•mitchbob•3d ago•13 comments

Forgotten History of Small Nuclear Reactors (2015)

https://spectrum.ieee.org/the-forgotten-history-of-small-nuclear-reactors
18•derriz•4d ago•1 comments

Refurbishing a Tektronix TDS7104 Oscilloscope

https://tomverbeure.github.io/2026/08/23/Tektronix-TDS7104-Refurbishing.html
106•jwise0•9h ago•50 comments

Top Web Design Styles of 1993

https://contemporary-home-computing.org/prof-dr-style/
15•luu•1d ago•1 comments

Show HN: Running 104GB Qwen3.8-Flash-Next on 48GB Mac with at ~12 tok/s

https://github.com/carloslfu/slotstream
182•carloslfu•12h ago•91 comments

Building Autonomous Goal Loops That Deliver

https://jx0.ca/building-autonomous-goal-loops-that-deliver/
28•jarredkenny•3d ago•3 comments

Ask HN: Who is hiring? (September 2026)

204•whoishiring•14h ago•218 comments

Building an interactive instrument for a one-of-a-kind festival

https://benholmen.com/blog/halfmoon-chimes/
31•tjwds•4d ago•3 comments

Atlas: A World Model for Spatial Intelligence

https://www.worldlabs.ai/blog/atlas
184•johnsutor•11h ago•45 comments

Solving the Flat Cube

https://mathenchant.wordpress.com/2026/08/19/solving-the-flat-cube/
17•surprisetalk•1d ago•2 comments

Quill (YC W20) Is Hiring a Fullstack SWE

1•R_R•12h ago
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.