frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google releases Gemma 4 open models

https://deepmind.google/models/gemma/gemma-4/
700•jeffmcjunkin•3h ago•196 comments

Tailscale's New macOS Home

https://tailscale.com/blog/macos-notch-escape
101•tosh•1h ago•37 comments

George Goble died recently – known for first dual-CPU-Unix and fast BBQ lighting

https://www.legacy.com/us/obituaries/wlfi/name/george-goble-obituary?id=61144779
41•finaard•1h ago•11 comments

Qwen3.6-Plus: Towards real world agents

https://qwen.ai/blog?id=qwen3.6
317•pretext•5h ago•107 comments

Yggdrasil Network

https://yggdrasil-network.github.io/
26•Velocifyer•1h ago•4 comments

We sped up bun by 100x

https://vers.sh/blog/git-zig-bun-100x
13•sdan•38m ago•6 comments

Lemonade by AMD: a fast and open source local LLM server using GPU and NPU

https://lemonade-server.ai
349•AbuAssar•8h ago•85 comments

Zep AI Is Hiring – Building the Agent Context Layer (YC W24)

https://www.ycombinator.com/companies/zep-ai/jobs
1•roseway4•57m ago

LinkedIn is illegally searching your computer

https://browsergate.eu/
1330•digitalWestie•6h ago•599 comments

Hugo's New CSS Powers

https://www.brycewray.com/posts/2026/04/hugos-new-css-powers/
18•speckx•1h ago•2 comments

JSON Canvas Spec

https://jsoncanvas.org/spec/1.0/
38•tobr•3d ago•8 comments

Good ideas do not need lots of lies in order to gain public acceptance (2008)

https://blog.danieldavies.com/2004/05/d-squared-digest-one-minute-mba.html
20•sedev•2h ago•2 comments

Significant progress made on Xbox 360 recompilation

https://readonlymemo.com/rexglue-xbox-360-recompilation-interview/
14•tetrisgm•4d ago•0 comments

Ask HN: European Tech Alternatives?

61•BrunoBernardino•1h ago•35 comments

Inside Nepal's Fake Rescue Racket

https://kathmandupost.com/money/2026/03/27/inside-nepal-s-fake-rescue-racket
213•lode•8h ago•84 comments

Significant Raise of Reports

https://lwn.net/Articles/1065620/
238•stratos123•10h ago•122 comments

IBM Announces Strategic Collaboration with Arm

https://newsroom.ibm.com/2026-04-02-ibm-announces-strategic-collaboration-with-arm-to-shape-the-f...
241•bonzini•10h ago•152 comments

Artemis II will use laser beams to live-stream 4K moon footage at 260 Mbps

https://www.tomshardware.com/networking/artemis-ii-will-use-laser-beams-to-live-stream-4k-moon-fo...
242•speckx•4h ago•104 comments

'Backrooms' and the Rise of the Institutional Gothic

https://thereader.mitpress.mit.edu/backrooms-and-the-rise-of-the-institutional-gothic/
129•anarbadalov•6h ago•65 comments

Delve allegedly forked an open-source tool and sold it as its own

https://techcrunch.com/2026/04/01/the-reputation-of-troubled-yc-startup-delve-has-gotten-even-worse/
212•nickvec•4h ago•103 comments

Sweden goes back to basics, swapping screens for books in the classroom

https://undark.org/2026/04/01/sweden-schools-books/
628•novaRom•8h ago•322 comments

Renewables reached nearly 50% of global electricity capacity last year

https://www.theregister.com/2026/04/01/renewables_generated_nearly_half_global_power/
160•Growtika•4h ago•80 comments

Modern SQLite: Features You Didn't Know It Had

https://slicker.me/sqlite/features.htm
117•thunderbong•3h ago•22 comments

An Example of Statistical Investigation of the Text Eugene Onegin – Markov, 1913 [pdf]

https://alpha60.de/research/markov/DavidLink_AnExampleOfStatistical_MarkovTrans_2007.pdf
23•jxmorris12•3d ago•1 comments

Quadratic Micropass Type Inference

https://articles.luminalang.com/a/micropass-inference/
18•simvux•5d ago•5 comments

Bringing Clojure programming to Enterprise (2021)

https://blogit.michelin.io/clojure-programming/
176•smartmic•11h ago•98 comments

EmDash: A Fresh Take on CMS

https://maciekpalmowski.dev/blog/emdash-a-fresh-take-on-cms/
47•taubek•3h ago•10 comments

Email obfuscation: What works in 2026?

https://spencermortensen.com/articles/email-obfuscation/
312•jaden•16h ago•91 comments

Gone (Almost) Phishin'

https://ma.tt/2026/03/gone-almost-phishin/
152•luu•2d ago•71 comments

Reinventing the pull request

https://lubeno.dev/blog/reinventing-the-pull-request
76•bkolobara•6d ago•59 comments
Open in hackernews

QueryLeaf: SQL for Mongo

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

Comments

ttfkam•10mo 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.