frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

TALA Is Open-Source

https://d2lang.com/blog/tala-is-open-source/
47•alixanderwang•1h ago•4 comments

Show HN: Stuxnet – A reconstructed source code of the infamous cyber-weapon

https://github.com/Sadpainy/Stuxnet
54•CMDDestory•2h ago•13 comments

Watch Los Angeles get built, one building at a time (1880–2026)

https://lax-skyline.parcelscope.net/
207•rustywasm•6h ago•97 comments

Leaving VMware just got harder after Broadcom pulled VDDK downloads

https://www.virtualizationhowto.com/2026/09/leaving-vmware-just-got-harder-after-broadcom-pulled-...
79•josephcsible•4h ago•36 comments

Trusting-Trust Attack against an Entire Linux Distribution

https://arxiv.org/abs/2607.24888
136•signa11•2d ago•35 comments

WeatherNext 3

https://deepmind.google/science/weathernext/
218•matthieu_bl•4d ago•44 comments

Working on Economics with Fable 5

https://wilsoniumite.com/2026/08/03/working-on-economics-with-fable-5/
51•Wilsoniumite•3h ago•34 comments

Scientists observe Einstein's gravity in the quantum world

https://www.ox.ac.uk/news/2026-08-28-scientists-observe-einsteins-gravity-in-the-quantum-world
131•mudil•3d ago•28 comments

Finding a bug in Dummit and Foote's Abstract Algebra

https://kallus.org/blog/dummit_and_foote.html
62•evakhoury•3d ago•32 comments

Show HN: I built an aesthetically pleasing puzzle

https://jigsawhaiku.com/
38•windowshopping•3d ago•9 comments

John Margolies' Photographs of Roadside America

https://publicdomainreview.org/collection/john-margolies-photographs-of-roadside-america/
6•duck•3d ago•0 comments

216M Spy TVs – The LG Smart TV Problem [video]

https://www.youtube.com/watch?v=6IFVTcM28KA
480•treve•1d ago•709 comments

Show HN: Interactive Tree of Life

https://ptree.org/
53•Lucent•4d ago•16 comments

This Month in Ladybird – August 2026

https://ladybird.org/newsletter/2026-08-31/
154•exploraz•3d ago•37 comments

Caltech Mathathon – first hackathon ever devoted to research level mathematics

https://mathathonchallenge.com/index.html
221•astroanax•15h ago•81 comments

Icy Moons Are Ocean Worlds

https://mceglowski.substack.com/p/icy-moons-are-ocean-worlds
126•worldvoyageur•1d ago•11 comments

Decoding the NEC V20 Microcode

https://martypc.blogspot.com/2026/09/decoding-nec-v20-microcode.html
114•mariuz•3d ago•8 comments

Secure temporary file sharing for AI agents and humans

https://github.com/aispace-sh/aispace-client
7•tengio•1h ago•1 comments

Simple Is Not Small

https://jyn.dev/simple-is-not-the-same-as-small/
195•zdw•4d ago•62 comments

Macbeth and His Problems

https://porticoquarterly.com/essay/macbeth-and-his-problems/
32•apophatic•4h ago•12 comments

Methods for Random Gradients (2024)

https://justinjay.wang/methods-for-random-gradients/
45•nickswalker•4d ago•4 comments

Keep Our Servers Running

https://blog.archive.org/2026/09/01/keep-our-servers-running-your-recurring-donation-goes-3x-this...
947•sonicrocketman•21h ago•245 comments

bzip3

https://github.com/iczelia/bzip3
374•tosh•11h ago•106 comments

The Dataflow Model Revisited

https://www.vldb.org/pvldb/volumes/19/paper/The%20Dataflow%20Model%20Revisited
82•scott_s•1d ago•14 comments

Live map of public transport in Belgium

https://openbaarvervoerbelgie.be/
185•coinfused•16h ago•77 comments

Whistle Synth Mac App

https://www.jefftk.com/p/whistle-synth-mac-app
61•luu•3d ago•14 comments

She Also Found It at the Movies

https://hedgehogreview.com/web-features/thr/posts/she-also-found-it-at-the-movies
21•prismatic•3d ago•5 comments

Replaceable but Employed: Automation and the Meaning of Work

https://www.nber.org/papers/w35559
53•mooreds•5h ago•46 comments

Catching Crumbs from the Table (2000)

https://www.nature.com/articles/35014679
12•stefanpie•1d ago•4 comments

Speculative Decoding in vLLM on AMD GPUs

https://vllm.ai/blog/2026-08-23-speculative-decoding-amd-gpus
127•ankitg12•15h ago•46 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.