frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Reunderstanding the Power of AI Through Reverse Engineering

https://blog.huli.tw/2026/04/18/en/ai-reverse-engineering-op/
1•swq115•2m ago•0 comments

US freezes $344M in cryptocurrency said to be linked to Iran

https://www.cnn.com/2026/04/24/politics/us-freezes-cryptocurrency-iran
1•maxloh•3m ago•0 comments

Openpi-flash: Real-time inference engine for openpi

https://github.com/Hebbian-Robotics/openpi-flash
1•kstonekuan•3m ago•0 comments

Advocacy groups issue US travel advisory ahead of World Cup

https://www.washingtonblade.com/2026/04/29/advocacy-groups-issue-us-travel-advisory-ahead-of-worl...
1•latexr•5m ago•0 comments

Andrej Karpathy: From Vibe Coding to Agentic Engineering [video]

https://www.youtube.com/watch?v=96jN2OCOfLs
1•vinhnx•10m ago•0 comments

Do birds have accents? the regional differences in birdsong

https://theconversation.com/do-birds-have-accents-the-fascinating-regional-differences-in-birdson...
1•zeristor•12m ago•0 comments

Foundations of Metrology(1981) [pdf]

https://nvlpubs.nist.gov/nistpubs/jres/086/jresv86n3p281_A1b.pdf
1•pillars•19m ago•0 comments

Show HN: Self hosted video feed for children

https://github.com/vkolev/timmygram-server
1•vkolev•20m ago•0 comments

Open Source Does Not Imply Open Community

https://blog.feld.me/posts/2026/04/open-source-does-not-imply-open-community/
3•zdw•20m ago•1 comments

James Broadnax Executed After Being Sentenced to Death Based on Rap Lyrics

https://www.rollingstone.com/culture/culture-news/james-broadnax-executed-rap-lyrics-texas-123555...
1•latexr•21m ago•1 comments

Where would an offline fail-closed supervisor be useful?

https://madadh.systems
1•MADADAHSYSTEMS•26m ago•0 comments

CSS and vertical rhythm for text, images, and tables

https://vincent.bernat.ch/en/blog/2026-css-vertical-rhythm
1•vbernat•29m ago•0 comments

Sniffing EU Smart Meters with a Flipper Zero (WM-Bus / 868MHz)

https://github.com/i12bp8/wmbuster
1•i12bp8•33m ago•0 comments

GlowGoblin – a gift to mb pro users

https://github.com/jtc268/glowgoblin
1•husky8•37m ago•0 comments

Japan intervened in its Curreny price

https://www.fxstreet.com/news/usd-jpy-drops-over-2-as-intervention-warnings-lift-yen-after-move-a...
1•mark336•39m ago•1 comments

US telecom agency votes to expand tech crackdown on China

https://www.reuters.com/business/media-telecom/us-telecom-agency-votes-expand-tech-crackdown-chin...
2•l2dy•39m ago•0 comments

Anthropic Model inference runs fastest on AWS

https://twitter.com/theo/status/2050078772507124134
1•albert_e•39m ago•0 comments

How People ask Claude for personal guidance

https://www.anthropic.com/research/claude-personal-guidance
1•pseudolus•40m ago•0 comments

No action taken against PimEyes: noyb lawsuit against Hamburg DPA

https://noyb.eu/en/no-action-taken-against-pimeyes-noyb-lawsuit-against-hamburg-dpa
1•latexr•42m ago•0 comments

The Starlink hack that doomed Russian troops [video]

https://www.thetimes.com/video/originals/article/starlink-hack-doomed-russian-troops-jgr0w9jkp
1•petethomas•46m ago•0 comments

Insights into software job openings – may2026

https://corvi.careers/blog/global_software-engineering_jobs_may_2026/
2•sp1982•49m ago•0 comments

Shivon Zilis Operated as Elon Musk's OpenAI Insider

https://www.wired.com/story/model-behavior-why-everything-in-musk-v-altman-leads-back-to-shivon-z...
2•aanet•58m ago•0 comments

Japan Airlines begins humanoid robot trials at Tokyo's Haneda airport as labor s

https://www.cnbc.com/2026/05/01/japan-airlines-humanoid-robots-haneda-labor-shortage.html
2•bookmtn•1h ago•0 comments

Elon Musk Seemingly Admits xAI Has Used OpenAI's Models to Train Its Own

https://www.wired.com/story/elon-musk-distill-openai-models-partly-xai/
5•satai•1h ago•0 comments

LA-SF rail will cost about $126B, with service beginning around 2040

https://ktla.com/news/california/california-high-speed-rail-cost-increase/
3•swyx•1h ago•1 comments

Show HN: Git repositories hosted directly on Freenet

https://github.com/freenet/freenet-git
3•sanity•1h ago•0 comments

U.S. Aims to Penalize Disabled Adults Who Live with Their Families

https://www.propublica.org/article/trump-social-security-ssi-disability-benefits-cuts-parents-chi...
4•petethomas•1h ago•0 comments

AliothPress – self-hosted, cloud-native CMS with a wizard-based installation

https://aliothpress.com/
3•Strodt•1h ago•0 comments

One solar storm could trigger a catastrophic collision in orbit

https://spectrum.ieee.org/kessler-syndrome-crash-clock
2•thread_id•1h ago•0 comments

Show HN: A vdom-less framework that's local first

https://github.com/terajs/terajs
2•thecodergabe•1h 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