frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Opus 5.5

https://www.anthropic.com/claude-opus-5-5
182•km144•47m ago•253 comments

OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005

https://www.cryptocellar.org/bgac/the-mvueh-break.html
325•sohkamyung•3h ago•273 comments

16-bit Intel 8088 chip

https://allpoetry.com/16-bit-Intel-8088-chip
40•rbanffy•1h ago•3 comments

Aging may be a program, not a breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
23•elo2000•28m ago•16 comments

OpenAI is well positioned to fast-follow Jev

https://arcturus-labs.com/blog/2026/09/21/will-openai-eat-jevs-lunch/
139•JohnBerryman•2h ago•100 comments

WordPress: Unauthenticated path traversal in page-template resolution

https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-7hp8-65ch-5whp
19•vntok•42m ago•5 comments

Writing Rust code that's fast by asking agents to make the code faster

https://minimaxir.com/2026/09/agentic-iteration/
38•mooreds•1h ago•15 comments

Apple has added persistent 'ads' to iOS, and it's driving users crazy

https://www.techradar.com/phones/iphone/i-wish-apple-would-just-stop-that-crap-apple-has-added-pe...
338•MC995•2h ago•253 comments

Show HN: Drop – A rootless Linux sandbox with gVisor support

https://droprun.sh/
96•mixedbit•3h ago•31 comments

Show HN: AI·rete·RAG – a Rete rule engine decides, RAG explains why

https://ai-rete-rag.com/
9•ZaharaHussain•1h ago•0 comments

Solitaire Alone Together

https://solitairealonetogether.com/
59•eieio•19h ago•14 comments

Can gzip be a language model?

https://nathan.rs/posts/gzip-lm/
323•networked•11h ago•122 comments

AMD's random number generator can't generate a 0?

https://board.flatassembler.net/topic.php?t=24261
195•BruceEel•8h ago•153 comments

MiMo v2.6

https://mimo.xiaomi.com/mimo-v2-6
1041•volf_•21h ago•461 comments

Claude Opus 5.5 Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/claude-opus-5-5
4•theanonymousone•25m ago•0 comments

Spymarks, not Watermarks

https://brand.io/article/spymarks/
615•possibilistic•18h ago•155 comments

Show HN: InstinctFlash – Run 5B world-action models in real time on Jetson Thor

https://github.com/General-Instinct/InstinctFlash
6•guanming0717•1h ago•0 comments

Meta’s Muse has a serious 0-day

https://arstechnica.com/security/2026/09/muse-metas-extraordinarily-privileged-ai-assistant-has-a...
75•pavel_lishin•2h ago•30 comments

I asked Meta’s Muse for its filesystem and it sent me 6.8GB

https://mouse.dev/blog/muse-runtime-export/
179•Aeroi•1h ago•93 comments

Relativistic raytracing

https://publish.obsidian.md/h1m3/Articles/Relativistic+raytracing
9•vismit2000•1d ago•1 comments

Xbox continues its “reset” with dramatic restructuring

https://arstechnica.com/gaming/2026/09/shuffling-the-deck-chairs-xbox-continues-its-reset-with-dr...
28•dgrin91•1h ago•18 comments

Teleoperated Humans

https://www.jefftk.com/p/teleoperated-humans
29•luu•2d ago•32 comments

The Economics of Open-Weight Inference

https://data.ornn.com/publications/the-economics-of-open-weight-inference
17•marinesebastian•3h ago•7 comments

MUNI Heritage Weekend in San Francisco

https://daniel.lawrence.lu/blog/2026-09-20-muni-heritage-weekend/
101•plun9•1d ago•19 comments

Transformers Explained Visually

https://poloclub.github.io/transformer-explainer/
564•aray07•21h ago•84 comments

Vacate a drone restriction that criminalized recording immigration agents

https://www.eff.org/deeplinks/2026/09/dc-circuit-must-vacate-drone-flight-restriction-criminalize...
46•hn_acker•2h ago•9 comments

What Sun got wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
660•chmaynard•1d ago•380 comments

I said no and Apple said yes

https://dbushell.com/2026/09/22/apple-intelligence/
657•thatslast•9h ago•518 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/
943•mooreds•18h ago•387 comments

MiMo-v2.6-Pro: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/mimo-v2-6-pro
139•theanonymousone•13h ago•60 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.