frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Localsend: An open-source cross-platform alternative to AirDrop

https://github.com/localsend/localsend
255•bilsbie•2h ago•106 comments

Microsoft VibeVoice: Open-Source Frontier Voice AI

https://github.com/microsoft/VibeVoice
116•tosh•2h ago•67 comments

Show HN: Live Sun and Moon Dashboard with NASA Footage

https://www.lumara-space.app/
24•beeswaxpat•1h ago•2 comments

OpenAI CEO's Identity Verification Company Announced Fake Bruno Mars Partnership

https://www.vice.com/en/article/openai-ceo-identity-verification-company-fake-bruno-mars-partners...
67•BoggleOhYeah•1h ago•27 comments

Talkie: a 13B vintage language model from 1930

https://talkie-lm.com/introducing-talkie
492•jekude•16h ago•196 comments

The World's Most Complex Machine

https://worksinprogress.co/issue/the-worlds-most-complex-machine/
196•mellosouls•3d ago•105 comments

Microsoft and OpenAI end their exclusive and revenue-sharing deal

https://www.bloomberg.com/news/articles/2026-04-27/microsoft-to-stop-sharing-revenue-with-main-ai...
936•helsinkiandrew•1d ago•799 comments

Deep under Antarctic ice, a long-predicted cosmic whisper breaks through

https://phys.org/news/2026-04-deep-antarctic-ice-cosmic-strange.html
11•rbanffy•1d ago•2 comments

The predictable failure of the QDay Prize

https://algassert.com/post/2601
28•firefly284•1d ago•2 comments

UAE Leaves OPEC and OPEC+

https://www.reuters.com/markets/commodities/uae-says-it-quits-opec-opec-statement-2026-04-28/
86•TechTechTech•1h ago•12 comments

I Spent My Sabbatical Building a Power Meter for Sledgehammers

https://leblancfg.com/intensity-pad-founder-story.html
22•alin23•1d ago•17 comments

Is my blue your blue? (2024)

https://ismy.blue/
642•theogravity•18h ago•417 comments

Period tracking app has been yapping about your flow to Meta

https://femtechdesigndesk.substack.com/p/your-period-tracking-app-has-been
119•campuscodi•3h ago•97 comments

WASM is not quite a stack machine

https://purplesyringa.moe/blog/wasm-is-not-quite-a-stack-machine/
101•signa11•9h ago•36 comments

GTFOBins

https://gtfobins.org/
300•StefanBatory•8h ago•75 comments

GitHub Copilot code review will start consuming GitHub Actions minutes

https://github.blog/changelog/2026-04-27-github-copilot-code-review-will-start-consuming-github-a...
58•whtsky•5h ago•62 comments

Can You Find the Comet?

https://apod.nasa.gov/apod/ap260427.html
95•ColinWright•1d ago•53 comments

In Kannauj, perfumers have been making monsoon-infused mitti attar for centuries

https://www.atlasobscura.com/articles/smell-of-rain-kannauj-perfume-mitti-attar-india
33•bcaulfield•1d ago•6 comments

Pgrx: Build Postgres Extensions with Rust

https://github.com/pgcentralfoundation/pgrx
140•luu•3d ago•14 comments

Tiled Words 6 Month Update

https://paulmakeswebsites.com/writing/six-months-of-tiled-words/
43•paulhebert•1d ago•12 comments

Mo RAM, Mo Problems (2025)

https://fabiensanglard.net/curse/
174•blfr•2d ago•31 comments

4TB of voice samples just stolen from 40k AI contractors at Mercor

https://app.oravys.com/blog/mercor-breach-2026
574•Oravys•1d ago•216 comments

UAE to leave OPEC in blow to oil cartel

https://www.ft.com/content/8c354f2d-3e66-47f1-aad4-9b4aa30e386d
117•bazzmt•1h ago•109 comments

Men who stare at walls

https://www.alexselimov.com/posts/men_who_stare_at_walls/
659•aselimov3•1d ago•303 comments

Meetings are forcing functions

https://www.mooreds.com/wordpress/archives/3734
154•zdw•2d ago•96 comments

An Update on GitHub Availability

https://github.blog/news-insights/company-news/an-update-on-github-availability/
191•salkahfi•4h ago•164 comments

High Performance Git

https://gitperf.com/
192•gnabgib•14h ago•65 comments

Easyduino: Open Source PCB Devboards for KiCad

https://github.com/Hanqaqa/Easyduino
232•Hanqaqa•20h ago•40 comments

Three men are facing charges in Toronto SMS Blaster arrests

https://www.tps.ca/media-centre/stories/unprecedented-sms-blaster-arrests/
187•gnabgib•17h ago•102 comments

Networking changes coming in macOS 27

https://eclecticlight.co/2026/04/23/networking-changes-coming-in-macos-27/
244•pvtmert•22h ago•217 comments
Open in hackernews

QueryLeaf: SQL for Mongo

https://github.com/beekeeper-studio/queryleaf
23•tilt•11mo ago

Comments

ttfkam•11mo 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•11mo ago
https://www.ferretdb.com/
VWWHFSfQ•11mo 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•11mo ago
this makes so much sense.

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

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