frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ollaya – Ollama for open-source, Jev-style decision models

https://ollaya.dev/
297•Ardakilic•5h ago•88 comments

Revealing the details of how OpenAI agents hacked Hugging Face

https://swarmtraces.org/
107•specked-citrus•2h ago•70 comments

Show HN: Jev Plays Pokémon Red

https://jev-pokemon.vercel.app/
121•pancomplex•9h ago•60 comments

Platform-independent SIMD in Go

https://go.dev/blog/simd-experiment
344•yurivish•12h ago•132 comments

What even is an OS now?

https://sockpuppet.org/blog/2026/09/25/what-even-is-an-os-now/
52•fratellobigio•2h ago•55 comments

Git-bug: Distributed, offline-first bug tracker embedded in Git

https://github.com/git-bug/git-bug
293•alentred•12h ago•94 comments

Gravity seems holographic. What does that mean for reality?

https://www.quantamagazine.org/gravity-seems-holographic-what-does-that-mean-for-reality-20260925/
103•ibobev•8h ago•102 comments

An airport cooled by natural ventilation

https://www.theguardian.com/environment/2026/sep/25/didnt-need-air-conditioning-airport-cooled-na...
21•Geekette•13h ago•11 comments

Excel now supports multiple values in a single cell

https://techcommunity.microsoft.com/blog/microsoft365insiderblog/put-multiple-values-in-one-cell-...
59•luispa•3h ago•50 comments

U.S. appeals court upholds designation of Anthropic as supply chain risk

https://www.cnbc.com/2026/09/25/pentagon-anthropic-ai-risk-appeals-court.html
356•cramer4next•8h ago•661 comments

First Principles Thinking

https://sunilsadasivan.com/writing/first-principles-thinking/
201•sunils34•10h ago•95 comments

How we learned to stop worrying and love campus surveillance

https://fnl.mit.edu/how-we-learned-to-stop-worrying-and-love-campus-surveillance/
69•cdrnsf•3h ago•51 comments

Show HN: Make math automatic with Mathy

https://gmays.com/making-math-automatic-with-mathy/
65•gmays•4d ago•16 comments

Initial DIY Cleanroom Experimentation

https://www.jefftk.com/p/initial-diy-cleanroom-experimentation
12•luu•1d ago•4 comments

Remembering Johannes Doerfert

https://blog.llvm.org/posts/2026-09-24-rememberingjohannesdoerfert/
32•sdko•1d ago•1 comments

Teaching a World Model to Play Pokemon

https://nostalgia.dev/posts/teaching-a-world-model-to-play-pokemon/
4•stmonty•2h ago•5 comments

Pentium II at 600Mhz with Voodoo 3 Emulated on 86Box with M6 Mac Mini

https://nyaa.sh/reviews/mac-mini-m6-emulation
264•hugh4life•16h ago•114 comments

Ink and Switch interactive homepage

https://www.inkandswitch.com/
223•iFreilicht•14h ago•25 comments

How video games inspire great UX (2019)

https://jenson.org/games/
88•andsoitis•5d ago•16 comments

Loopjacking in A2A Implementations: Hijacking Human-in-the-Loop Approvals

https://adithyanak.com/loopjacking-in-a2a-implementations/
4•akoffsec•2d ago•0 comments

Issues with Codex – Identified – Full Outage

https://status.openai.com/incidents/01M3DCNWMW57HYK8FJ5FBFPA39
25•xyzzy9563•52m ago•13 comments

Alan Kay: Shannon gave us a way of dealing with noisy channels [video]

https://www.youtube.com/watch?v=Cjntrqhn8pk
110•behoove•5h ago•22 comments

Ask HN: Who's still keeping a DOS machine up because the business depends on it?

60•mlaux•4h ago•46 comments

I wrote a ray tracer in Brainfuck

https://epestr.com/blog/writing-a-ray-tracer-in-brainfuck/
18•epestr•13h ago•6 comments

What happens when you analyze your favorite college football team like the CIA?

https://www.cultivatelabs.com/posts/what-happens-when-you-analyze-college-football-like-the-cia
28•adam•10h ago•17 comments

Bwbach, My Guardian Goblin

https://robertmay.photography/journal/bwbach-my-guardian-goblin
21•robotmay•3d ago•14 comments

Amiga Screens: A Primer

https://www.datagubbe.se/amscr/
126•msephton•16h ago•36 comments

Meta's Muse appears to use an OpenAI model labeled muse-special

https://mouse.dev/blog/muse-special/
99•Aeroi•5h ago•42 comments

Show HN: I discovered roads in the US across > 1000 themes

https://road-about-a-theme.pinedesk.biz/
8•91awebsi•7h ago•5 comments

Factorio that you can touch

https://factorio.com/blog/post/fff-447
300•ibobev•9h ago•96 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.