frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Preview of DuckDB v2.0

https://duckdb.org/2026/08/17/duckdb-20-highlights
266•ibotty•3h ago•34 comments

AI-Generated GitHub Copilot “Autofix” Allowed Compromise of Snowflake's Jira

https://www.wiz.io/blog/red-agent-snowflake-copilot-cicd-bug
143•galnagli•3h ago•62 comments

Launch HN: Speko (YC S26) – OpenRouter for Voice AI

https://speko.ai/
40•abdik•1h ago•17 comments

How to disable or avoid intrusive AI

https://www.librarian.net/notoai/
105•ColinWright•3h ago•46 comments

GPT 5.6 Sol is the best "vision" model OpenAI ever released

https://blog.roboflow.com/openai-gpt-5-6/
205•plurby•5h ago•106 comments

Buy Your Friends Batteries

https://domenkozar.com/2026/08/17/buy-your-friends-batteries/
20•domenkozar•33m ago•20 comments

Incident with Github.com

https://www.githubstatus.com/incidents/zkxwbgr0cnmx
166•SpyCoder77•3h ago•669 comments

How to put 170 atoms in an atom

https://signoregalilei.com/2026/08/02/how-to-put-170-atoms-in-an-atom/
50•surprisetalk•2h ago•5 comments

Ask HN: Alternatives to GitHub

242•dhruv3006•3h ago•147 comments

Olo (Color)

https://en.wikipedia.org/wiki/Olo_(color)
86•inigyou•5d ago•14 comments

Qwen 3.8 27B is excellent, but it defaults to overthinking things

https://simonwillison.net/2026/Aug/16/qwen-38-27b/
722•bilsbie•17h ago•336 comments

How I developed an Am29000 C compiler and web browser

https://nanochess.org/am29000_c_compiler_web_browser.html
44•nanochess•20h ago•4 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
47•enjoyyourlife•4h ago•31 comments

Apple's App Tracking Transparency treated its own apps better than rivals

https://www.bundeskartellamt.de/SharedDocs/Meldung/EN/Pressemitteilungen/2026/08_17_2026_Apple_AT...
181•nyku•3h ago•66 comments

Anthropic's ‘watermark’ text adulteration in Claude is a perversion of writing

https://daringfireball.net/2026/08/anthropics_watermark_text_adulteration_in_claude_is_a_perversi...
633•ropbear•19h ago•555 comments

How to ship a database every day

https://turbopuffer.com/blog/control-plane
38•tarunnnp•3h ago•4 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
15•mcclowes•2h ago•8 comments

On AI regulation and messaging

https://twitter.com/DarioAmodei/status/2088758816376807762
196•jacquesm•15h ago•404 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
100•vlowrian•9h ago•39 comments

Show HN: Learn Flags Quiz

https://flagquizzes.com/
19•artiomyak•3h ago•8 comments

Universal Health Coverage Could Save $1T and 114k Lives a Year, Yale Study

https://ysph.yale.edu/news-article/universal-health-coverage-could-save-one-trillion-dollars-and-...
248•karakoram•1h ago•307 comments

Mexico crackdown on coastal development

https://yucatanmagazine.com/mexico-crackdown-on-coastal-development/
82•untiledsource•5h ago•19 comments

Cross-Validation From Scratch and a Surprise at n=100

https://www.kenkoonwong.com/blog/crossvalidation/
3•sebg•3d ago•0 comments

Online clinics and influencers are promoting Cialis as a longevity drug

https://www.npr.org/2026/08/17/nx-s1-5928263/cialis-viagra-tadalafil-longevity-heart-health
74•brandonb•3h ago•53 comments

Ahmad on X: "Anthropic's War on open source AI" / X

https://twitter.com/TheAhmadOsman/status/2065307070044234186
27•bilsbie•1h ago•4 comments

How Go detects struct copies with sync.noCopy

https://func25.dev/posts/go-sync-nocopy/
51•func25•4d ago•48 comments

Linear algebra done right

https://linear.axler.net/
198•the-mitr•11h ago•72 comments

Reticulum – Decentralized Mesh Network

https://reticulum.network/
201•sudo_cowsay•17h ago•65 comments

Judge relying wholly on AI in order is covered by judicial immunity, court rules

https://reason.com/volokh/2026/08/17/judges-allegedly-relying-wholly-on-ai-in-order-is-covered-by...
37•delichon•2h ago•35 comments

The only known trebuchet casualty in history

https://arstechnica.com/science/2026/08/meet-the-only-known-trebuchet-casualty-in-history/
37•Tomte•2h ago•13 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.