frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

When Dawkins Met Claude

https://unherd.com/2026/04/is-ai-the-next-phase-of-evolution/
1•Anon84•1m ago•0 comments

Where to buy a non-Apple, non-Google smartphone

https://www.theregister.com/2026/05/01/buy_a_foss_fondleslab/
1•u1hcw9nx•4m ago•0 comments

Meta buys robotics startup to bolster its humanoid AI ambitions

https://techcrunch.com/2026/05/01/meta-buys-robotics-startup-to-bolster-its-humanoid-ai-ambitions/
2•Brajeshwar•4m ago•0 comments

One photographer's passion project of capturing local newsrooms

https://apnews.com/article/newspapers-newsrooms-photographing-media-f0d0939e04bb66f8d340f6f43df5bf5e
1•thm•4m ago•0 comments

Anthropic potential $900B+ valuation round could happen within 2 weeks

https://techcrunch.com/2026/04/30/anthropic-potential-900b-valuation-round-could-happen-within-tw...
2•wslh•5m ago•0 comments

Ubuntu is adding Generative AI features, and other Linux distros might follow

https://www.neowin.net/news/ubuntu-is-going-all-in-on-generative-ai-and-other-linux-distros-might...
1•bundie•7m ago•0 comments

Man takes robot to airport, gets ticket for it, it gets on plane

https://twitter.com/scottbudman/status/2050321131467653197
1•fragmede•9m ago•0 comments

IPv8 will not work [video]

https://www.youtube.com/watch?v=Uyr8homutII
1•drewr•12m ago•0 comments

Menace on the Streets

https://macleans.ca/longforms/menace-on-the-streets/
1•herbertl•13m ago•0 comments

You'll Subscribe to Your Router, Too – The First Router Bribes Are Here [video]

https://www.youtube.com/watch?v=qjesRkTFZqY
1•01-_-•14m ago•0 comments

Ember 6.12

https://blog.emberjs.com/ember-released-6-12/
2•satvikpendem•16m ago•0 comments

Vibe code with me this Linux system on a browser tab

https://linuxontab.com/
3•kilian-ai•18m ago•1 comments

New Oscars rules: No AI actors, human-written scripts only

https://www.dw.com/en/new-oscars-rules-exclude-ai-performers-require-scripts-written-by-human/a-7...
2•qainsights•19m ago•0 comments

Jonathan Swift's Last Joke

https://www.newyorker.com/culture/the-weekend-essay/jonathan-swifts-last-joke
1•samizdis•21m ago•0 comments

South Africa withdraws AI policy due to fake AI-generated sources

https://www.reuters.com/world/africa/south-africa-withdraws-ai-policy-due-fake-ai-generated-sourc...
3•gnabgib•25m ago•0 comments

The Man Who Built NVIDIA [audio]

https://www.econtalk.org/the-man-who-built-nvidia-with-stephen-witt/
1•mooreds•26m ago•0 comments

Hilariously Useless: Mahalo's Guide to Playing the Xylophone (2011)

https://www.businessinsider.com/check-out-mahalos-hilariously-useless-guide-to-playing-the-xyloph...
1•mooreds•26m ago•1 comments

A terminal Markdown viewer built using Charm libraries

https://github.com/inkcheck/ink
1•geordee•27m ago•0 comments

The Terraform.applying Symbol

https://developer.hashicorp.com/terraform/language/functions/terraform-applying
1•mooreds•27m ago•0 comments

Show HN: Which public repos are friendliest to an AI coding agent?

https://www.agentfriendlycode.com/
2•hsnice16•34m ago•0 comments

Tech layoffs skyrocketed in Q1 2026

https://twitter.com/KobeissiLetter/status/2050630474129719568
1•enraged_camel•36m ago•0 comments

Does Calvin still hurt in practice if you only use it for cross-shard writes?

https://github.com/nodedb-lab/nodedb
1•fs90•37m ago•0 comments

Italian Competition Authority Launches Investigation into Vorwerk (Neato)

https://en.agcm.it/en/media/press-releases/2026/4/PS13069
1•rettichschnidi•41m ago•0 comments

Kids promised 'forever homes' instead confined in for-profit institutions

https://www.ap.org/news-highlights/spotlights/2026/adopted-and-locked-away-kids-promised-forever-...
5•mnky9800n•41m ago•1 comments

Study: AI models that consider user's feeling are more likely to make errors

https://arstechnica.com/ai/2026/05/study-ai-models-that-consider-users-feeling-are-more-likely-to...
1•Brajeshwar•43m ago•0 comments

Canonical Under Attack

https://status.canonical.com
12•ta988•44m ago•1 comments

Linter for data science and statistical experiments

https://github.com/zgornel/DataLinter
1•zg0rnel•48m ago•1 comments

The best AI dictation apps, tested and ranked

https://techcrunch.com/2026/05/02/the-best-ai-powered-dictation-apps-of-2025/
1•oguzhaneksi•52m ago•0 comments

Ask HN: How long do you commute by car each day?

2•roschdal•53m ago•6 comments

LLMs can hide text in other text of the same length

https://arxiv.org/abs/2510.20075
2•m-hodges•55m ago•0 comments
Open in hackernews

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

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