frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tell HN: Anthropic no longer allows you to fix to specific model version

1•baobabKoodaa•33s ago•0 comments

WordPress Manifesto – 15 Years In, Here's What's Broken

https://marcindudek.dev/blog/wordpress-manifesto/
1•ValentineC•4m ago•0 comments

A Sociologist's Take on the Artemis Moon Round-Trip

https://discursiveanomalies.com/2026/04/15/a-sociologists-take-on-the-artemis-moon-round-trip/
1•panic•6m ago•0 comments

KeePassChi

https://codeberg.org/keepasschi
1•LeoPanthera•6m ago•0 comments

Viral victory: Iran is beating the land of tech bros in the social media wars

https://www.theguardian.com/world/2026/apr/15/iran-beating-us-social-media-wars
2•hebelehubele•8m ago•0 comments

Omega Constant

https://en.wikipedia.org/wiki/Omega_constant
1•cl3misch•9m ago•0 comments

Microsoft Raises Prices for All Surface PCs, Higher Than Mac Equivalents

https://www.macrumors.com/2026/04/14/microsoft-surface-pc-price-hike/
2•mgh2•12m ago•1 comments

Meeting Myself Again: Conversations in the Dark

https://www.patreon.com/posts/155646763
1•raynchad•12m ago•0 comments

Flinku – I built a Firebase Dynamic Links replacement after the shutdown

https://www.flinku.dev/
1•luky_dev•13m ago•0 comments

What if you didn't need to write back end code for your app?

https://linkedrecords.com/getting-started/
1•WolfOliver•16m ago•1 comments

Coupling (Computer Programming)

https://en.wikipedia.org/wiki/Coupling_(computer_programming)
1•downboots•19m ago•0 comments

NASA's Artemis Moon Mission Was a State Failure and a Human Triumph

https://www.bloomberg.com/opinion/features/2026-04-14/nasa-s-artemis-moon-mission-was-a-state-fai...
1•helsinkiandrew•22m ago•1 comments

Curriculum 68: Recommendations for academic programs in Computer Science

https://www.slideshare.net/slideshow/curriculum-68-recommendations-for-academic-programs-in-compu...
1•pramodbiligiri•23m ago•0 comments

Generative AI in 2016 [video]

https://www.youtube.com/watch?v=sfFTvtwLCaU
1•frag•24m ago•0 comments

High-temperature memristors enabled by interfacial engineering

https://www.science.org/doi/10.1126/science.aeb9934
2•joak•29m ago•1 comments

Amazon to Acquire Globalstar and Expand Amazon Leo Satellite Network

https://www.businesswire.com/news/home/20260414237496/en/Amazon-to-Acquire-Globalstar-and-Expand-...
12•homarp•30m ago•0 comments

Qwen OAuth Free tier will be discontinued on 2026-04-15

https://github.com/QwenLM/qwen-code/pull/3207
2•angst•32m ago•0 comments

Roy Fielding's Misappropriated REST Dissertation (2020)

https://twobithistory.org/2020/06/28/rest.html
1•locknitpicker•34m ago•0 comments

REST APIs must be hypertext-driven (2008)

https://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven
2•locknitpicker•36m ago•1 comments

The 'Annoyance Economy' Is More Than Just Annoying

https://www.nytimes.com/2026/04/12/business/annoyance-economy-costs.html
1•vinni2•37m ago•0 comments

Unidentified deep sea creature encountered off the coast of Japan

https://phys.org/news/2026-04-rich-biodiversity-japan-deepest-ocean.html
2•lfaw•38m ago•1 comments

Chris Taylor on AI (2005)

https://main.kanoogi.com/updates?updates=kanoogi_updates&topic=0013#blogstart
1•fho•39m ago•0 comments

ASML raises 2026 sales outlook to €36B–€40B

https://www.asml.com/en/news/press-releases/2026/q1-2026-financial-results
2•felipevb•42m ago•0 comments

Acid-Free Paper

https://en.wikipedia.org/wiki/Acid-free_paper
2•tosh•44m ago•0 comments

Burn Peak Health for Healthy Weight Management [pdf]

https://storage.prod.researchhub.com/uploads/papers/users/187827/aceef47a-9ba6-48db-b4f1-eebb0107...
1•Zacspencet•45m ago•0 comments

LazyVim for Ambitious Developers: Second Edition

https://www.patreon.com/posts/lazyvim-for-155631128
1•DavideNL•47m ago•0 comments

People are pretending to be AI chatbots – for fun

https://www.npr.org/2026/04/14/nx-s1-5776842/ai-chatbot-comedy-ben-palmer-chatgpt
5•geox•49m ago•0 comments

Show HN: My favorite local-feeling remotely accessible Claude Code setup

https://gist.github.com/Reebz/99db98ad4d3c45ebed84989a13710788
3•Reebz•53m ago•0 comments

Capture the Narrative: Wargaming Social Media Manipulation

https://capturethenarrative.com/
2•jruohonen•56m ago•0 comments

Popular Flutter GetX repo disappeared briefly

https://github.com/jonataslaw/getx
1•nativeforks•56m 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•10mo 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