frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Sonnet 5

https://www.anthropic.com/news/claude-sonnet-5
431•marinesebastian•1h ago•221 comments

Claude Code is steganographically marking requests

https://thereallo.dev/blog/claude-code-prompt-steganography
828•kirushik•3h ago•237 comments

Claude Science

https://claude.com/product/claude-science
168•lebovic•2h ago•68 comments

Nano Banana 2 Lite

https://deepmind.google/models/gemini-image/flash-lite/
158•minimaxir•2h ago•48 comments

We Are the Last People Who Know How It Works

https://unix.foo/posts/last-people-who-know-how-it-works/
195•cylo•2h ago•133 comments

I built a mmWave material classification radar

https://gauthier-lechevalier.com/radar
52•GL26•2h ago•15 comments

Looking Ahead to Postgres 19

https://www.snowflake.com/en/blog/engineering/postgresql-19-features-beta/
183•thinkingemote•5h ago•107 comments

County with 37 Data Centers Asks Schools to 'Conserve Electricity'

https://www.404media.co/henrico-virginia-datacenter-energy-cost-email/
259•01-_-•3h ago•126 comments

Knoppix

https://www.knopper.net/knoppix/index-en.html
161•hoangvmpc•6h ago•79 comments

Memoirs of Extraordinary Popular Delusions and the Madness of Crowds (1852)

https://www.gutenberg.org/ebooks/24518
131•lstodd•6h ago•39 comments

Don't Make Gates Optional, Make Them Flexible

https://wakamoleguy.com/p/flexible-gates
22•wakamoleguy•3d ago•2 comments

Open Source Low Tech

https://opensourcelowtech.org/
572•grep_it•4d ago•118 comments

Show HN: I made a heatmap of 3400 VCs who are open to cold emails

https://apparent.social/heat-map
7•west_subject•55m ago•5 comments

Xsnow "protestware" in Debian

https://lwn.net/SubscriberLink/1079385/3d7a57da58b41aa9/
92•6581•2h ago•66 comments

Building a custom octocopter from scratch with no prior hardware experience

https://karolina.mgdubiel.com/drone/
268•noleary•2d ago•58 comments

Crypto firms have spent $189M so far on 2026 US election, report says

https://www.reuters.com/world/crypto-firms-have-spent-189-million-so-far-2026-us-election-report-...
139•tartoran•2h ago•56 comments

Tell HN: Installing Cursor on iOS irreversibly changes your privacy settings

50•zkldi•59m ago•9 comments

Factorio 2.1 Experimental Release

https://factorio.com/blog/post/fff-444
96•ibobev•3d ago•52 comments

European digital ID wallets rely on safety services of Google and Apple

https://waag.org/en/article/european-digital-id-wallets-are-gift-google-and-apple/
642•donohoe•8h ago•279 comments

Qwen 3.6 27B is the sweet spot for local development

https://quesma.com/blog/qwen-36-is-awesome/
1116•stared•1d ago•699 comments

Matrix URIs, a URL syntax from Tim Berners-Lee that never shipped (1996)

https://www.w3.org/DesignIssues/MatrixURIs.html
12•napolux•4d ago•3 comments

Zluda 6 release (run unmodified CUDA applications on non-Nvidia GPUs)

https://vosen.github.io/ZLUDA/blog/zluda-update-q1q2-2026/
116•Tiberium•8h ago•10 comments

LongCat-2.0, a large-scale MoE model with 1.6T total and 48B Active

https://longcat.chat/blog/longcat-2.0/
253•benjiro29•19h ago•76 comments

We moved our Bluesky data to Eurosky

https://waag.org/en/article/why-we-moved-our-bluesky-data-eurosky/
118•dotcoma•4h ago•99 comments

Mathematics: Its Content, Methods and Meaning

https://old.maa.org/press/maa-reviews/mathematics-its-content-methods-and-meaning
56•teleforce•3d ago•16 comments

.self: A new top-level domain designed to support self-hosting

