frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

France to ban unsolicited telemarketing calls

https://www.lemonde.fr/en/france/article/2026/08/06/france-to-ban-unsolicited-telemarketing-calls...
307•aziaziazi•3h ago•185 comments

H3-metal – Native MiniMax-H3 inference for Apple Silicon

https://github.com/antirez/h3.c
302•swyx•10h ago•66 comments

As AI eats the web, the internet’s collective memory is disappearing

https://thewalrus.ca/google-search-is-dying/
363•awnird•13h ago•414 comments

To Save C, We Must Save ABI

https://thephd.dev/to-save-c-we-must-save-abi-fixing-c-function-abi
72•gurjeet•3d ago•43 comments

Chicken Scheme 6.0

https://code.call-cc.org/releases/6.0.0/NEWS
203•eatonphil•11h ago•26 comments

LFM2.5 2.6B model competitive with 4x larger models

https://huggingface.co/LiquidAI/LFM2.5-2.6B
89•nateb2022•6d ago•19 comments

Show HN: Needle2: 14MB agentic LLM for phones, wearables, smart home and robots

https://cactuscompute.com/needle
365•HenryNdubuaku•18h ago•136 comments

Show HN: Scroll through all 43252003274489856000 Rubik's Cube states

https://everycube.alen.is/
213•Alen123•12h ago•70 comments

Mark Zuckerberg attacks 'closed' AI rivals as Meta returns to open models

https://www.ft.com/content/4e3957f8-ea7c-4c46-a3de-cdce8e526878
529•root-parent•21h ago•484 comments

Show HN: Mcptoon – Token-efficient MCP CLI client

https://github.com/activeing123/mcptoon
52•mcptokensaver•6h ago•38 comments

The “mechanical miracle” that ruined Mark Twain’s life

https://resobscura.substack.com/p/the-mechanical-miracle-that-ruined
148•benbreen•5d ago•77 comments

Programming the Gigatron

https://www.iwriteiam.nl/PGigatron.html
11•shakna•4d ago•1 comments

Closing Canario Terminal source code

https://rapha.land/closing-canario-terminal-source-code/
11•atan2•3h ago•7 comments

About Rx Kids

https://rxkids.org/about/
31•mooreds•4d ago•32 comments

Recycle – Floppydisks

https://www.floppydisk.com/recycle
69•calvinmorrison•9h ago•31 comments

Stowaway – Take the window seat on any plane or satellite overhead

https://stowaway.live/
287•thunderbong•3d ago•36 comments

Faster floating point math with Rust's new API

https://pythonspeed.com/articles/faster-float-math-rust/
48•subset•4d ago•4 comments

Sonic Pi v5

https://www.patreon.com/samaaron/posts/sonic-pi-v5-166001392
386•samaaron•4d ago•91 comments

How Claude marks AI-generated content

https://support.claude.com/en/articles/16266773-how-claude-marks-ai-generated-content
204•mfiguiere•14h ago•163 comments

The UK's war on anonymity has come to America

https://www.effort.news/uk-lobby
528•slowin•11h ago•493 comments

Rust SIMD on the GPU

https://www.vectorware.com/blog/simd-on-gpu/
192•sagacity•17h ago•94 comments

Muse Glimmer: 30B-parameter model optimized for always-on local agent workflows

https://research.meta.ai/blog/introducing-muse-glimmer-open-agentic-model
1123•riordan•1d ago•609 comments

What's the best programming language for coding agents?

http://danluu.com/pl-tokens/
195•chaychoong•19h ago•131 comments

Squeak 6.1

https://squeak.org/release_notes/6.1/
270•fniephaus•23h ago•132 comments

Tail-call optimization in C is relatively recent (2025)

https://lwn.net/Articles/1034703/
152•prakashqwerty•1d ago•136 comments

Confessions of a Long-Distance Sailor

https://arachnoid.com/lutusp/sailbook.html
126•AntiRush•14h ago•37 comments

Learning more about Claude's mathematical capabilities

https://www.anthropic.com/research/riemann-zeta
216•tosh•18h ago•143 comments

Panic of 1873

https://en.wikipedia.org/wiki/Panic_of_1873
12•GranularRecipe•1h ago•3 comments

Publishing Schematics Before “Open Source” Was a Word

https://fabscene.medium.com/publishing-schematics-before-open-source-was-a-word-55-years-of-akizu...
95•extralongdivisi•3d ago•19 comments

Show HN: Ante, a coding agent in a single binary that runs offline

https://github.com/AntigmaLabs/ante
135•ubermon•19h ago•80 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.