frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tailwind Labs is joining Shopify

https://tailwindcss.com/blog/tailwind-is-joining-shopify
317•EdwinHoksberg•1h ago•131 comments

Desert Ant Labs: local, fast models that run on device

https://desertant.com/blog/introducing-desert-ant-labs/
187•willwhitedc•3h ago•52 comments

Claude, change the "Add to Cart" button to blue

https://opusfived.dev/
410•matthieu_bl•5h ago•156 comments

Show HN: Geiger – See every AI agent on your machine and what it can touch

https://github.com/Atomburstofficial/geiger
13•atomburst•26m ago•2 comments

I advertise malicious software on Google Ads

https://xlii.space/eng/malicious-software-on-google-ads/
206•xlii•3h ago•109 comments

DeepSeek launching v4.1 flash cheaper and more capable than v4 pro

249•nickweb•4h ago•124 comments

Playing whack-a-mole is losing

https://dadrian.io/blog/posts/whack-a-mole-is-losing/
18•surprisetalk•1h ago•4 comments

Muse – Meta’s personal AI agent

https://ai.meta.com/muse/
588•yks•19h ago•646 comments

Coyote v. Acme (1990)

https://www.newyorker.com/magazine/1990/02/26/coyote-v-acme
97•ChrisArchitect•3d ago•43 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
1887•procedurecall•1d ago•771 comments

Building a Wall Lamp from Scratch

https://mbugert.de/posts/2026-09-09-bedroom-lamp-build/
46•jcklie•5h ago•15 comments

Smolts: A pedagogical IDE for a teaching language

https://eighty-twenty.org/2026/09/04/smolts
25•tonyg•5d ago•2 comments

Roame (YC S23) Is Hiring Viral Content Editor

https://www.ycombinator.com/companies/roame/jobs/KuVVqSh-content-systems-builder-editor
1•zman0225•3h ago

Searching for the best silicone USB cable

https://www.frankchiarulli.com/blog/best-silicone-usb-cable/
44•evakhoury•4d ago•23 comments

YC created Flock 10 years ago

22•YCmadeFlock•1h ago•5 comments

Open-source 3D anatomy explorer: 2,234 selectable BodyParts3D meshes

https://github.com/ashemag/human-atlas
44•metrofun•1d ago•12 comments

Lotus Notes and the dangers of starting from scratch

https://buttondown.com/blog/lotus-notes-email
110•maguay•5h ago•72 comments

Tension wood: A 'muscle' that can both bend and straighten plants

https://phys.org/news/2026-09-trees-muscle-posture-newly-role.html
145•mdp2021•6d ago•36 comments

How to build a printer

https://nishantjosh.dev/blogs/how-to-build-a-fking-printer/
410•cat-whisperer•17h ago•90 comments

How An AI math breakthrough ignited a controversy

https://www.science.org/content/article/how-ai-math-breakthrough-ignited-controversy
183•pseudolus•4h ago•178 comments

How GPT‑5.6 Sol helps run quantum computing experiments

https://openai.com/index/codex-quantum-computing-experiments/
120•theanonymousone•7h ago•96 comments

AlphaGenome Atlas: a high-resolution map of human DNA

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/alphagenome-atlas/
584•utiiiD•1d ago•125 comments

Surplus Agriculture Equipment

https://svdisposition.com/
6•Bluestein•2d ago•1 comments

Researchers Spot Fake Ancient Pottery Using the Earth's Magnetic Field

https://www.smithsonianmag.com/smart-news/researchers-determine-how-to-spot-fake-ancient-pottery-...
73•cisc•3d ago•29 comments

The Ancient Greek Water Clock That Kept the Most Accurate Time for 1,800 Years

https://www.openculture.com/2026/09/the-ancient-greek-water-clock-that-kept-the-most-accurate-tim...
14•Brajeshwar•1h ago•4 comments

Mercury 2.5

https://www.inceptionlabs.ai/blog/introducing-mercury-2-5
240•Topfi•19h ago•48 comments

A Biography of Lee Holloway, the Architect of Cloudflare's Technology (Part 1)

https://note.com/masakazu_urabe/n/n7815f5b64fab?hl=en
86•porridgeraisin•10h ago•19 comments

What will our economic future look like?

https://www.anthropic.com/institute/econ-scenarios
87•oumua_don17•1h ago•111 comments

DaVinci Resolve 21.1

https://www.blackmagicdesign.com/media/release/20260908-03
426•tosh•1d ago•192 comments

Large language models develop novel social biases through adaptive exploration

https://openreview.net/challenge?redirect=%2Fforum%3Fid%3Dpc7fqaOcAH
192•paimapi•17h ago•98 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.