https://hccf.onmy.cloud/2026/06/21/reclaiming-our-digital-selves-hccfs-vision-for-a-human-centere...
644•HumanCCF•23h ago•357 comments

Free the Icons

https://weblog.rogueamoeba.com/2026/06/26/free-the-icons/
641•zdw•3d ago•236 comments

Exercise intensity influences body composition in healthy older adults (2025)

https://www.maturitas.org/article/S0378-5122(25)00571-7/fulltext
178•bookofjoe•9h ago•151 comments

Amazon Seller Reveals Rare Glimpse of Shadow Bribery Market

https://www.bloomberg.com/news/articles/2026-06-24/inside-the-shadow-market-selling-access-to-ama...
24•petethomas•1h ago•7 comments

I'm building a Space Cadet Pinball Machine! [video]

https://www.youtube.com/watch?v=lHQ8c8i42VE
73•skibz•4d ago•15 comments
Open in hackernews

DocumentDB – a MongoDB compatible open-source database

https://documentdb.io/
14•amai•1d ago

Comments

tgv•1d ago
Not only is it a mongodb interface on postgresql, it's built by Microsoft, and has joined the Linux foundation? Color me surprised. Did they build this for fun or what?
pickle-wizard•1d ago
Microsoft built this so they can have a MongoDB compatible database service for Azure.

A few years back MongoDB changed their license to AGPL to make it harder for companies to take their code and offer it as a service. They did this because it competes with the MongoDB Atlas service.

CodesInChaos•11h ago
Mongo changed from AGPL, which is permissive enough to be usable by cloud providers, to SSPL which has even stronger copyleft making it unusable for cloud providers (and doesn't meet the OSI or FSF requirements).
pan69•9h ago
Not super familiar with Azure, but didn't they already have Cosmos DB? Or is that just MongoDB under the hood?
stackskipton•1d ago
Beyond other reason listed in the comments, Microsoft is heavily invested in Postgres. They bought Postgres sharding company (https://www.citusdata.com) and apparently it sees a ton of use internally even for newer Greenfield projects. Also, if check recent commits to Postgres, you will find Microsoft employees all over commit history.

As I've commented several times before, MSSQL appears to be on life support. It makes them a ton of money and it's supported in same way AS/400 is supported. Sure, Microsoft will take your money but don't expect a lot in return.

schrodinger•1d ago
As someone who spent over half a decade using MS SQL Server daily, I have to admit it's a very nice database, and better than Postgres for some use cases. This could be interesting!

Postgres made the foundational design decision that every update is an insert leaving behind a stale row that'll get cleaned up eventually with its MVCC model. It's great for non-blocking read-heavy workflows (presumably the most common), but it suffers for the inverse.

For example, I wrote a simple job queue in Postgres, which had a lot of contention over the oldest rows non-terminal rows. It had many runners trying to either mark a row as completed or claim a row by atomically marking it as started and returning the row's contents (using the "skip locked" functionality). This ran much faster using similar semantics on MS SQL Server or MySQL because they have in-place updates, not an append-only tuple log.

CodesInChaos•10h ago
You might be interested in OrioleDB, which is an id-development storage engine for postgres that relies on in place updates combined with undo logs.
CodesInChaos•1d ago
How does this related to other mongo on postgres projects? It looks like ferretdb was changed to build on documentdb and then abandoned?
marifjeren•1d ago
Name it anything else for god's sake. DocumentDB is already what everybody calls Amazon DocumentDB
howToTestFE•1d ago
+1 very confusing name for another mongodb compatible db.
cr125rider•1d ago
But does this one support nice geospatial indexes? Ya know the one cool thing about mongo that AWS totally skipped
fabioyy•18h ago
can't believe that is not intentional. fishy
schrodinger•1d ago
Anyone notice how they linked to a "Hacker News Discussion" on their homepage? It's empty unfortunately, but hey, they tried!

https://news.ycombinator.com/item?id=42807210