frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Their Phones Were Stolen in London. Then the Threats Started

https://www.nytimes.com/2026/05/23/world/europe/phone-theft-threats-london.html
1•0in•1m ago•0 comments

Easier bets to get early customer validation and VC attention

1•Notional_ID•2m ago•0 comments

Pre-ASI Society

https://lifearchitect.ai/wiki/
1•adt•5m ago•0 comments

Export chats from 11 AI platforms to PDF or Markdown locally

https://chromewebstore.google.com/detail/ai-chat-exporter-sharer-p/eamemmejpblbiapnigdimieiblldhgoi
1•Rocke1001feller•6m ago•2 comments

'Fuck you, Bambu': How one private message could change the face of 3D printing

https://www.theverge.com/tech/931532/bambu-agpl-pawel-jarczak-open-source-threat-dmca-github
2•tambourine_man•7m ago•0 comments

When Was the First Islamic Voyage to the Americas?

https://lostfutures.substack.com/p/when-was-the-first-islamic-voyage
2•Lost-Futures•8m ago•0 comments

Family wanted to start over. They're building opt-in village for anyone to apply [video]

https://www.youtube.com/watch?v=5hiLNnzbj8o
1•surprisetalk•10m ago•0 comments

Human Bottlenecks

https://borretti.me/article/human-bottlenecks
2•zdw•11m ago•0 comments

Who Builds a House Without Drawing Blueprints? (2015)

https://cacm.acm.org/opinion/who-builds-a-house-without-drawing-blueprints/
1•zdw•12m ago•0 comments

Why Is Vivado 2026.1 Dropping Linux Support for Free Tier?

https://adaptivesupport.amd.com/s/question/0D5Pd00001YQLdMKAX/why-is-vivado-20261-dropping-linux-...
2•zdw•15m ago•0 comments

The C64 Dead Test Font

https://www.masswerk.at/nowgobang/2026/c64-dead-test-font
3•masswerk•33m ago•0 comments

The Random Camera Shop Discovery That Inspired Star Wars' Lightsaber Design

https://www.bgr.com/2143613/star-wars-lightsaber-design-inspiration-camera-shop-discovery/
1•gnabgib•34m ago•0 comments

All the Star Wars Lightsaber Designs

https://kottke.org/26/05/all-the-star-wars-lightsaber-designs
1•vinhnx•42m ago•1 comments

How a fake investigation into India, Myanmar rebels went around the world

https://www.altnews.in/the-conspiracy-that-wasnt-how-a-fake-investigation-into-india-myanmar-rebe...
1•thunderbong•43m ago•0 comments

AI as a Design Medium

https://www.harvarddesignmagazine.org/articles/ai-as-a-design-medium-rodenbeck/
1•vinhnx•43m ago•0 comments

Scam calls hunt the lonely, not the gullible

https://pilgrimsage.substack.com/p/the-faceless-voice
2•momentmaker•45m ago•0 comments

Base Fatality List

https://bfl.baseaddict.com/
4•OsrsNeedsf2P•57m ago•0 comments

Investigating Trump's Stock Trades and Public Announcement Timings [video]

https://www.youtube.com/shorts/LEIn9wHJTbw
1•Cider9986•59m ago•0 comments

Syllaby

https://syllaby.io/
1•Austinrmstrong•59m ago•0 comments

New Project Announcement: Radar Pipeline

https://github.com/omid2007hope/My-best-works
2•omid2007hope•1h ago•0 comments

Alexander Grothendieck Revolutionized 20th-Century Mathematics

https://www.quantamagazine.org/how-alexander-grothendieck-revolutionized-20th-century-mathematics...
4•anujbans•1h ago•0 comments

How I Host

https://davepeck.org/2026/05/23/how-i-host/
3•davepeck•1h ago•0 comments

Lenovo releases new 14-inch ThinkPad laptop with up to 120 Hz OLED and 96 GB RAM

https://www.notebookcheck.net/Lenovo-releases-new-14-inch-laptop-with-up-to-120-Hz-OLED-and-96-GB...
2•teleforce•1h ago•4 comments

From Vibe Coding to AI-Assisted Engineering: Lessons from Real Projects

https://medium.com/@eritonsilva/from-vibe-coding-to-ai-assisted-engineering-lessons-from-real-pro...
3•Eritsil•1h ago•0 comments

Micron Virginia expansion advances DDR4 memory made in the USA

https://www.micron.com/us-expansion/va
3•walterbell•1h ago•1 comments

Linus Torvalds: Linux 7.1-rc4

https://lkml.org/lkml/2026/5/17/896
7•vnykmshr•1h ago•1 comments

Who Is the King of Memorial Day Weekend Movies? We Ranked the Biggest Stars

https://editorial.rottentomatoes.com/article/memorial-day-weekend-movie-stars-ranked/
3•evo_9•1h ago•0 comments

Anthropic Says Mythos Has Found More Than 10k Vulnerabilities

https://www.engadget.com/2180028/anthropic-claude-mythos-preview-project-glasswing-update/
3•jonbaer•1h ago•3 comments

Clickup Reduced Headcount by 22%

https://twitter.com/DJ_CURFEW/status/2057522382315929802
6•ankit84•1h ago•2 comments

Show HN: Slow Code, a monthly meetup to practice coding by hand

3•virgil_disgr4ce•2h ago•1 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