frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Global Flood Hub by Google

https://sites.research.google/floods/
2•teleforce•2m ago•0 comments

Ninth Circuit Guts California's Kids Code Once Again

https://www.techdirt.com/2026/03/13/ninth-circuit-guts-californias-kids-code-once-again/
2•hn_acker•3m ago•0 comments

Did I photograph the Aurora or was it something else? (2016)

https://wp.lancs.ac.uk/aurorawatchuk/2016/03/16/did-i-photgraph-the-aurora-or-was-it-something-else/
1•susam•6m ago•0 comments

What changes happen in the aging brain?

https://www.salk.edu/news-release/what-changes-happen-in-the-aging-brain/
2•hhs•7m ago•0 comments

Email as the Context Substrate for Ambient AI Agents

https://revo.ai/blog/email-context-substrate-ambient-ai-agents
1•mehdidjabri•7m ago•0 comments

Probabilistic Machine Learning: An Introduction

https://probml.github.io/pml-book/book1.html
1•teleforce•7m ago•0 comments

The Perfect Weapon: David E. Sanger (2021) [video]

https://www.youtube.com/watch?v=jR6lGSIQbRQ
1•abdelhousni•8m ago•1 comments

Generate tests from GitHub pull requests

2•Aamir21•10m ago•0 comments

Anti-ICE protesters accused of being part of Antifa found guilty of terrorism

https://www.theguardian.com/us-news/2026/mar/13/texas-terrorism-trial
3•gizzlon•10m ago•1 comments

IRS System for Sharing Data Would Accept ‘Don’t Care 12345’ as Valid Address

https://www.techdirt.com/2026/03/13/the-irss-verification-system-for-sharing-taxpayer-data-with-i...
2•hn_acker•11m ago•1 comments

NASA shows how Sahara desert dust spread all over Europe

https://www.popsci.com/environment/sahara-dust-spread-europe/
2•Brajeshwar•13m ago•0 comments

Show HN: EdgeWhisper – On-device voice-to-text for macOS (Voxtral 4B via MLX)

https://edgewhisper.com
2•raphaelmansuy•14m ago•0 comments

Google sells Fiber stake to Astound, becomes minority owner

https://www.cnbc.com/2026/03/11/google-sells-partial-stake-in-fiber-becomes-minority-owner-in-ven...
2•abawany•18m ago•0 comments

I Found 39 Algolia Admin Keys Exposed Across Open Source Documentation Sites

https://benzimmermann.dev/blog/algolia-docsearch-admin-keys
16•kernelrocks•19m ago•2 comments

From model to agent: Equipping the Responses API with a computer environment

https://openai.com/index/equip-responses-api-computer-environment/
1•vinhnx•19m ago•0 comments

Show HN: PrepFile – AI interview prep briefs from your job description

https://prepfile.work/
1•taureanhall•20m ago•2 comments

What signals do experienced affiliates use to evaluate products?

2•Videostarlord•21m ago•0 comments

Google is using old news reports and AI to predict flash floods

https://techcrunch.com/2026/03/12/google-is-using-old-news-reports-and-ai-to-predict-flash-floods/
2•gmays•22m ago•0 comments

NASA aims for April moon launch with Artemis astronauts

https://apnews.com/article/nasa-artemis-moonshot-launch-d4cee0936115bb4d995272f7e1b921c4
1•gmays•27m ago•0 comments

The Artificial Self

https://theartificialself.ai
1•vinhnx•28m ago•0 comments

Lobbying records for age verification bills traced in removed Reddit post

https://web.archive.org/web/20260313090844/https://old.reddit.com/r/linux/comments/1rshc1f/i_trac...
3•zahlman•30m ago•0 comments

Found AI tool that keeps you from getting dumb

https://www.oddity1.com
2•JoonSPP•32m ago•1 comments

Bringing Software Development Best Practices to PhD-Level Neuroscience Research

https://ideas.tbrianjones.com/posts/2026-03-08-research-engineering/
1•bjones•37m ago•1 comments

Google Fiber will be sold to private equity firm and merge with cable company

https://arstechnica.com/tech-policy/2026/03/google-fiber-will-be-sold-to-private-equity-firm-and-...
8•waits•42m ago•0 comments

Drone strikes in Haiti that killed 1250, 17 children, condemned by rights group

https://haitiantimes.com/2026/03/11/hrw-condemns-haiti-drone-strikes-killing-children/
7•e12e•43m ago•0 comments

Show HN: Open-Source Perplexity Comet and ChatGPT Atlas

https://github.com/copycat-main/browser-assistant
3•a8hi•43m ago•0 comments

Enhanced rock weathering is not yet a reliable climate protection measure

https://phys.org/news/2026-02-weathering-reliable-climate.html
2•PaulHoule•45m ago•0 comments

The forsaken world of Windows Task Scheduler

https://ssg.dev/the-forsaken-world-of-windows-task-scheduler/
1•sedatk•47m ago•0 comments

Ask HN: Why isn't there an open-source model trained by the community?

5•mittermayr•47m ago•3 comments

Met chief gives phone firms deadline over thefts

https://www.bbc.com/news/articles/c77egvep8mdo
1•Cider9986•48m ago•0 comments
Open in hackernews

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

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