frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI children's books, body horror edition

https://lcamtuf.substack.com/p/ai-childrens-books-body-horror-edition
126•surprisetalk•2h ago•37 comments

Om Malik has died

https://om.co/2026/06/24/1966-2026/
553•minimaxir•6h ago•57 comments

Apple to skip high-end M6 Mac chips in favor of AI-focused M7 line

https://www.bloomberg.com/news/articles/2026-06-25/apple-to-skip-high-end-m6-mac-chips-to-launch-...
105•scrlk•9h ago•67 comments

An entire Herculaneum scroll has been read for the first time

https://scrollprize.org/firstscroll
1032•verditelabs•11h ago•230 comments

Framework's 10G Ethernet module exposes USB-C's complexity

https://www.jeffgeerling.com/blog/2026/framework-10g-ethernet-module-usb-c-complexity/
51•Alupis•2h ago•15 comments

The 'papers, please' era of the internet will decimate your privacy

https://expression.fire.org/p/the-papers-please-era-of-the-internet
469•bilsbie•5h ago•224 comments

A data race that doesn't compile

https://corentin-core.github.io/posts/ruxe-type-level-disjointness/
18•stmw•1h ago•5 comments

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed) (2023)

https://gchandbook.org/
63•teleforce•4h ago•11 comments

A game where you're an OS and have to manage processes, memory and I/O events

https://github.com/plbrault/youre-the-os
115•exploraz•2d ago•26 comments

Un-0: Generating Images with Coupled Oscillators

https://unconv.ai/blog/introducing-un-0-generating-images-with-coupled-oscillators/
123•babelfish•6h ago•31 comments

Oxide computer 3D rack guided tour

https://explorer.oxide.computer/
307•darthcloud•3d ago•124 comments

IBM debuts sub-1 nanometer chip technology

https://newsroom.ibm.com/2026-06-25-ibm-debuts-worlds-first-sub-1-nanometer-chip-technology
274•porridgeraisin•11h ago•154 comments

Eyewitness at the Triangle (1911)

http://trianglefire.ilr.cornell.edu/index.html
13•NaOH•3d ago•0 comments

Show HN: OpenKnowledge – open source AI-first alternative to Obsidian/Notion

https://github.com/inkeep/open-knowledge
217•engomez•11h ago•102 comments

Overfitted a 900KB Transformer to Compress a 100MB CSV into 7MB

10•spidy__•2d ago•10 comments

Parallel Parentheses Matching

https://williamdue.github.io/blog/parallel-parentheses-matching
66•Athas•7h ago•9 comments

An oral history of Bank Python (2021)

https://calpaterson.com/bank-python.html
79•tosh•7h ago•27 comments

Show HN: Chess-Inspired Roguelike

https://princechazz.com
232•cowboy_henk•4d ago•78 comments

The Doorman's Fallacy in action

https://rozumem.xyz/posts/17
69•rozumem•7h ago•102 comments

Migrating from Proxmox to NixOS and Incus

https://www.nijho.lt/post/proxmox-to-nixos/
59•wasting_time•5h ago•37 comments

OS9Map

https://yllan.org/software/OS9Map/
197•LaSombra•12h ago•35 comments

Zig's new bitCast semantics and LLVM back end improvements

https://ziglang.org/devlog/2026/#2026-06-25
219•kouosi•12h ago•89 comments

Record type inference for dummies

http://haskellforall.com/2026/06/record-type-inference-for-dummies
22•g0xA52A2A•2d ago•0 comments

Apple raises prices of MacBooks, iPads

https://www.reuters.com/world/asia-pacific/apple-raises-prices-macbooks-ipads-memory-costs-skyroc...
655•virgildotcodes•14h ago•936 comments

Experiments in Sports Seismology for the World Cup

https://pnsn.org/blog/experiments-in-sports-seismology-for-the-world-cup
11•jmward01•4d ago•0 comments

Besimple AI (YC P25) Is Hiring

https://www.ycombinator.com/companies/besimple-ai/jobs/yWfhhOR-strategic-projects-lead-audio-data
1•yzhong94•10h ago

Military branches restore flu shot requirement after virus swept through base

https://arstechnica.com/health/2026/06/military-branches-restore-flu-shot-requirement-after-virus...
166•tzs•5h ago•76 comments

The last Romans are still around

https://signoregalilei.com/2026/06/20/the-last-romans-are-still-around/
47•surprisetalk•3d ago•70 comments

GloriousEggroll's Proton has been rebased on Proton 11

https://github.com/GloriousEggroll/proton-ge-custom/releases/tag/GE-Proton11-1
70•d3Xt3r•1d ago•26 comments

You can't unit test for taste

https://dev.karltryggvason.com/you-cant-unit-test-for-taste/
254•kalli•1d ago•118 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.