frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Writing Lisp Is AI Resistant and I'm Sad

https://blog.djhaskin.com/blog/writing-lisp-is-ai-resistant-and-im-sad/
43•djha-skin•2h ago•31 comments

Introduction to Computer Music [pdf]

https://composerprogrammer.com/introductiontocomputermusic.pdf
82•luu•3h ago•21 comments

Show HN: A game where you build a GPU

https://jaso1024.com/mvidia/
580•Jaso1024•12h ago•144 comments

OpenScreen is an open-source alternative to Screen Studio

https://github.com/siddharthvaddem/openscreen
166•jskopek•4d ago•27 comments

Isseven

https://isseven.app/
74•philipreasa•3h ago•37 comments

Advice to Young People, the Lies I Tell Myself (2024)

https://jxnl.co/writing/2024/06/01/advice-to-young-people/
71•mooreds•5h ago•18 comments

LLM Wiki – example of an "idea file"

https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f
112•tamnd•12h ago•28 comments

Functional programming accellerates agentic feature development

https://cyrusradfar.com/thoughts/functional-programming-is-the-only-way-to-scale-with-ai
34•cyrusradfar•3d ago•20 comments

AI that copied musical artist files copyright claim against that artist

https://twitter.com/VladTheInflator/status/2039577001531768906
28•josephcsible•1h ago•7 comments

How many products does Microsoft have named 'Copilot'?

https://teybannerman.com/strategy/2026/03/31/how-many-microsoft-copilot-are-there.html
496•gpi•9h ago•246 comments

AWS Engineer Reports PostgreSQL Perf Halved by Linux 7.0, Fix May Not Be Easy

https://www.phoronix.com/news/Linux-7.0-AWS-PostgreSQL-Drop
171•crcastle•4h ago•42 comments

Show HN: Contrapunk – Real-time counterpoint harmony from guitar input, in Rust

https://contrapunk.com/
26•waveywaves•4h ago•4 comments

Show HN: I made open source, zero power PCB hackathon badges

https://github.com/KaiPereira/Overglade-Badges
67•kaipereira•14h ago•8 comments

Ruckus: Racket for iOS

https://ruckus.defn.io/
107•nsm•2d ago•9 comments

Show HN: sllm – Split a GPU node with other developers, unlimited tokens

https://sllm.cloud
137•jrandolf•13h ago•69 comments

The Indie Internet Index – submit your favorite sites

https://iii.social
115•freshman_dev•14h ago•24 comments

Components of a Coding Agent

https://magazine.sebastianraschka.com/p/components-of-a-coding-agent
195•MindGods•15h ago•66 comments

Show HN: TurboQuant-WASM – Google's vector quantization in the browser

https://github.com/teamchong/turboquant-wasm
145•teamchong•14h ago•6 comments

Apple approves driver that lets Nvidia eGPUs work with Arm Macs

https://www.theverge.com/tech/907003/apple-approves-driver-that-lets-nvidia-egpus-work-with-arm-macs
397•naves•12h ago•174 comments

Emotion concepts and their function in a large language model

https://www.anthropic.com/research/emotion-concepts-function
162•dnw•22h ago•166 comments

VR Realizes the Cyberspace Metaphor

https://yadin.com/notes/vr-disrupts/
8•dryadin•2d ago•4 comments

Breaking Enigma with Index of Coincidence on a Commodore 64

https://imapenguin.com/2026/03/breaking-enigma-with-index-of-coincidence-on-a-commodore-64/
32•saganus•4d ago•4 comments

Show HN: M. C. Escher spiral in WebGL inspired by 3Blue1Brown

https://static.laszlokorte.de/escher/
42•laszlokorte•9h ago•6 comments

Some Unusual Trees

https://thoughts.wyounas.com/p/some-unusual-trees
265•simplegeek•19h ago•76 comments

A case study in testing with 100+ Claude agents in parallel

https://imbue.com/product/mngr_part_2/
36•thejash•1d ago•20 comments

The CMS is dead, long live the CMS

https://next.jazzsequence.com/posts/the-cms-is-dead-long-live-the-cms
130•taubek•17h ago•77 comments

Embarrassingly simple self-distillation improves code generation

https://arxiv.org/abs/2604.01193
576•Anon84•18h ago•169 comments

Rubysyn: Clarifying Ruby's Syntax and Semantics

https://github.com/squadette/rubysyn/blob/master/README.md
5•petalmind•3d ago•0 comments

Shooting down ideas is not a skill

https://scottlawsonbc.com/post/shooting-down-ideas
123•zdw•4h ago•120 comments

Training mRNA Language Models Across 25 Species for $165

135•maziyar•3d ago•30 comments
Open in hackernews

QueryLeaf: SQL for Mongo

https://github.com/beekeeper-studio/queryleaf
23•tilt•11mo ago

Comments

ttfkam•11mo 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•10mo ago
https://www.ferretdb.com/
VWWHFSfQ•10mo 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•10mo ago
this makes so much sense.

I also wonder if there are some specific capabilities of MongoDB that this pattern does not support?

etse•10mo 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•10mo 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•10mo ago
Curious if there is something similar that works with sqlite.
maxbond•10mo ago
As of 3.38 (or 3.45 if you meant a binary JSON structure specifically) https://sqlite.org/json1.html
zareith•10mo 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•10mo ago
There is FerretDB v1, which provides MongoDB protocol for SQLite. See https://github.com/FerretDB/FerretDB/tree/main-v1
zareith•10mo 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•10mo ago
FerretDB v2 is built on top of this extension. See https://github.com/FerretDB/FerretDB
gavinray•10mo 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•10mo ago
That driver is read-only
gitroom•10mo 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_•10mo 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.