frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: WideMelon - Nintendo DS games in widescreen and a phone touchscreen

https://github.com/pruefsumme/widemelon
1•pruefsumme•2m ago•0 comments

Google/ax: Google's open agentic orchestrator

https://github.com/google/ax
1•polyrand•4m ago•0 comments

What Is Arc?

https://opensea.io/learn/blockchain/what-is-arc
2•Bluestein•7m ago•0 comments

When docs become performance art, everybody loses (2025)

https://passo.uno/documentation-theater-everybody-loses/
2•theletterf•10m ago•0 comments

Global Challenges in AI Safety for Biosecurity

https://www.lesswrong.com/posts/KH2JjfSrw6tJdmKzw/global-challenges-in-ai-safety-for-biosecurity
3•joozio•32m ago•0 comments

OnePlus Settled

https://finshots.in/archive/how-oneplus-settled/
2•vismit2000•41m ago•0 comments

I tried the new Fairphone, a phone designed to be repaired

https://www.fastcompany.com/91608879/i-tried-the-new-fairphone-a-phone-designed-to-be-repaired
6•vismit2000•42m ago•0 comments

Laser Your Way into Debug Mode on the RP2350

https://hackaday.com/2026/09/19/laser-your-way-into-debug-mode-on-the-rp2350/
3•mdp2021•47m ago•0 comments

Show HN: ChatGPT to Word – export a thread to a readable .docx

https://chatgpt2word.com
2•leiships•47m ago•0 comments

Show HN: Website Auditor –> Test your brand's AI visibility, get growth plan

https://website-auditor.io/
2•SpikeyCoder•50m ago•0 comments

Show HN: Web Tools List – browser tools grouped by the job, not the format

https://webtoolslist.com
2•leiships•50m ago•0 comments

Dropbox's Jan 1st 2027 terms of service

https://www.dropbox.com/terms2026
19•simonebrunozzi•52m ago•20 comments

My Dad Died by Suicide. He Left Me with 694 Video Diaries to Explain Why – NYT

https://www.youtube.com/watch?v=Kimur4jkJT8
3•johntfella•54m ago•0 comments

Show HN: Morse Code Translator – real-time text-to-Morse with audio

https://morsetranslator.me/
2•shaliji•55m ago•0 comments

RunMyWealth

https://runmywealth.com/
2•Thecompunder•1h ago•0 comments

Unit tests mark territory more than squash bugs

https://yosefk.com/blog/unit-tests-mark-territory-more-than-squash-bugs.html
2•luu•1h ago•0 comments

Spain Orders Blocks on Archive.today and Its Mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
32•latein•1h ago•9 comments

Free scanner for exposed Supabase data in AI-built apps (Lovable, Bolt, Base44)

https://api.trustboost.dev/free-scan
3•Teocrispin•1h ago•0 comments

Dancing Mania

https://en.wikipedia.org/wiki/Dancing_mania
2•hypnot•1h ago•0 comments

Office Open XML

https://en.wikipedia.org/wiki/Office_Open_XML
3•azhenley•1h ago•0 comments

Here’s How an AI Slowdown An AI Slowdown Could Be Enforced

https://www.wired.com/story/heres-how-an-ai-slowdown-could-actually-work/
3•ent101•1h ago•0 comments

Some Thoughts on the Economics of UPI and MDR

2•pyeri•1h ago•0 comments

AgentSec Audit

https://github.com/hicklax13/agentsec-audit
2•ConnorBHickey13•1h ago•0 comments

OpenAI retiring GPT-5.5 on October 14

https://www.gizmochina.com/2026/09/16/openai-retiring-gpt-5-5-on-october-14-you-may-need-to-updat...
2•f055•1h ago•0 comments

SpriteIt – Feature Rich, Re-designed 2D/3D SpriteSheet Maker

https://ssstand.itch.io/spriteit
2•ssstand•1h ago•1 comments

Seven, Forever

https://github.com/02zerocool/truth-benchmark
2•o2zer0cool•1h ago•0 comments

AI art is theft – on artists, mathematicians impact on AI

https://twitter.com/wordgrammer/status/2101429761528455669
4•diginova•1h ago•0 comments

Show HN: ScoreTail, Browser-based sheet music editor with live collaboration

https://scoretail.com
2•tan-z-tan•1h ago•0 comments

Orchestrating Claude Code Agents: The Chief of Staff Pattern

https://asyncdot.com/blog/chief-of-staff-pattern-orchestrating-claude-code-sessions/
4•octalpixel•1h ago•1 comments

Best Websites to Generate Theme for PowerBi

2•AnasKhalid•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