frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Another Linux LPE

https://github.com/v12-security/pocs
1•xiaoyu2006•35s ago•1 comments

Telegram Is Gone

https://lazybea.rs/telegram-is-gone/
1•speckx•1m ago•0 comments

Show HN: Truly Typed – A writing app for the AI era

https://trulytyped.com/
1•dwa3592•1m ago•0 comments

Krea launches K2, an image model built for aesthetics

https://twitter.com/krea_ai/status/2054207481421975829
1•thedebuglife•2m ago•0 comments

A Powerful New Tool to Find Alien Life

https://nautil.us/a-powerful-new-tool-to-find-alien-life-1280683
1•Brajeshwar•3m ago•0 comments

GW-Basic (Modern Cross-Platform Rewrite)

https://github.com/dagrigorev/gw-basic-cpp
1•BruceEel•6m ago•0 comments

TLX: Hardware-Native, Evolvable MIMW GPU Compiler for Large-Scale Production

https://arxiv.org/abs/2605.10905
1•matt_d•8m ago•0 comments

Mira Murati bets against the autonomous agent

https://vector.news/mira-murati-bets-against-the-autonomous-agent/
2•lars512•9m ago•0 comments

Lurie promised a permitting overhaul. It was troubled from the start

https://sfstandard.com/2026/05/13/daniel-lurie-opengov-permitting-permitsf-san-francisco/
1•andreyk•9m ago•0 comments

Show HN: Clock Face Generator [video]

https://www.youtube.com/watch?v=mNH0HnzLHfY
1•salaivv•9m ago•0 comments

Show HN: Neural window manager, neural network moving windows from mouse actions

https://lusob.github.io/neural-os/
2•lusob•10m ago•0 comments

Tau-knowledge: benchmarking agents on real-world knowledge

https://sierra.ai/blog/tau-knowledge
2•tedsanders•15m ago•0 comments

World Models: Things That Matter in AI

https://www.technologyreview.com/2026/05/12/1137134/world-models-10-things-that-matter-in-ai-righ...
2•Brajeshwar•16m ago•0 comments

That ostrich over there? It is into you. (2012)

https://gizmodo.com/that-ostrich-over-there-it-is-totally-into-you-5876033
1•thunderbong•17m ago•0 comments

Machines for Conviviality

https://intempus.org/writings/machines-for-conviviality/
1•jdcampolargo•17m ago•0 comments

More than 170 arrests in facial recognition trial

https://www.bbc.com/news/articles/cddpzglzrv7o
2•Cider9986•18m ago•0 comments

C8s: A Confidential Kubernetes Architecture

https://arxiv.org/abs/2604.26974
1•PaulHoule•19m ago•0 comments

Show HN: Claude Code plugin for two-way HTML artifact generation

https://github.com/f-labs-io/agent-html-skills
1•tzafrir•19m ago•0 comments

The most-prescribed drug works on the same pathway as $300 longevity peptides

https://www.researchhub.com/proposal/32204/same-pathway-as-mots-c-cheaper-safer-the-brain-body-im...
1•sciencestuff•20m ago•0 comments

Show HN: Claude MCP to Fitness Tracker

https://keegnation.fit/
1•KeegNation•22m ago•0 comments

Map your neighborhood your own way

https://www.instructables.com/Map-Your-Neighborhood-Your-Own-Way/
1•innocentlife•22m ago•0 comments

PHP license v4 now compatible with gnu GPL

https://www.php.net/license/index.php
1•natewrench•23m ago•0 comments

HuggingFace #1 Paper of the Day by Solo Researcher

https://huggingface.co/papers/2605.06169
2•huani•23m ago•0 comments

Kettle: Attested builds for verifiable software provenance

https://arxiv.org/abs/2605.08363
3•ameanasad•25m ago•0 comments

The Ice Age is over: gas car sales drop 37% in biggest market

https://electrek.co/2026/05/12/the-ice-age-is-over-gas-car-sales-drop-37-in-worlds-biggest-market/
2•dotcoma•26m ago•1 comments

Show HN: A open-source, local trace viewer for Claude Code and Codex sessions

https://github.com/DevonPeroutky/agent-profiler
1•MediumD•27m ago•0 comments

The eerie abandoned vehicles in Chernobyl's 'dead zone'

https://www.bbc.com/future/article/20260424-the-eerie-abandoned-vehicles-in-chernobyls-dead-zone
1•otoolep•29m ago•0 comments

End-to-End Encrypted RCS Comes to Apple and Android Chats

https://www.eff.org/deeplinks/2026/05/victory-end-end-encrypted-rcs-comes-apple-and-android-chats
1•Brajeshwar•29m ago•1 comments

