frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-6 Astra

https://openai.com/index/gpt-6-astra/
1776•kibae•14h ago•1557 comments

.name Termination

https://neil.fraser.name/news/2026/09/03/
1788•pavel_lishin•18h ago•447 comments

Authorization terminology is a mess: Let's fix it

https://idpro.org/authorization-terminology-is-a-mess-lets-fix-it/
36•andychiare•2d ago•8 comments

Carbon-aware electricity pricing, measured daily on 38 grids

https://carbonawarepricing.com/
13•High-Five•1h ago•2 comments

Qwen 3.8 27B available on Cerebras at 1500 tokens/s

https://inference-docs.cerebras.ai/models/overview
553•altertable•14h ago•180 comments

The Raspberry Pi Interactive Timeline · 2006–2026

https://raspberry.tips/en/raspberrypi-infos/raspberry-pi-history-timeline
11•mariuz•45m ago•2 comments

The largest electric aircraft just flew [video]

https://www.youtube.com/watch?v=nM86DBOqgPM
311•feb•2d ago•223 comments

Hackers Had a Live Feed of Every ID Verification Company Scanned for over a Year

http://www.techdirt.com/2026/09/03/hackers-had-a-live-feed-of-every-id-this-verification-company-...
103•beardyw•2h ago•28 comments

Artificial beaver dams saw juvenile coho salmon survival rates go from 8% to 60%

https://www.discoverwildlife.com/animal-facts/artificial-beaver-dams-california
255•speckx•16h ago•78 comments

How an MIT research project became the Julia programming language

https://news.mit.edu/2026/how-mit-research-project-became-global-programming-language-0831
93•theanonymousone•4d ago•27 comments

Project Xanadu: Even More Hindsight (2025)

https://gwern.net/xanadu
78•andsoitis•7h ago•16 comments

Porting my 1993 Amiga game to Godot, with an LLM reading the 68000 assembly

https://babyloniantwins.com/blog/porting-a-1993-amiga-game-to-godot/
292•rabahs•18h ago•93 comments

Go grandmaster Shin defeats AI KataGo with a two-stone handicap

https://www.kedglobal.com/artificial-intelligence/newsView/ked202607210007
303•gmays•1d ago•104 comments

Move in C++ without a std:move

https://andreasfertig.com/blog/2026/09/move-in-cpp-without-a-stdmove/
44•dalvrosa•2d ago•53 comments

Which tools do Claude, Codex and Cursor choose? We measured 17k runs to find out

https://armature.tech/blog/which-tools-coding-agents-install
214•screm•12h ago•98 comments

K2 Horizon: A connected fleet of six open models

https://ifm.ai/blog/k2/
296•karimf•17h ago•97 comments

GPS glitched across the US by as much as 33 feet

https://www.sciencealert.com/gps-glitched-across-the-us-by-as-much-as-33-feet-scientists-have-nev...
174•thread_id•1d ago•104 comments

Ask HN: Who is using MCP in production?

66•sukit•21h ago•83 comments

Show HN: Reactor Atlas

https://reactoratlas.com
26•fedecaccia•20h ago•14 comments

Xanadu was waiting for agents

https://zed.dev/blog/agentic-xanadu
119•nsm•2d ago•50 comments

In defense of two-state theme toggles

https://joshcollinsworth.com/blog/in-defense-of-two-state-theme-toggles
9•surprisetalk•2d ago•13 comments

From Hookswitch to Grave

https://computer.rip/2026-06-14-hookswitch-to-grave.html
24•Sniffnoy•6h ago•2 comments

Welcome to the Porcelain Insulator Collector's World of Mud

https://www.insulators.info/porcelain/
4•ripe•2d ago•2 comments

Virtual Threads for a scripting language in Java 8 without Loom

https://jactl.io/blog/2026/08/28/jactl-virtual-threads
30•jaccomo•2d ago•3 comments

Any Human Ever – One life, drawn at random from all who have ever lived

https://anyhumanever.com/
580•thinkingemote•18h ago•276 comments

Unusual Suspects

https://neal.fun/unusual-suspects/
155•beeperboy95•1d ago•27 comments

Grep beats LSP? Why coding agents ignore your fancier tools

https://www.agentconnect.md/blog/grep-beat-lsp-harness/
73•kaonashi-tyc-01•5h ago•49 comments

GLP-1s are being linked to fewer serious infections, including TB

https://gizmodo.com/ozempic-and-other-glp-1s-are-being-linked-to-fewer-serious-infections-includi...
112•gumby•10h ago•57 comments

Tasklet (YC P26) Is Hiring a Customer Success Engineer

https://tasklet.ai/careers/customer-success-engineer
1•mayop100•12h ago

The browser's main thread is expensive

https://kciter.so/posts/the-expensive-main-thread/en/
405•kciter•2d ago•141 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.