frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

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

https://simonwillison.net/2026/Aug/16/qwen-38-27b/
197•bilsbie•5h ago•81 comments

The Life and Death of Direct File [pdf]

https://www.ischool.berkeley.edu/sites/default/files/vinton_report_5.pdf
128•ronbenton•4h ago•52 comments

Gmail might partially be to blame for receiving emails from other Sean Conners

https://boston.conman.org/2026/08/11.1
18•dmarto•1h ago•14 comments

A 3rd World Embedded Engineer Responds to "RISC-V They Should Have Known Better"

https://rvembedded.com/blog_post/12/
415•Narishma•11h ago•226 comments

AGI-64 Brings Sierra Adventures to the Commodore 64

https://meanhamster.com/news/agi-64-brings-sierra-adventures-to-the-commodore-64
33•erickhill•3h ago•4 comments

Claude: System Prompts

https://platform.claude.com/docs/en/release-notes/system-prompts
584•tosh•15h ago•240 comments

Rhombus 1.1 is now available

https://blog.racket-lang.org/2026/08/rhombus-v1.1.html
38•spdegabrielle•3h ago•13 comments

Reticulum – Decentralized Mesh Network

https://reticulum.network/
43•sudo_cowsay•4h ago•11 comments

Low-Tech Ceramic Water Filter

https://wiki.lowtechlab.org/wiki/Filtre_%C3%A0_eau_c%C3%A9ramique/en
131•Bluestein•5d ago•33 comments

Dancing with friends and enemies: boids' swarm intelligence

https://community.wolfram.com/groups/-/m/t/122095
33•surprisetalk•5d ago•1 comments

Interview with Amit Patel, Creator of "Solar Realms Elite"

https://breakintochat.com/blog/2013/02/18/amit-patel-creator-of-solar-realms-elite/
29•bananaboy•1w ago•5 comments

SIMD in the 90s: Programming Intel's Pentium MMX

https://pikuma.com/blog/programming-intel-pentium-mmx-simd
85•ibobev•3d ago•39 comments

Applying a photosynthetic process to treat "dry eye"

https://www.science.org/content/blog-post/taking-tip-plants-eyes
14•gumby•4h ago•0 comments

Protobuf has LSP support. You're welcome

https://buf.build/blog/protobuf-lsp
130•theanonymousone•9h ago•85 comments

How do I permanently disable Google Photos pop-up prompt to backup my photos?

https://support.google.com/photos/thread/256212140/how-do-i-permanently-disable-google-photos-pop...
34•dt3ft•3d ago•13 comments

The AI Credit Resale Economy

https://vectoral.com/blog/who-are-the-token-brokers
251•mlenhard•14h ago•99 comments

MathCode, Mathematical Coding Agent

https://math-ai-org.github.io/mathcode/
75•homarp•10h ago•25 comments

Plastic mechanical computer from 1963: The Digi-Comp 1 [video]

https://www.youtube.com/watch?v=-y8bGBE71yw
59•tobr•1d ago•16 comments

A quick look at zero-knowledge proofs

https://bernsteinbear.com/blog/zkp/
66•evakhoury•2d ago•32 comments

Nvidia dramatically reduces amount of OpenAI infra financing it may guarantee

https://www.reuters.com/business/nvidia-scales-back-250-billion-openai-data-center-guarantee-wsj-...
158•root-parent•7h ago•62 comments

Clamiga: Common Lisp for the Amiga

https://nnamgreb.de/blog/Clamiga+-+Common+Lisp+for+the+Amiga
97•emptybits•4d ago•12 comments

Prolly: A content-addressed ordered map built on prolly trees

https://github.com/crabbuild/prolly
13•forhappy•3h ago•0 comments

Anton Chekhov played at love most of his life

https://commonreader.wustl.edu/winning-and-losing-at-the-great-game-of-intimacy/
77•lermontov•2d ago•17 comments

Red queen hypothesis – a new way forward for self-improving AI

https://www.cst.cam.ac.uk/news/red-queen-hypothesis-new-way-forward-self-improving-ai
28•hardlianotion•8h ago•2 comments

Firefox for iOS now has a native adblocker

https://support.mozilla.org/en-US/kb/block-ads-firefox-ios
586•pentagrama•15h ago•241 comments

The federal keyword lists that canceled billions in research funding

https://www.highereddive.com/news/inside-the-federal-keyword-lists-that-canceled-billions-in-rese...
166•walrus01•4h ago•57 comments

Tell HN: Cloudflare silently injects its analytics when you switch nameservers

348•stagas•10h ago•94 comments

Stripe Clinches over $7B Deal to Buy AI Firm OpenRouter

https://www.bloomberg.com/news/articles/2026-08-16/stripe-nears-deal-to-buy-ai-firm-openrouter-fo...
240•zacharyozer•8h ago•175 comments

A True Telnet BBS on a Casio Calculator

https://ei3lh.eu/2026/08/16/a-true-telnet-bbs-on-a-casio-calculator/
93•austinallegro•16h ago•9 comments

The Marvelously Inventive Life of Mária Telkes (2023)

https://www.pbs.org/wgbh/americanexperience/features/sun-queen-marvelously-inventive-life-maria-t...
3•mooreds•3d ago•1 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.