frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hacker wipes Romania's land registry database

https://news.risky.biz/risky-bulletin-hacker-wipes-romanias-entire-land-registry-database/
336•speckx•3h ago•188 comments

China's open-weights AI strategy is winning

https://werd.io/american-ai-is-locked-down-and-proprietary-its-losing/
196•benwerd•2h ago•180 comments

Corners Don't Look Like That: Regarding Screenspace Ambient Occlusion (2012)

https://nothings.org/gamedev/ssao/
96•firephox•1h ago•32 comments

Over 30% of new ArXiv submissions now read as AI-written

https://unslop.run/blog/measuring-ai-writing-on-arxiv
15•dopamine_daddy•30m ago•4 comments

We're Squandering LEDs' Potential to Save Our Night Skies

https://spectrum.ieee.org/led-light-pollution
126•defrost•4h ago•80 comments

Airport Simulator

https://airport.apunen.com/
393•apunen•6h ago•97 comments

Firefox Merges Support for Vulkan Video Decoding

https://github.com/search
102•DemiGuru•3h ago•22 comments

Perfection Is Not Over-Engineering

https://var0.xyz/posts/perfection-is-not-over-engineering.html
84•var0xyz•2h ago•47 comments

The Voice of Google

https://www.newyorker.com/culture/the-weekend-essay/the-voice-of-google
30•littlexsparkee•1h ago•11 comments

Kimi K3, Qwen 3.8, and Anthropic's (Potential) Unravelling

https://www.emergingtrajectories.com/lh/frontier-lab-economics/
109•cl42•1h ago•110 comments

Exploit brokers pay $500k for WordPress RCEs. I found one with GPT5.6 and $25

https://slcyber.io/research-center/exploit-brokers-pay-500000-for-a-wordpress-rce-i-found-one-wit...
325•infosecau•8h ago•169 comments

Launch HN: Bloomy (YC S26) – AI-powered mastery learning for K-12

3•alexsouthmayd•35m ago•16 comments

Czechia moves to ban mobile phones in schools from September 2027

https://www.expats.cz/czech-news/article/czech-news-in-brief-for-july-20-2026-monday-top-afternoo...
10•Markoff•1h ago•4 comments

Shinjuku Station in 3D

https://satoshi7190.github.io/Shinjuku-indoor-threejs-demo/
40•Gecko4072•3h ago•10 comments

The EU is about to sell our most sensitive data to the US for visa-free travel

https://edri.org/our-work/the-eu-is-about-to-sell-our-most-sensitive-data-to-the-us-for-visa-free...
342•rapnie•4h ago•193 comments

I Stopped "Creating Content"

https://refactoringenglish.com/blog/why-i-stopped-creating-content/
10•mtlynch•1h ago•4 comments

NYC Subway Signals: A Complete Guide

https://www.nycsubway.org/wiki/Subway_Signals%3A_A_Complete_Guide
16•at1as•2h ago•6 comments

Satan's 19th-Century Bank Note (2017)

https://www.historytoday.com/miscellanies/satans-19th-century-bank-note
32•Caiero•15h ago•1 comments

Show HN: Wheesper – Start an anonymous discussion with a link

https://wheesper.com/
11•whatdoyouthink2•1h ago•14 comments

Inertia-1: An Open Exploration to a Unified Motion Foundation Model

https://yang-ai-lab.github.io/Inertia-1/
32•hasheddan•3h ago•1 comments

SaaS *is* dead. But not because AI "killed" it, because AI killed it

https://avivcarmi.com/saas-is-dead/
9•avivcarmis1•1h ago•0 comments

Controlling Reasoning Effort in LLMs

https://magazine.sebastianraschka.com/p/controlling-reasoning-effort-in-llms
11•ibobev•2h ago•0 comments

Another Entry in the "Stuff Im Glad Im Not Responsible for" Ledger

https://blog.cloudflare.com/dnssec-nta-ede-33/
4•c_f_•5d ago•1 comments

Ziggity – A terminal UI for Git, written in Zig

https://github.com/simoarpe/ziggity
6•TheSorcerer•1h ago•2 comments

Soofi – Sovereign Open Source Foundation Models

https://www.soofi.info/
23•Fake4d•4h ago•9 comments

Cross sectioning insects in an electron microscope with a femtosecond laser [video]

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

Annoying and alarming things about OpenCode

https://wren.wtf/shower-thoughts/stop-using-opencode/
305•alekq•4h ago•209 comments

Tested Kimi K3 for Coding

https://www.dotnetperls.com/2026_7_18_tested-kimi-k3-coding
23•speckx•3h ago•6 comments

Sensing warm and cool: how the body detects temperature changes

https://news.uq.edu.au/2026-07-sensing-warm-and-cool-how-body-detects-temperature-changes
32•hhs•2d ago•5 comments

ECC and DDR5

https://etbe.coker.com.au/2026/07/19/ecc-ddr5/
76•zdw•1d ago•64 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.