frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Korea raises data breach fines to 10% of revenue

https://www.koreajoongangdaily.com/business/korea-raises-data-breach-fines-to-10-of-revenue/12869899
82•throw7•43m ago•20 comments

Android 17 is the first since 3.x to add new APIs without releasing to the AOSP

https://grapheneos.social/@GrapheneOS/117282080803799576
197•theanonymousone•1h ago•91 comments

Saving another 100TB of RAM with math (and Rust)

https://blog.cloudflare.com/saving-100-tb-of-ram-with-math/
76•f311a•1h ago•9 comments

Cloudflare Quick Tunnels

https://try.cloudflare.com/
426•jcbhmr•6h ago•191 comments

Apple releases iPhone Duo simulator and Xcode 27.1 beta

https://developer.apple.com/documentation/xcode-release-notes/xcode-27_1-release-notes
65•CameronBanga•2h ago•28 comments

Cache-to-Cache: Direct Semantic Communication Between Large Language Models

https://arxiv.org/abs/2510.03215
34•rochansinha•1h ago•5 comments

Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug

https://donjon.ledger.com/blog/rp2350-secure-debug-laser-fault-injection/
116•synack•3h ago•35 comments

Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash

https://cactuscompute.com/needle
117•HenryNdubuaku•20h ago•59 comments

OpenJev

https://openjev.com/
485•ilreb•11h ago•232 comments

The Implications of Linguistic Illegibility for LLM Security

https://arxiv.org/abs/2609.02852
23•tomjakubowski•1h ago•10 comments

C++26: Trivial infinite loops are no longer undefined behaviour

https://www.sandordargo.com/blog/2026/09/16/cpp26-trivial-infinite-loops
113•ibobev•23h ago•141 comments

Our brain evolved from two primitive nervous systems that merged: Study

https://www.newscientist.com/article/2589739-our-brain-evolved-from-two-primitive-nervous-systems...
63•Jimmc414•5h ago•37 comments

The first new cat species discovered in 100 years

https://www.nationalgeographic.com/animals/article/meet-the-first-new-cat-species-discovered-in-1...
60•ohjeez•1d ago•17 comments

Border agents can search cellphones without a warrant or reasonable suspicion

https://lawandcrime.com/high-profile/the-government-was-entitled-trumps-border-agents-can-now-sea...
111•mmh0000•2h ago•68 comments

I vibed a proof of Conway's conjecture

https://overreacted.io/how-i-vibed-a-proof-of-conways-conjecture/
170•m-hodges•6h ago•162 comments

North Korean nuclear test sets off years of earthquakes

https://www.science.org/content/article/north-korean-nuclear-test-sets-years-earthquakes
152•rbanffy•6h ago•134 comments

How SpaceX streamlined the Raptor engine

https://www.construction-physics.com/p/how-spacex-streamlined-the-raptor
96•JumpCrisscross•23h ago•13 comments

Inside ZCode: Silently uploading your Git history to the cloud

https://blog.ferstar.org/en/posts/zcode-silent-workspace-snapshot-upload/
217•csmantle•14h ago•84 comments

Minimal Phone 2

https://minimalcompany.com/
107•nashashmi•18h ago•104 comments

Show HN: Ax-check.com – Can agents use your product?

https://www.ax-check.com/
23•0x63_Problems•1d ago•22 comments

Warez: The Infrastructure and Aesthetics of Piracy (2021)

https://archive.org/details/b904a8eb-9c98-4bb1-bf25-3cb9d075b157
51•succinct_ideas•17h ago•7 comments

A search-and-inference database from scratch in pure Zig

https://antfly.io/research/antfly-zig
28•kingcauchy•3d ago•6 comments

US Military had close call after using AI for hallucinated intelligence report

https://www.cnn.com/2026/09/18/politics/us-military-ai-false-intelligence-china-ship
277•realsarm•3h ago•223 comments

Cekura (YC F24) Is Hiring

https://www.ycombinator.com/companies/cekura-ai/jobs/AiWwUxI-forward-deployed-engineer-us
1•atarus•8h ago

How to Write with an LLM

https://sockpuppet.org/blog/2026/09/17/how-to-write-with-an-llm/
306•joeriddles•22h ago•211 comments

Show HN: Scry, programmable internet search w/ congestion pricing

https://scry.io/
32•Xyra•21h ago•15 comments

"From Geometry to Algebra and Back Again: 4000 Years of Papers" by Jack Rusher [video]

https://www.youtube.com/watch?v=1cRFfYQYGxE
4•surprisetalk•1d ago•0 comments

Mathematicians Build Long-Awaited Graph Sandwich

https://www.quantamagazine.org/mathematicians-build-long-awaited-graph-sandwich-20260918/
52•ibobev•6h ago•16 comments

Jemalloc 5.4.0

https://github.com/jemalloc/jemalloc/releases/tag/5.4.0
316•gkfasdfasdf•16h ago•84 comments

The scourge of x86 emulation

https://fex-emu.com/Scourge-of-emulation/
261•dagmx•16h ago•73 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.