frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Auto-research with codex: How I achieved a 232x Faster Kernel

https://sankalp.bearblog.dev/autoresearch/
165•tosh•4h ago•50 comments

Writergate: Zig I/O Interface Overhaul

https://alexrios.me/blog/writergate/
16•signa11•1h ago•2 comments

GenRec: Towards LLM-Native Recommendation at Netflix

https://netflixtechblog.com/genrec-towards-llm-native-recommendation-at-netflix-f20be6f643e3
26•Anon84•2h ago•31 comments

Working with AI Feels More Like Leadership Than Coding

https://allen.bargi.org/notes/working-with-ai-feels-like-leadership/
63•allenb•4h ago•50 comments

Qwen 3.8 27B

https://huggingface.co/Qwen/Qwen3.8-27B-FP8
1257•erdaltoprak•1d ago•736 comments

The other Sean Byrne doesn't exist

https://conic.al/writing/the-other-sean-byrne-doesnt-exist/
288•rdl•10h ago•139 comments

Yadda 3.0.0: BDD in the Age of AI Agents

http://www.stephen-cresswell.com/2026/08/15/Yadda-3.0.0-BDD-in-the-Age-of-AI-Agents.html
13•scresswell•1h ago•3 comments

The mathematical beauty of hyperbezier curves

https://linebender.org/blog/hyperbezier/
86•raphlinus•5d ago•10 comments

Secondhand book sales are booming. Is it because of AI?

https://www.bbc.co.uk/news/articles/cp3rprx2wl4o
21•m-i-l•59m ago•22 comments

Show HN: Quasicrystals Animation Playground with WebXR

https://hypnagogic-quasicrystals.github.io/
7•r34•1h ago•4 comments

The Color of White Light

https://ludens.cl/photo/spectra/spectra.html
36•xk3•3d ago•25 comments

Show HN: Eigendrum - Draw any shape and hear what it sounds like as a drum

https://baselashraf81.github.io/eigendrum/
82•BaselAshraf81•4d ago•17 comments

Cloudflare's AI Psychosis

https://opensauce.it/cloudflare-ai-psychosis/
70•gregzeng95•1h ago•32 comments

Using GCC's Nested Functions with Wide Pointers and No Trampolines II

https://uecker.codeberg.page/2026-07-14.html
49•uecker•7h ago•31 comments

Could a computer scientist build a brain?

https://stankerstjens.github.io/could-a-computer-scientist-build-a-brain/
4•ogundipeore•1h ago•0 comments

A Planet Position Widget

https://leancrew.com/all-this/2026/08/a-planet-position-widget/
4•speckx•2d ago•1 comments

Going Dark, and the era of law enforcement hacking

https://blog.cryptographyengineering.com/2026/08/14/everything-is-about-to-go-dark/
397•vslira•18h ago•192 comments

Xorshift Generators

https://www.alanzucconi.com/2026/08/15/xorshift-generators/
6•tobr•2h ago•1 comments

Brazilian election filter in X For You timeline

https://github.com/xai-org/x-algorithm/blob/main/home-mixer/filters/brazil_2026_election_filter.rs
33•LorenDB•1h ago•23 comments

So Who's Going to Buy All These Tokens?

https://horse.energy/who_buys_the_tokens.html
4•aakil•1h ago•1 comments

In 1962, Egypt's Missile Program Lost Its Key Scientist Without a Trace

https://www.popularmechanics.com/military/a73358518/nazi-rocket-scientist-disappearance/
81•bookofjoe•3d ago•50 comments

The Problem

https://intelligence.org/the-problem/
8•Bluestein•2h ago•5 comments

Brain turns listening inward during REM sleep, EEG recordings suggest

https://medicalxpress.com/news/2026-07-brain-rem-eeg.html
22•gmays•1h ago•3 comments

T3X/0 a Minimal Procedural Language

https://t3x.org/t3x/0/index.html
7•AlexeyBrin•3h ago•0 comments

Google is making private AI practical with homomorphic encryption

https://blog.google/security/how-google-is-making-private-ai-practical-with-homomorphic-encryption/
448•u1hcw9nx•23h ago•266 comments

Möbius Strips and Differential Equations

https://hidden-phenomena.com/articles/monodromy
14•mbustamanter•5d ago•1 comments

Firefox is now the last major browser that still supports uBlock Origin

https://www.pcworld.com/article/3212428/firefox-is-now-the-last-major-browser-that-still-supports...
1376•DemiGuru•20h ago•530 comments

Show HN: ThoughtDAG – An editable context graph for LLM conversations

https://chenxiachan.github.io/thoughtdag/
79•chatchan•10h ago•25 comments

Understanding WCAG 2.2 as ePub and PDF

https://doeken.org/wcag-ebook
42•doekenorg•3d ago•3 comments

388 years ago, Galileo worked out why human giants can't exist

https://www.scientificamerican.com/article/388-years-ago-galileo-worked-out-why-human-giants-cant...
17•beardyw•1h ago•16 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.