frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

US vs. Google amicus curiae brief of Y Combinator in support of plaintiffs [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.dcd.223205/gov.uscourts.dcd.223205.1300.1.pdf
227•dave1629•5h ago•308 comments

A Critical Look at MCP

https://raz.sh/blog/2025-05-02_a_critical_look_at_mcp
149•ablekh•4h ago•68 comments

Reverse engineering the 386 processor's prefetch queue circuitry

http://www.righto.com/2025/05/386-prefetch-circuitry-reverse-engineered.html
51•todsacerdoti•2h ago•20 comments

Prolog's Eternal September (2017)

https://storytotell.org/prologs-eternal-september
46•Tomte•2d ago•29 comments

The deathbed fallacy

https://www.hjorthjort.xyz/2018/02/21/the-deathbed-fallacy.html
192•mefengl•9h ago•87 comments

Comparison of C/POSIX standard library implementations for Linux

https://www.etalabs.net/compare_libcs.html
41•smartmic•4h ago•14 comments

Sam Altman Wants Your Eyeball

https://www.privacyguides.org/articles/2025/05/10/sam-altman-wants-your-eyeball/
117•ChiptuneIsCool•3h ago•104 comments

Update turns Google Gemini into a prude, breaking apps for trauma survivors

https://www.theregister.com/2025/05/08/google_gemini_update_prevents_disabling/
38•Bender•1h ago•16 comments

Show HN: Code Claude Code

https://github.com/RVCA212/codesys
51•sean_•4h ago•11 comments

The Price of Remission

https://www.propublica.org/article/revlimid-price-cancer-celgene-drugs-fda-multiple-myeloma
14•danso•2d ago•1 comments

Weave (YC W25) is hiring a founding engineer

https://www.ycombinator.com/companies/weave-3/jobs
1•adchurch•2h ago

Building Local-First Flutter Apps with Riverpod, Drift, and PowerSync

https://dinkomarinac.dev/building-local-first-flutter-apps-with-riverpod-drift-and-powersync
10•kobieps•3d ago•5 comments

Even Tesla's Insurance Arm Is Getting Wrecked

https://insideevs.com/news/759156/tesla-insurance-loss-higher-average/
26•ryan_j_naughton•1h ago•9 comments

Vision Now Available in Llama.cpp

https://github.com/ggml-org/llama.cpp/blob/master/docs/multimodal.md
443•redman25•15h ago•95 comments

Embracer Games Archive is preserving 75000 video games and needs contributions

https://embracergamesarchive.com/
93•draugadrotten•8h ago•47 comments

React Three Ecosystem

https://www.react-three.org/
77•bpierre•6h ago•25 comments

LTXVideo 13B AI video generation

https://ltxv.video/
181•zoudong376•7h ago•55 comments

Private Japanese lunar lander enters orbit around moon ahead of a June touchdown

https://phys.org/news/2025-05-private-japanese-lunar-lander-orbit.html
162•pseudolus•3d ago•52 comments

Intel: Winning and Losing

https://www.abortretry.fail/p/intel-winning-and-losing
61•rbanffy•8h ago•28 comments

A simple 16x16 dot animation from simple math rules

https://tixy.land
259•andrewrn•16h ago•57 comments

Gmail to SQLite

https://github.com/marcboeker/gmail-to-sqlite
254•tehlike•14h ago•71 comments

Show HN: Sprigman – Pac-Man Recreated in a Limited Tile Based JavaScript Engine

https://sprig.hackclub.com/share/X4EGvOFk1q8FroEPCj1G
9•kuberwastaken•2d ago•3 comments

Radxa Orion O6 brings Arm to the midrange PC (with caveats)

https://www.jeffgeerling.com/blog/2025/radxa-orion-o6-brings-arm-midrange-pc
70•goranmoomin•7h ago•54 comments

Farewell to Lee Gold's Alarums and Excursions

https://www.chaosium.com/blogout-of-the-suitcase-54-farewell-to-lee-golds-alarums-excursions/
10•jdkee•4h ago•1 comments

Lead Bullets (2011)

https://a16z.com/lead-bullets/
6•msukkarieh•3h ago•0 comments

Loss of dance and infant-directed song among the Northern Aché

https://www.cell.com/current-biology/fulltext/S0960-9822(25)00447-6
56•PaulHoule•3d ago•9 comments

Unique Games Conjecture

https://en.wikipedia.org/wiki/Unique_games_conjecture
8•surprisetalk•2h ago•1 comments

Detect and crash Chromium bots

https://blog.castle.io/detect-and-crash-chromium-bots-with-one-weird-trick-bots-hate-it/
94•avastel•3d ago•33 comments

'We Currently Have No Container Ships,' Seattle Port Says

https://www.newsweek.com/seattle-port-says-no-container-ships-tariffs-2069464
132•pseudolus•3h ago•51 comments

In praise of grobi for auto-configuring X11 monitors

https://michael.stapelberg.ch/posts/2025-05-10-grobi-x11-monitor-autoconfig/
62•secure•12h ago•14 comments
Open in hackernews

QueryLeaf: SQL for Mongo

https://github.com/beekeeper-studio/queryleaf
19•tilt•2d ago

Comments

ttfkam•2d 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•5h ago
https://www.ferretdb.com/
VWWHFSfQ•4h 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•4h ago
this makes so much sense.

I also wonder if there are some specific capabilities of MongoDB that this pattern does not support?

etse•3h 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.

zareith•4h ago
Curious if there is something similar that works with sqlite.
maxbond•4h ago
As of 3.38 (or 3.45 if you meant a binary JSON structure specifically) https://sqlite.org/json1.html
zareith•1h 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•2h ago
There is FerretDB v1, which provides MongoDB protocol for SQLite. See https://github.com/FerretDB/FerretDB/tree/main-v1
zareith•1h 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•2h ago
FerretDB v2 is built on top of this extension. See https://github.com/FerretDB/FerretDB
gavinray•4h 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•4m ago
That driver is read-only
gitroom•2h 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_•2h 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.