frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Agent Security: Authentication, Tool Access, and Defense in Depth

https://chatbotkit.com/guides/ai-agent-security-guide
1•_pdp_•2m ago•0 comments

Why Falling Cats Always Seem to Land on Their Feet

https://www.nytimes.com/2026/03/11/science/falling-cat-problem.html
1•breve•3m ago•0 comments

Is MCP Dead?

https://medium.com/@flamehaven/is-mcp-really-dead-a-history-of-ai-hype-told-through-the-rise-and-...
1•interpol_p•5m ago•0 comments

OBS Studio 32.1 Released with WebRTC Simulcast Support

https://www.phoronix.com/news/OBS-Studio-32.1-Released
1•mikece•6m ago•0 comments

NVIDIA Nemotron 3 Super

https://twitter.com/ctnzr/status/2031762077325406428
1•tosh•9m ago•0 comments

Solid Wood Legs: Maximum Stability for Top-Heavy Mirror Units

https://dreamhomestore.co.uk/collections/dressing-tables
1•johnfloyd2k9•10m ago•1 comments

Iran appears to have conducted a significant cyberattack against a U.S. company

https://www.nbcnews.com/world/iran/iran-appears-conducted-significant-cyberattack-us-company-firs...
1•chrisjj•12m ago•1 comments

Show HN: Detect when an LLM silently changes behavior for the same prompt

https://github.com/aelitium-dev/aelitium-v3
1•catarina_eng•12m ago•1 comments

Top news shared by the people you trust

https://sill.social
1•doener•14m ago•0 comments

1968 My Lai Massacre

https://en.wikipedia.org/wiki/My_Lai_massacre
1•simonebrunozzi•16m ago•0 comments

What Happened to A2A Protocol?

https://www.credal.ai/blog/what-happened-to-a2a-protocol
1•makaimc•17m ago•0 comments

Show HN: I built a screen recorder with automatic zoom effects

https://rookieclip.com/
2•this-is-shreya•20m ago•3 comments

Microsoft adding Xbox mode to Windows 11

https://www.theregister.com/2026/03/12/xbox_mode_windows_11/
1•Brajeshwar•23m ago•1 comments

Show HN: MeepaChat – Slack for AI Agents (iOS, macOS, Web / Cloud, Self-Hosted)

https://github.com/bogpad/meepachat
2•beasubs•25m ago•1 comments

Addressing GitHub's recent availability issues

https://github.blog/news-insights/company-news/addressing-githubs-recent-availability-issues-2/
1•mvcosta91•25m ago•0 comments

Show HN: VmExit – an experiment in AI-native computing

https://vmexit.dev
2•bgleb•26m ago•0 comments

Generic Tech Company Art Style Woman Devouring Her Son (2021)

https://jemima.design.blog/2021/02/08/generic-tech-company-art-style-woman-devouring-her-son/
1•darkwater•28m ago•0 comments

Hurdles of Migrating from Discord to self hosted Matrix

https://www.310networks.com/posts/moving-from-discord-to-selfhosted-matrix/
2•kookster310•29m ago•0 comments

Wegovy may have highest 'eye stroke' and sight loss risk of GLP-1 agonists

https://bmjgroup.com/wegovy-may-have-highest-eye-stroke-and-sight-loss-risk-of-semaglutide-glp-1-...
2•giuliomagnifico•30m ago•0 comments

SlackClaw: OpenClaw Slack Intergration in One Click

https://www.slackclaw.ai
1•saroyas•34m ago•3 comments

Claude 4.6 Opus can recite Linux's list.h

3•itzmetanjim•35m ago•0 comments

Infinitely Recursive Game of Life

https://oimo.io/works/life/
1•marvinborner•36m ago•0 comments

What If Iceland Freezes Over?

https://newsletter-cdn.europeancorrespondent.com/go/vmztjo18oddwailb7esghf598bqlk8mwxv5wgo4gc17v/...
2•donohoe•37m ago•0 comments

Show HN: I built Chronoscope, because Google Maps won't let you visit 3400 BCE

https://shiphappens.xyz/chronoscope/
2•tinkeringtechie•38m ago•2 comments

How to instantly be better at things

https://usefulfictions.substack.com/p/how-to-instantly-be-better-at-anything
2•kiyanwang•40m ago•0 comments

Ask HN: Should training bottleneck detection be a product or just a feature?

1•traceopt-ai•41m ago•0 comments

Ask HN: Are you not using Claude and successful developer?

1•roschdal•41m ago•1 comments

Platform 37: New London Google Office for AI

https://blog.google/company-news/inside-google/around-the-globe/google-europe/united-kingdom/plat...
2•kerim-ca•41m ago•0 comments

Coders Coded Their Job Away. Why Are So Many of Them Happy About It?

https://www.nytimes.com/2026/03/12/magazine/ai-coding-programming-jobs-claude-chatgpt.html
4•angst•42m ago•1 comments

PC price hikes and a test for Taiwan

https://www.ft.com/content/3cf40ec8-4ded-4089-b38b-4d62345c020c
1•Brajeshwar•42m ago•0 comments
Open in hackernews

Ask HN: Any good tools to pgdump multi tenant database?

3•polishdude20•9mo 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•9mo 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•9mo 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•9mo 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•9mo 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•9mo ago
Oh yes I agree with you. It may become a big push to convince my org to do that