frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini 3.8 Flash and 3.8 Flash Cyber

https://blog.google/innovation-and-ai/models-and-research/gemini-models/3-8-flash-and-3-8-flash-c...
434•bratao•2h ago•253 comments

A Note from LWN

https://lwn.net/Articles/1090585/
539•rwky•4h ago•115 comments

Mushroom hunting with LLMs: what can go wrong?

https://quesma.com/blog/mushroom-llm-vision/
23•stared•40m ago•11 comments

Mistral now trains on user input by default, except on enterprise tier

https://help.mistral.ai/en/articles/455207-can-i-opt-out-of-my-input-or-output-data-being-used-fo...
245•teekert•5h ago•107 comments

Biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
151•randycupertino•3h ago•28 comments

GrapheneOS says Pixel 11 has MTE support after all

https://grapheneos.social/@GrapheneOS/117194007157499435
123•user_7832•3h ago•77 comments

Exit the Cave

https://turtlespace.blog/p/exit-the-cave
98•akkartik•3h ago•17 comments

A third of Perplexity's citations don't contain the number they're cited for

https://hausresearch.com/reports/perplexity-citation-audit/
78•jakobgreenfeld•3h ago•29 comments

Three sites made 215,128 “best software” pages for AI. Perplexity cites them

https://trellner.com/reports/manufactured-sources-behind-ai-recommendations/
182•jakobgreenfeld•3h ago•94 comments

A Selection of Los Alamos Rolodex Business Cards

https://clui.org/collections/los-alamos-business-cards/selection-cards
77•1970-01-01•1d ago•16 comments

Commodore 64 released September 1, 1982

https://dfarq.homeip.net/commodore-64-released-september-1-1982/
262•giuliomagnifico•9h ago•129 comments

Poisson Disk Sampling

https://stripeacross.com/posts/poisson-disk-sampling/
77•vismit2000•3h ago•10 comments

WebLLM: high-performance in-browser LLM inference engine

https://github.com/mlc-ai/web-llm
45•saikatsg•3h ago•8 comments

Aging Brains Blend Memories Together Instead of Just Forgetting Them

https://studyfinds.com/aging-brains-blend-memories-together-instead-of-forgetting-them-study-finds/
98•mdp2021•4h ago•43 comments

AI Policy

https://dbushell.com/ai/
24•duck•2h ago•24 comments

Show HN: FrontierHarness Eval – 9 harness, same model, cost per pass varies 17x

https://frontierharness.org
35•shiqimei•1h ago•7 comments

ChatGPT ad targeting is garbage

https://successfulsoftware.net/2026/09/02/chatgpt-ad-targeting-is-garbage/
10•hermitcrab•33m ago•3 comments

Paint.net 5.2 alpha now runs on Linux

https://forums.paint.net/topic/134562-paintnet-52-alpha-build-9739/
11•judah•20m ago•0 comments

Six curl CVEs after OpenAI and Anthropic came back with zero

https://aisle.com/blog/aisle-discovered-six-curl-cves-after-openai-and-anthropic-found-zero
115•goobreee•3h ago•37 comments

Discontinuation of third level domain registrations for the .name TLD [pdf]

https://itp.cdn.icann.org/en/files/consensus-policies/rsep-2026013-name-request-15-04-2026-en.pdf
15•greyface-•1d ago•7 comments

How to debloat your Xiaomi 15 Ultra without root access

https://trackerninja.codeberg.page/post/how-to-debloat-your-xiaomi-15-ultra-without-rooting-and-c...
10•spacedrone808•1h ago•3 comments

SteamdDB Joins Nexus Mods

https://www.nexusmods.com/news/15597
24•HelloUsername•2h ago•4 comments

Tangle – Visual ML Pipeline Editor

https://tangleml.com/
5•duck•49m ago•1 comments

Telli (YC F24) is hiring engineers and designers [Berlin, on-site]

https://careers.telli.com/
1•sebselassie•8h ago

Saving money on Google Photos with Immich: Your own personal photo storage

https://www.markpitblado.me/blog/saving-on-google-photos-with-immich-your-own-personal-photo-stor...
67•speckx•1h ago•65 comments

How Railroad Crossings Work

https://practical.engineering/blog/2023/12/29/how-railroad-crossings-work
7•at1as•46m ago•0 comments

Check if a file was made with Claude

https://claude.com/check-content
97•frexs•5h ago•67 comments

LLMs: Intelligence vs. Cost

https://openteams.com/intelligence-vs-cost/
52•theanonymousone•4h ago•23 comments

The Emergent Symbolic Structure of Artificial Neural Networks

https://arxiv.org/abs/2608.29530
252•schmuhblaster•13h ago•88 comments

Black Hole Museum: A New Idea for the Los Alamos Community (2025)

https://losalamosreporter.com/2025/06/29/black-hole-museum-a-new-idea-for-the-los-alamos-community/
3•Bluestein•35m ago•1 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.