frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

It's hard to justify buying a Framework 12

https://www.jeffgeerling.com/blog/2026/its-hard-to-justify-framework-12/
1•watermelon0•8s ago•0 comments

Do U.S. Presidents Always Make This Much Money? [video]

https://www.youtube.com/watch?v=X5MzTvfjcOM
2•Kapura•1m ago•0 comments

Benchmarking SurrealDB 3.x vs. Postgres, Mongo, Neo4j and Redis (With Fsync)

https://surrealdb.com/blog/surrealdb-3-x-by-the-numbers
1•itsezc•2m ago•0 comments

HN jobs section led to a job for anyone?

https://www.workatastartup.com/
1•ahmadhamza19•4m ago•0 comments

Ask HN: Made new model type (not LLM) no idea how to sell it

1•sarahoates•5m ago•0 comments

Free Official YouTube Content – A List/Collection of Official YouTube Channels

https://github.com/SuperAB123/Free-Official-Youtube-Content
1•liketomakemoney•6m ago•1 comments

Discovering Dennis Ritchie's Lost Dissertation (2020)

https://computerhistory.org/blog/discovering-dennis-ritchies-lost-dissertation/
3•taubek•9m ago•0 comments

Linkano – Create durable links between what you work on

https://www.mjanssen.nl/linkano/index.html
1•marc0janssen•10m ago•0 comments

Plan/Optimse your internet connection

https://stabilitypulse.com/plan
1•sudhir0112•11m ago•0 comments

Ask HN: Question for Startup Founders on tracking emotions and cognitive signals

1•tonyrice•12m ago•0 comments

The geometry of superior athletic performance

https://nickmark.substack.com/p/the-geometry-of-superior-performance
1•fanf2•13m ago•0 comments

The Nvidia Tax

https://www.cringely.com/2026/05/29/the-nvidia-tax/
2•HotGarbage•13m ago•0 comments

BarrelCast – Live Surf Companion

https://barrelcast.surf
2•peachfuzzweb•14m ago•1 comments

I Am Retiring from Tech to Live Offline

https://openpath.quest/2026/i-am-retiring-from-tech-to-live-offline/
6•PinkG•14m ago•2 comments

StemDeck: Open-Source

https://github.com/stemdeckapp/stemdeck
2•thclpr•15m ago•0 comments

What's cooking on Sourcehut? Q2 2026

https://sourcehut.org/blog/2026-05-28-whats-cooking-q2-2026/
2•birdculture•15m ago•0 comments

William Adams, the Bombay bureaucrat, visions of a solar future

https://theconversation.com/my-unsung-hero-of-science-william-adams-the-bombay-bureaucrat-whose-v...
1•zeristor•16m ago•0 comments

Experts say increased US spending doesn't mean better students

https://www.thecentersquare.com/national/article_d9563a6a-6b85-4506-aceb-fe93a2f54639.html
1•Vaslo•16m ago•1 comments

Pavona: Open-Source Hardware Ecosystem for Secure Chips

https://spectrum.ieee.org/pavona-open-source-hardware
2•rbanffy•16m ago•0 comments

South Africa AI Policy Leverage as Africa's Test Case

https://spectrum.ieee.org/south-africa-ai-policy
1•rbanffy•17m ago•0 comments

Putin's $26B Quest for Longevity

https://www.wsj.com/world/russia/putin-longevity-antiaging-92dee6e8
2•JumpCrisscross•18m ago•1 comments

Arm Metis with GPT5.5 Cyber scores 98% on firmware vulnerability benchmark

https://newsroom.arm.com/blog/arm-metis-agentic-ai-security
2•newton-finder•18m ago•0 comments

Selling a House with AI

https://www.nytimes.com/2026/05/28/technology/sell-house-with-ai-no-realtor.html
2•onlypassingthru•19m ago•0 comments

Show HN: OpenHive – AI agents share solutions so other agents dont re-solve them

https://openhivemind.vercel.app/
3•ananandreas•19m ago•0 comments

What the Clarity Act Means for the Rest of the World

https://decrypt.co/369245/what-clarity-act-means-rest-of-world
1•aysh_1•21m ago•0 comments

I built an app to manage my game collection

https://retrodex.games
7•addamh•22m ago•0 comments

Tezcatl: A 2MB alternative to Puppeteer for scraping on macOS

https://george.mand.is/2026/05/tezcatl-a-2mb-alternative-to-puppeteer-for-scraping-on-macos/
2•evakhoury•22m ago•0 comments

Show HN: Repolog, website audit for SEO, performance, security, and AI readiness

https://repolog.io/
3•petersas•22m ago•0 comments

Constant Q Transform – A Visual Guide

https://brendanjameslynskey.github.io/ConstantQ-Transform/
1•hyperific•22m ago•0 comments

A graph-theoretic approach to building reliable LLM judges for retrieval

https://georgianailab.substack.com/p/evaluating-retrieval-without-ground
2•_peregrine_•24m ago•0 comments
Open in hackernews

Ask HN: Any good tools to pgdump multi tenant database?

3•polishdude20•1y ago
Just joined a new company and they run a multi tenant database in postgres where each tenant is distinguished by their account ID. I'd like to be able to dump the data of a single account to my local instance to assist in debugging.

Problem is, many of the entities do not include an account ID. For example, a user can have an account ID but a user post will not but it will be tied to a user ID.

Also foreign keys aren't really implemented fully.

Are there any tools or techniques that could help make this process easier to do?

Comments

tudorg•1y ago
You can try with data subsetting tools, a few that I know are: greenmask, jailer, tonic condenser, and I think there are more. They are not exactly for your use case, but might help you a bit. The problem is most of these tools can walk foreign keys, but only in one directions.

Also, since you said FK are not fully implemented, then there just won't be enough information for them to work with. So you can either work on fixing the foreign keys or have more complex scripts.

polishdude20•1y ago
Thanks for the suggestions!

Yeah due to the unavailability of FK's, I'd have to somehow map certain ID columns to the tables they're for, accounting for slight naming convention differences.

woyten•1y ago
In case you don’t have FKs you could specify virtual foreign keys in Greenmask.

Check out docs for details

https://docs.greenmask.io/latest/database_subset/#virtual-re...

abhisek•1y ago
This is poor design. Multi-tenant data model design must have a tenant or segment ID for every tenant segmented tables. While it may not be a problem initially but as the business grows, you may need to move tenant data to separate DBs or even different regions based on compliance requirements. IMHO it is a good idea to run DB migrations and have a tenant ID populated in all tenant segmented tables
polishdude20•1y ago
Oh yes I agree with you. It may become a big push to convince my org to do that