frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Not Cool

https://placesjournal.org/article/not-cool-paris-heatwave-climate-sustainability/
1•littlexsparkee•3m ago•0 comments

Pangram Has Emerged as the Gold Standard of AI Detection. Should You Trust It?

https://www.wired.com/story/pangram-has-emerged-as-the-gold-standard-of-ai-detection/
1•bko•6m ago•0 comments

Mammut vs. Arc'terx – Brand Comparisons

https://www.lydiascapes.com/mammut-vs-arcteryx-brand-comparison/
1•Cider9986•7m ago•0 comments

Simple Is Not Small

https://jyn.dev/simple-is-not-the-same-as-small/
1•zdw•10m ago•0 comments

Navigating Code Reviews as a Code Author [video]

https://www.youtube.com/watch?v=zygtgvHp_MM
1•BiraIgnacio•11m ago•0 comments

Stop obsessing about the goddamn robot

https://despairlabs.com/blog/posts/2026-09-03-stop-obsessing-about-the-robot/
2•zdw•15m ago•0 comments

Tell HN: The Thoughts and Woes of a Full-Time Founder Part 1

2•lcampbellsoup•15m ago•0 comments

Ant Group open-sources LingBot-Vision for dense spatial perception

https://github.com/Robbyant/lingbot-vision
1•fourfire•16m ago•0 comments

Balance of Power Geopolitics in the Nuclear Age (1985)

https://archive.org/details/msdos_Balance_of_Power_1985
1•Levitating•19m ago•0 comments

The Death of Educational Content on YouTube [video]

https://www.youtube.com/watch?v=-Gnrp_caPvo
4•jahnu•20m ago•0 comments

Microsoft to impose time limits on Xbox cloud gaming subscribers

https://www.cnbc.com/2026/09/03/microsoft-xbox-game-pass-cloud-limits.html
1•bluedino•21m ago•0 comments

Hugging Face is too important to fall into Nvidia's hands

https://www.theregister.com/ai-and-ml/2026/09/03/hugging-face-is-too-important-to-fall-into-nvidi...
5•mdp2021•24m ago•2 comments

18 Ways You Can Use a Domain Name

https://www.developeddomains.com/strategies/
1•bhartzer•30m ago•0 comments

Nvidia Personal AI Router (Pair)

https://www.nvidia.com/en-us/ai-on-rtx/personal-ai-router/
3•BiraIgnacio•30m ago•0 comments

Show HN: Photosynthesis – iPhone app captures from 2 lenses, stitches to 1 photo

https://apps.apple.com/us/app/photosynthesis-2-lens-camera/id6780102370
1•sajomes•30m ago•0 comments

Hanzi Writer: JavaScript library for Chinese stroke order animations and quizzes

https://hanziwriter.org/
1•rahimnathwani•31m ago•0 comments

56k.rip – the 1996 dial-up internet experience

https://56k.rip/
2•thunderbong•32m ago•0 comments

The Multiplayer AI Manifesto

https://multiplayer-ai.com/
4•ibrahima•34m ago•0 comments

Show HN: Chrome tab group cleaner for Claude Code created tab groups

https://github.com/franzenzenhofer/chrome-tab-group-cleaner
1•franze•42m ago•0 comments

NYC mayor Mamdani imposes 1 year ban on AI for schools through 8th grade

https://www.nyc.gov/mayors-office/news/2026/09/mayor-mamdani-and-chancellor-samuels-put-students-...
15•DeepLogin•43m ago•5 comments

GTP-6 Astra

https://www.youtube.com/watch?v=1QNsdr-Qx_I
2•htk•46m ago•0 comments

Show HN: If I had to design a nuclear fusion power plant(Idea Sketch)

https://github.com/PJHkorea/discrete-filament-router
2•PJHkorea•46m ago•0 comments

4K Analog Video Feedback Device

https://www.youtube.com/watch?v=koDCabeh5kQ
1•CharlesW•46m ago•0 comments

macOS 27 Simulator by OpenAI Astra

https://macos-27-simulator.mweinbach.chatgpt.site/
2•tristanj•47m ago•2 comments

Coder's registry infrastructure compromised to push malicious modules

https://www.bleepingcomputer.com/news/security/coders-registry-infrastructure-compromised-to-push...
2•sbulaev•50m ago•0 comments

(George) Lucas Museum of Narrative Arts

https://lucasmuseum.org
3•rawgabbit•50m ago•0 comments

Star Trek S01e20 "Court Marshall"

https://en.wikipedia.org/wiki/Court_Martial_(Star_Trek:_The_Original_Series)
2•Jimmc414•52m ago•0 comments

Protecting Engineers' Skills in the AI Era

https://spectrum.ieee.org/ai-engineer-skills
20•rbanffy•57m ago•12 comments

There are many agent harnesses, but this one is mine

https://earendil.com/posts/there-are-many-agent-harnesses-but-this-one-is-mine/
1•zdw•1h ago•0 comments

Anxious or outgoing? Study links Big Five personality traits to genetic variants

https://www.nature.com/articles/d41586-026-02761-5
2•geneticdrifts•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