frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The fastest coding agent for offline usage?

https://github.com/gni/maquis
1•opensecurity•2m ago•1 comments

Against Claudefishing – AI detection feature on Substack

https://post.substack.com/p/against-claudefishing
1•pixelesque•2m ago•0 comments

Separating Description from Interpretation to Preserve Theoretical Reusability

https://zenodo.org/records/21362371
1•ErystelaThevale•3m ago•0 comments

Fly Up the Delaware

https://www.inquirer.com/news/inq2/delaware-river-islands-pennsylvania-new-jersey-20260721.html
1•caditinpiscinam•3m ago•0 comments

Kubernetes won the container decade. Google's Agent Substrate wants the next one

https://thenewstack.io/kubernetes-ai-agent-runtime/
1•ryan_j_naughton•4m ago•0 comments

The Floating Piers

https://en.wikipedia.org/wiki/The_Floating_Piers
1•simonebrunozzi•7m ago•0 comments

Peekinduck: AI voice agents that run B2B SaaS demos, onboarding, and support

https://peekinduck.ai/
1•cgchen•8m ago•0 comments

J-Space Oddity: Do VLMs Dream of Text Tokens?

https://ykumar.me/blog/j-space-oddity/
1•ykumards•8m ago•0 comments

Pixar Bears Brunt of Disney Studio Layoffs as Company Axes Several Hundred

https://variety.com/2026/film/news/pixar-layoffs-disney-studios-several-hundred-employees-1236817...
1•ourmandave•10m ago•0 comments

Ask HN: What's your experience with GPT-Live been like?

1•caveman23•11m ago•0 comments

The Sandboxing Manifesto for Agentic Execution

https://www.nofire.ai/blog/the-sandboxing-manifesto
4•spirosoik•11m ago•0 comments

Show HN: A game to get people out in nature and appreciating wild animals

https://playanimalis.com/
2•robert-whiteley•12m ago•0 comments

Show HN: DocCharm – The help center that keeps itself up to date

https://doccharm.com/
1•yakshaving_jgt•12m ago•0 comments

Jack Mallers leaves Twenty One as Strike exits Tether's three-way Bitcoin merger

https://www.theblock.co/post/409075/jack-mallers-leaves-twenty-one-as-strike-exits-tethers-three-...
1•washedup•13m ago•0 comments

Odyssey – A Text Based Adventure

https://odyssey.learntosolveit.com/
1•orsenthil•14m ago•1 comments

Show HN: In Meeting – A native macOS Mic/Cam observer for home automation

https://github.com/fellowgeek/in-meeting
2•pcbmaker20•14m ago•0 comments

Building Service Topology at Scale: Architecture, Challenges, Lessons Learned

https://netflixtechblog.com/building-service-topology-at-scale-architecture-challenges-and-lesson...
1•jjtang1•16m ago•0 comments

Hugging Face discloses breach linked to autonomous AI agent

https://www.bleepingcomputer.com/news/security/hugging-face-breach-autonomous-ai-agent-system-int...
2•Brajeshwar•16m ago•0 comments

Show HN: Imagin Raw – A 9MB Open-Source Alternative to Adobe Bridge for Mac

https://github.com/cristibaluta/Imagin-Raw
4•cristi_baluta•17m ago•0 comments

Augustus raises $180M to build a clearing bank for the AI and stablecoin era

https://www.coindesk.com/business/2026/07/21/augustus-raises-usd180-million-to-build-a-clearing-b...
1•AnhTho_FR•19m ago•0 comments

Google vs. SerpApi: The Court Granted Our Motion to Dismiss

https://serpapi.com/blog/google-v-serpapi-the-court-granted-our-motion-to-dismiss/
2•SerpApi•19m ago•0 comments

Firefox Containers Preview

https://blog.mozilla.org/en/firefox/firefox-containers-preview/
5•twapi•19m ago•0 comments

Show HN: Quartz – A (much) better Voice Memos app (iPhone)

https://www.madebywindmill.com/quartz/
4•jscalo•23m ago•1 comments

Guard-AI – A security linter for AI-generated code

https://github.com/Karthikvk1899/guard-ai
1•karthikvk1899•23m ago•0 comments

Apple to launch 'upgrade' device leasing program with Klarna to spur sales

https://www.bloomberg.com/news/articles/2026-07-21/apple-to-launch-upgrade-device-leasing-program...
6•anigbrowl•24m ago•0 comments

Show HN: I built a command palette for the terminal – 6.2MB, pure Go, no fzf

https://github.com/matheuzgomes/decoreba
12•MarinhoD•25m ago•2 comments

World Labs acquires SceniX

https://twitter.com/drfeifei/status/2079597384510898377
2•dmarcos•26m ago•0 comments

Apache Spark 4.2: Making Your Data AI‑Developer Friendly

https://techstrong.it/featured/apache-spark-4-2-making-your-data-ai-developer-friendly/
5•CrankyBear•26m ago•0 comments

Build a Basic AI Agent from Scratch: Security II

https://www.ruxu.dev/articles/ai/build-an-ai-agent-security-2/
1•ruxudev•26m ago•0 comments

Soulless

https://sebas.fika.bar/soulless-01KVT6WJVSPF5ZTHWNZPZNEGJ9
3•smtx•26m 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