frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We're making Bunny DNS free: because a faster internet won't build itself

https://bunny.net/blog/were-making-bunny-dns-free/
309•dabinat•3h ago•100 comments

Krea 2 Technical Report

https://www.krea.ai/blog/krea-2-technical-report
18•mattnewton•20h ago•2 comments

Statistics that live in your SQL

https://kolistat.com/blog/the-stats-duck-v0-6-0/
48•caerbannogwhite•1d ago•4 comments

Vulnerability reports are not special anymore

https://words.filippo.io/vuln-reports/
318•goranmoomin•12h ago•174 comments

A deadly fungus that can infect cats and people is spreading

https://www.sciencenews.org/article/deadly-fungus-cats-people-spreading
41•sohkamyung•58m ago•24 comments

Jerry's Map

http://www.jerrysmap.com/the-map
511•turtleyacht•17h ago•55 comments

Raspberry Pi Pico W as USB Wi-Fi Adapter

https://gitlab.com/baiyibai/pico-usb-wifi
167•byb•9h ago•75 comments

In memory of the man who put red and green squiggles under words

https://devblogs.microsoft.com/oldnewthing/20260622-00/?p=112451
459•saikatsg•18h ago•76 comments

Minimus container images are now free

https://images.minimus.io/
9•dimastopel•37m ago•1 comments

FUTO Swipe – A new swipe typing model

https://swipe.futo.tech/
584•futohq•18h ago•211 comments

Why eval startups fail (2025)

https://thomasliao.com/eval-startups
39•jxmorris12•1d ago•34 comments

Too many R packages: CRAN is inundated with submissions

https://rworks.dev/posts/too-many-R-packages/
10•ionychal•1h ago•2 comments

Qwen-AgentWorld: Language World Models for General Agents

https://arxiv.org/abs/2606.24597
138•ilreb•10h ago•42 comments

"Fix" MacBook Neo Cursor Lag: Record 1 Pixel of the Screen Every 10 Seconds

https://gist.github.com/retroplasma/ec21767d0a8380c7ea9c2fbee1c7d6bf
130•retroplasma•9h ago•53 comments

Ashby (YC W19) Is Hiring EMEA Engineers Who Can Design

https://www.ashbyhq.com/careers?ashby_jid=87b96eef-edc1-4de4-adb6-d460126d02f8&utm_source=hn
1•abhikp•5h ago

Haystack: Open-Source AI Framework for Production Ready Agents, RAG

https://haystack.deepset.ai/
3•doener•1h ago•1 comments

François Englert (1932 – 2026)

https://home.cern/francois-englert-1932-2026/
13•toomuchtodo•3d ago•2 comments

Printing Gaussian Splats

https://www.patreon.com/DanyBittel/posts/printing-splats-161333338
333•ilnmtlbnm•2d ago•38 comments

Vector Graphics in Lil

http://beyondloom.com/blog/vectorgraphics.html
25•RodgerTheGreat•1d ago•1 comments

Rhombus Language 1.0

https://blog.racket-lang.org/2026/06/rhombus-v1.0.html
190•Decabytes•1d ago•60 comments

Remaking BBC test cards to teach you video processing

https://www.youtube.com/watch?v=U_6HxPkrgcg
52•unleaded•2d ago•2 comments

Swift Package Index joins Apple

https://swiftpackageindex.com/blog/swift-package-index-joins-apple
216•JDevlieghere•18h ago•72 comments

Europeans should learn to love the air-conditioner

https://www.economist.com/europe/2026/06/18/europeans-should-learn-to-love-the-air-conditioner
10•Kaibeezy•22m ago•6 comments

The worthlessness of Vitamin D is mildly exaggerated

https://dynomight.net/vitamin-d/
326•surprisetalk•19h ago•234 comments

Usbliter8: an A12/A13 SecureROM Exploit

https://ps.tc/pages/blog-usbliter8.html
157•givinguflac•5d ago•32 comments

Show HN: TikZ Editor – WYSIWYG editor for figures in LaTeX

https://tikz.dev/editor/
410•DominikPeters•22h ago•73 comments

Millimeter wave technology drills 100 meters into granite

https://www.thinkgeoenergy.com/quaise-energy-achieves-100-meters-of-drilling-using-millimeter-wav...
180•Jimmc414•3d ago•72 comments

Dirty Little Zine – a tool for making an 8 page printable Zine

https://dirtylittlezine.com/
135•cianmm•3d ago•23 comments

A man was gifted his dream car by Kevin Mitnick, who he helped put in prison

https://www.thedrive.com/news/this-man-was-gifted-his-dream-car-by-the-notorious-hacker-he-put-in...
195•mauvehaus•1d ago•133 comments

Uptime Monitor Shows green but visitors are getting errors

https://medium.com/@thesuperrepemail/your-uptime-monitor-shows-green-but-visitors-are-getting-err...
4•mssblogs•28m 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.