Data centers cutting power to homes, driving homeowners to solar and batteries

https://electrek.co/2026/05/13/data-centers-grid-strain-driving-residential-solar-battery-demand/
3•dotcoma•30m ago•0 comments

AI Engineer Talks

https://www.ai.engineer
1•kristianpaul•31m ago•0 comments
Open in hackernews

Launch HN: Ardent (YC P26) – Postgres sandboxes in seconds with zero migration

https://www.tryardent.com/
22•vc289•1h ago
Hey HN! We’re Vikram and Evan from Ardent (https://tryardent.com). We're building database sandboxes for you and your coding agents.

In the last two years coding agents have gotten dramatically more capable at handling complex engineering tasks. But without access to a realistic sandbox at the DB layer for testing, they ship garbage that can take down production databases. I spent over a year building an AI Data Engineer that failed for this exact reason. Evan spent the last 12 years in data engineering and hit this wall building agents at his last company.

Ardent was built to make it possible for coding agents to get near instant access to production-like sandboxes so they can test their work. To do this we write a replication stream out of the target DB, scaling with kafka onto a read replica with copy on write enabled and autoscaling compute (we currently prefer neon as a primary branching engine due to their implementation of these properties).

Our replication stream uses logical replication + ddl triggers to enable usage on any hosted postgres DB since most platforms do not allow physical replication which is traditionally used for creating replicas.

This provides a few primary benefits:

1. Does not require a platform migration to a DB provider like neon, allowing strong separation of production and development concerns. 2. Minimal impact on the production database while allowing clones to spin up in <6s, even at TB scale with copy-on-write

Security matters a lot with cloning production so we run a proxy layer to generate custom postgres URLs and route all connections to allow more granular access control to clones, prevent credential leak, and follow a split plane architecture to allow full data residency on your cloud through BYOC.

We also support anonymization through the ability to register SQL that runs on branches before they are returned. This has been used for PII redaction and branch modification.

Our goal is to make every data infrastructure platform “cloneable” in one place so agents can fully test the impact of their changes on production like data environments without risk.

Here's a demo of it: https://youtu.be/5S1kwPtiRU0

We’d love to understand how you work with coding agents on the DB and if you try Ardent (it's free to get started) what worked, what broke and what’s missing.

Comments

znnajdla•43m ago
“Never impacts production data” is impossible to guarantee. Playing with real world data often has side effects outside of the database. For example if you store oauth tokens to external services in your DB (customer integrations) it’s easy to mess up your customers data through a bad API call (been there done that).

There is still value in carefully testing on your prod DB, but for that you could just easily maintain a read replica. I don’t see the need for a SaaS here.

nilirl•39m ago
Hi, site looks beautiful!

How does this compare to managing our own read-only replica with anonymized data?

xnx•18m ago
Ardent adds extra dependencies and cost.
vc289•6m ago
A true read replica won't let you write! So if you need to test something like a backfill and see if anything goes wrong you wouldn't be able to quite as easily.

We'd let you instantly clone prod + user defined auto-anonymization so you can test writes. The architecture also somewhat takes the place of an existing read replica if you want to use it like that to make it more cost efficient.

Also since we're using copy on write for the clones they're incredibly storage efficient and the autoscaling compute helps minimize cost on clones by minimizing excess compute uptime

cphoover•39m ago
How many people are giving an LLM Agent full read access to their production data? That seems nuts to me.
jedberg•28m ago
I'm much more worried about people who give full write access to their agents! But at least this solves that problem.
jedberg•30m ago
Looks interesting, curious what your moat here is. What prevents Supabase/Neon from doing this? Actually don't they already do this? How does this differ from the branching Neon and Supabase already offer?
vc289•11m ago
We enable branching on any postgres DB through our architecture. So if you're on RDS, Planetscale, etc you can keep your DB where it is but also get the ability to branch with a full clone of the DB.

Neon does support copy on write branching natively and autoscaling compute but you make certain performance tradeoffs. A lot of the folks we've talked to that use RDS or Planetscale are reliant on things like query latencies supported by that platform's specific architecture but also want the ability to test on branches. We let you get the best of both worlds (branch but leave your DB where it is and freely choose your production environment based on prod concerns)

Supabase does have branching but they do not branch the data so you can't test any interactions that rely on the data. You can restore from backup as an option but this slows down based on data size since you're actually moving data as opposed to copy on write.

Longer term we want to be the place you branch all your data infra. So expanding to S3, Snowflake, MySQL etc.

For now though we're focusing on just postgres and getting it right!

fmajid•9m ago
Doesn't look open-source. If you are interested in having a Neon or git-like branching for PostgreSQL experience, have a look at Xata, which is based on ZFS like Delphix was:

https://github.com/xataio/xata