frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Slow Grind That Sets You Free

https://medium.com/@naveensky/the-slow-grind-that-sets-you-free-97abd8b9bf2c
1•naveensky•6m ago•0 comments

What kind of grownup I want to be

https://sashachapin.substack.com/p/what-kind-of-grownup-i-want-to-be
1•eatitraw•15m ago•0 comments

Rock Paper Scissors Is Not Solved, in Practice

https://inchpin.substack.com/p/rock-paper-scissors-is-not-solved
1•eatitraw•16m ago•0 comments

Better GitHub Notifications Dashboard

https://github-notifications.dev/
2•shrimalmadhur•16m ago•0 comments

Crypto hoarding company shares under pressure as risk appetite wanes

https://www.reuters.com/business/finance/crypto-hoarding-company-shares-under-pressure-risk-appet...
2•1vuio0pswjnm7•17m ago•0 comments

Italy's Competition Watchdog Broadens WhatsApp AI Policy Probe

https://www.wsj.com/tech/ai/italys-competition-watchdog-broadens-whatsapp-ai-policy-probe-64c904cd
2•1vuio0pswjnm7•21m ago•0 comments

X402 – protocol for micropayments and the rise of an agentic economy

https://oasis.net/blog/x402-https-internet-native-payments
1•adrianwaj•24m ago•1 comments

Show HN: Tacopy – Tail Call Optimization for Python

https://github.com/raaidrt/tacopy
1•raaid-rt•28m ago•0 comments

CrowdStrike: Security Flaws DeepSeek-Generated Code Linked to Political Triggers

https://www.crowdstrike.com/en-us/blog/crowdstrike-researchers-identify-hidden-vulnerabilities-ai...
2•fosco•29m ago•1 comments

Harvard Database Hacked in Latest Ivy League Cyberattacks

https://www.bloomberg.com/news/articles/2025-11-22/harvard-hacked-in-most-recent-case-of-ivy-leag...
1•1vuio0pswjnm7•34m ago•0 comments

Best Free Headshot Generator 2026: 9 AI Tools Tested and Compared

https://www.aiheadshotreviews.com/articles/best-free-headshot-generator
1•naveensky•40m ago•1 comments

Why Jailbreaking Calculators Is (Unfortunately) a Thing Now [video]

https://www.youtube.com/watch?v=3a-X6FZfl2Y
2•josephcsible•41m ago•0 comments

Discord for LLMs in a single 3.7k-line HTML file

https://modelarena.xyz
2•Estrick•43m ago•1 comments

Onion AI – AI Poster Maker

https://onionai.so/en
1•ovelv•50m ago•0 comments

Ask HN: How can we measure AI's impact on global developer productivity?

2•obilgic•53m ago•1 comments

Listen to music like it's 2005

https://lukecyca.com/2025/listen-to-music-like-its-2005.html
2•ireflect•59m ago•0 comments

Dennis Sullivan: Simplicity Is the Point (2014) [video]

https://www.youtube.com/watch?v=ixc0TNfT0ks
1•vismit2000•1h ago•0 comments

"Many students are simply refusing to do *anything*."

https://bsky.app/profile/jesbattis.bsky.social/post/3m6pvvkojqk2l
6•dougb5•1h ago•0 comments

AI just proved Erdos Problem #124

https://twitter.com/vladtenev/status/1994922827208663383
4•nl•1h ago•0 comments

Decoding Ageing: Blueprint Theory of Ageing [video]

https://www.youtube.com/watch?v=SQAFLDTvQfM
1•escargot•1h ago•0 comments

Show HN: LLM Newsletter Kit – A TypeScript Framework for AI Newsletters

https://github.com/kimhongyeon/llm-newsletter-kit-core
1•hongyeon•1h ago•0 comments

Kopi Luwak

https://en.wikipedia.org/wiki/Kopi_luwak
5•thunderbong•1h ago•0 comments

Tom Stoppard, Award-Winning Playwright of Witty Drama, Dies at 88

https://www.nytimes.com/2025/11/29/theater/tom-stoppard-dead.html
5•mitchbob•1h ago•1 comments

The Markets Aggregating Political Reality

https://freesystems.substack.com/p/inside-the-markets-aggregating-political
1•gwintrob•1h ago•0 comments

Adolescence lasts into 30s – new study shows four pivotal ages for your brain

https://www.bbc.co.uk/news/articles/cgl6klez226o
1•ifh-hn•1h ago•2 comments

Show HN: I built a Web 1.0 budgeting tool, Budget Pro 3000

https://budgetpro3000.com
1•adrianvxyz•1h ago•0 comments

Do we need a new GitHub for AI coding era?

https://github.com/memovai/memov
2•ssslvky1•1h ago•2 comments

Welcome to My Andrew Lloyd Website

https://andrewlloydwebsite.neocities.org/
1•nxobject•1h ago•0 comments

Steven Pinker's Cheesecake for the Mind (1998)

http://cogweb.ucla.edu/Abstracts/Carroll_C98.html
4•lioeters•2h ago•1 comments

Show HN: iOS Old App Downloader 2 [video]

https://www.youtube.com/watch?v=xuX6alPg1yQ
1•txthinking•2h ago•0 comments
Open in hackernews

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

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