frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Remote work offers flexibility–but at what cost to young workers' learning?

https://theconversation.com/remote-work-offers-flexibility-but-at-what-cost-to-learning-opportuni...
3•billybuckwheat•4m ago•0 comments

ClipBox – a local-first smart clipboard for Apple devices

https://apps.apple.com/us/app/clipboard-manager-clipbox/id1036140929
1•nitingohel•5m ago•1 comments

Show HN: I built a real-time translator for Google Meet

https://meelang.com/
1•BrucecarlL•7m ago•1 comments

Show HN: Verb Authority – per-argument authority checks for AI tool calls

https://github.com/yairsabag/verb-authority
1•yairsabag•10m ago•0 comments

Are We at War with AI Agent "Civilizations"?

https://calnewport.com/are-we-at-war-with-ai-agent-civilizations/
1•imartin2k•11m ago•0 comments

AI – Safe and Cheap?

1•mbinatorom•13m ago•0 comments

What is the value as RAG for coding AGENTS

1•juntz•17m ago•0 comments

Aztecs by Inga Clendinnen: Disorienting and nauseating as cosmic horror itself

https://www.thepsmiths.com/p/review-aztecs-by-inga-clendinnen
2•alchemist1e9•18m ago•0 comments

What's new in Svelte: September 2026

https://svelte.dev/blog/whats-new-in-svelte-september-2026
1•ErenayDev•19m ago•0 comments

Show HN: ChatGPT Work Isn't Working

https://twitter.com/ChatGPT/status/2094492935190663376
1•skwasimin•21m ago•0 comments

Anthropic paused some AI training after Claude took unauthorized actions

https://www.axios.com/2026/09/01/anthropic-paused-some-ai-training-after-claude-took-unauthorized...
2•theanonymousone•23m ago•0 comments

Ask HN: Is Vibe coding the frontend okay for someone who is expert in DevOps?

3•skwasimin•28m ago•4 comments

Chinese court freezes $300M of Dutch chipmaker Nexperia assets in Wingtech case

https://www.reuters.com/world/asia-pacific/chinese-court-freezes-dutch-chipmaker-nexperia-bvs-sta...
5•giuliomagnifico•38m ago•0 comments

What the Hugging Face / Artifactory exploit teaches us about good UX for agents

https://crosswalk.to/blog/agents-shared-state-artifactory
1•jase_jase•46m ago•0 comments

Sony Music, Warner sue Anthropic for intellectual property theft

https://techcrunch.com/2026/08/29/sony-music-warner-sue-anthropic-alleging-a-brazen-campaign-of-i...
1•edg5000•46m ago•0 comments

Show HN: Codex Skin, a plugin for applying themes

https://codexskin.ai/
2•JohnYuan97•47m ago•0 comments

Determining when to delegate to AI, and when to keep it strictly in my own hands

https://rivetrune.com/notes/where-the-tool-stops/
1•rivetrune•54m ago•0 comments

AI Can Make You Suck Faster Too

https://www.hermit-tech.com/blog/ai-can-make-you-suck-faster-too
20•degamad•55m ago•7 comments

Show HN: Mcpbeat – I pinged 26,000 MCP servers; 2,300 are dead

https://mcpbeat.com
1•theevoq•56m ago•0 comments

Show HN: I've opensourced SaaS that was started in 2012

https://github.com/dbtiunov/sails-crm
1•dimatiu•59m ago•1 comments

The Firm – an agent-run org with a DID-signed public ledger

https://x402desk.vercel.app/join?src=hn
1•QuillHarbor•1h ago•0 comments

TimesFM-3: A zero-shot foundation model for multivariate forecasting

https://research.google/blog/timesfm-3-a-zero-shot-foundation-model-for-multivariate-forecasting/
2•GaggiX•1h ago•0 comments

Celeris-1 Magnus: Fast hybrid diffusion model for agentic work

https://celeris.ai/celeris-1-magnus
1•mjshashank•1h ago•0 comments

"A Prospectus for a New Magazine"

https://artmuseum.princeton.edu/art/collections/objects/136930
1•js2•1h ago•0 comments

Closing in on the Markdown Book

https://www.thurrott.com/paul/340890/closing-in-on-the-markdown-book
1•theanonymousone•1h ago•0 comments

A mysterious drone. A Mercedes RV. A Chinese intelligence puzzle in the New Mexi

https://www.cnn.com/2026/08/31/politics/drone-incursions-us-bases-chinese-spies
3•pir8life4me•1h ago•1 comments

AMD unveils next-generation RDNA and PlayStation tech with Sony (2025)

https://overclock3d.net/news/gpu-displays/amd-unveils-next-generation-rdna-and-playstation-tech-w...
2•peter_d_sherman•1h ago•1 comments

Dissociation Isn't Always a Trauma Response

https://www.psychologytoday.com/us/blog/the-neurodivergent-psychologist/202608/dissociation-isnt-...
4•thebeardisred•1h ago•0 comments

Vermell – Minimal, dependency-free C++ web framework using epoll

https://github.com/vermellcc/vermell
14•standar-donkey•1h ago•5 comments

Lapce – fast and powerful code editor

https://lap.dev/lapce/
3•jcbhmr•1h 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