frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

About Homespring.cloud

https://homespring.cloud/about
1•mygrant•18s ago•1 comments

Three Time-to-Power Strategies That Failed in 2025

https://chrisgillett.org/three-failed-time-to-power-strategies
1•powermarketer•1m ago•0 comments

Sam Altman's World ID Expands Biometric Identity Checks

https://reclaimthenet.org/world-id-iris-scan-online-verification-expansion
1•uyzstvqs•3m ago•0 comments

Use Faker to improve the quality of your tests

https://howtotestfrontend.com/resources/why-you-should-use-faker
1•howToTestFE•5m ago•0 comments

Trying and Failing with Claude

https://www.uncorrelatedcontents.com/blog/trying-and-failing-with-claude
1•Uncorrelated•7m ago•0 comments

Review: How Africa Works

https://www.worksinprogress.news/p/review-how-africa-works
1•syracusian•8m ago•0 comments

The Anarchy of Success

https://www.nybooks.com/articles/2009/10/08/the-anarchy-of-success/
1•syracusian•9m ago•0 comments

LeWorldModel: Stable End-to-End JEPA from Pixels

https://le-wm.github.io
1•nick_pou•10m ago•0 comments

Soul Player C64 – A real transformer running on a 1 MHz Commodore 64

https://github.com/gizmo64k/soulplayer-c64
2•adunk•10m ago•0 comments

NASA had to train Apollo 11's astronauts to not use profanity

https://www.columbian.com/news/2019/may/31/bad-words-led-some-to-swear-off-apollo-program/
1•cybermango•14m ago•0 comments

EU Age Verification Hacked in 2 Minutes: What Happened

https://pasqualepillitteri.it/en/news/1120/eu-age-verification-hacked-2-minutes-vulnerabilities
1•bigbugbag•16m ago•1 comments

Agent Skills on the Latent Space

https://old.reddit.com/r/dataisbeautiful/comments/1sr0e0n/oc_907_ai_agent_skills_projected_into_a...
1•shmulc•17m ago•0 comments

OpenClaw is toast. OpenHuman just landed

https://twitter.com/senamakel/status/2046266960707715277
2•enamakel•17m ago•1 comments

Thank You for Being a Friend

https://blog.codinghorror.com/thank-you-for-being-a-friend/
1•blucell•17m ago•0 comments

What No One Told You About Z-Index (2013)

https://philipwalton.com/articles/what-no-one-told-you-about-z-index/
1•downbad_•19m ago•1 comments

Show HN: I built Comrade – the security-focused AI agent

5•laurentiurad•20m ago•1 comments

Whither Microsoft? A View from the Neighborhood

https://www.geekwire.com/2026/opinion-whither-microsoft-a-view-from-the-neighborhood/
1•mooreds•20m ago•0 comments

The Gypsy document editor: celebrating 50 years

https://digitalseams.com/blog/the-gypsy-document-editor-celebrating-50-years
1•bobbiechen•23m ago•0 comments

Size-Optimized Ecdsa Implementations [pdf]

https://github.com/pornin/small-ecdsa/blob/main/tex/mmul.pdf
1•derysten•24m ago•0 comments

European digital identity wallets: how secure are they and what are the risks?

https://theconversation.com/european-digital-identity-wallets-how-secure-are-they-and-what-are-th...
1•u1hcw9nx•25m ago•0 comments

Contra Benn Jordan, infrasound issues are fake

https://blog.andymasley.com/p/contra-benn-jordan-data-center-and
1•semiquaver•26m ago•0 comments

Show HN: Myanon – fast, deterministic MySQL dump anonymizer

https://ppomes.github.io/myanon/
1•pierrepomes•27m ago•0 comments

Accelerating OpenXR at XR Expo 2026

https://www.collabora.com/news-and-blog/news-and-events/accelerating-openxr-at-xr-expo-2026.html
2•losgehts•28m ago•0 comments

Prism v11.0 – $O(1)$ Zero-Search Memory for AI Agents Using HRR and Act-R

https://github.com/dcostenco/prism-mcp
1•dcostenco4•29m ago•0 comments

The Dark Eye (role-playing game)

https://en.wikipedia.org/wiki/The_Dark_Eye_(role-playing_game)
2•doener•30m ago•0 comments

GPT 5.4 solves major open math problem- Comments by Terry Tao and Jared Lichtman

https://www.erdosproblems.com/forum/thread/1196
2•philipfweiss•31m ago•1 comments

What Claude Design changes for designers

https://medium.com/design-bootcamp/what-claude-design-actually-changes-for-designers-0c5b04fae343
2•cdrnsf•34m ago•0 comments

Meta's Federal Tax Rate Hits an All-Time Low Due to Breaks

https://itep.org/meta-tax-breaks-trump-mark-zuckerberg/
2•doener•34m ago•0 comments

MLX vs. CoreML on Apple Silicon: A Practical Guide to Picking the Right Back End

https://old.reddit.com/r/apple/comments/1sq4dry/mlx_vs_coreml_on_apple_silicon_a_practical_guide/
1•ipotapov•35m ago•0 comments

Agents Aren't Coworkers, Embed Them in Your Software

https://www.feldera.com/blog/ai-agents-arent-coworkers-embed-them-in-your-software
2•gz09•35m ago•0 comments
Open in hackernews

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

3•polishdude20•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Oh yes I agree with you. It may become a big push to convince my org to do that