frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Geo Cold Outreach in My Inbox Is Up 3x

https://www.generativevisibility.com/the-new-category-showing-up-in-my-inbox/
1•jenthoven•33s ago•0 comments

Why Everyone's Picking Up a PSP Again in 2026

https://gardinerbryant.com/psp-in-2026/
2•ecliptik•42s ago•0 comments

Can Good Writing Be Generative?

https://arxiv.org/abs/2601.18353
1•mihau•1m ago•0 comments

No, Windows Start does not use React

https://pathar.tl/blog/no-windows-start-does-not-use-react/
1•pathartl•3m ago•0 comments

Obsidian CLI

https://obsidian.md/help/cli
1•jrgd•4m ago•1 comments

Confronting the CEO of the AI company that impersonated me

https://www.theverge.com
2•inaros•5m ago•0 comments

Secret Hitler LLM Benchmark

https://github.com/jordan-gibbs/secret-hitler-bench
3•jordan_gibbs•10m ago•1 comments

Beyond AI Taking Jobs: When Economy Needs No Human Consumer

https://ralphmao.github.io/AI-humanity/
1•emulbasaka•11m ago•0 comments

Cisco Announces DefenseClaw at RSAC 2026

https://github.com/cisco-ai-defense/defenseclaw
1•Khaine•14m ago•1 comments

Why your guitar goes sharp when you play hard: the Kirchoff–Carrier equation

https://mbmccoy.dev/posts/nonlinear-vibes/
3•_alternator_•18m ago•1 comments

Is ChatGPT a Scrabble Genius, or a Scrabble Disaster?

https://www.youtube.com/watch?v=8opLB1D_RYY
2•doener•18m ago•1 comments

Python Software Foundation turned down Trump admin grant (2025)

https://arstechnica.com/tech-policy/2025/10/python-foundation-rejects-1-5-million-grant-over-trum...
1•PaulDavisThe1st•18m ago•0 comments

Designing AI Chip Software and Hardware

https://docs.google.com/document/d/1dZ3vF8GE8_gx6tl52sOaUVEPq0ybmai1xvu3uk89_is/edit?tab=t.0
2•broune•20m ago•1 comments

Global Petrol Prices

https://www.globalpetrolprices.com/gasoline_prices/
1•greedo•23m ago•0 comments

AI boom risks widening wealth divide, says BlackRock's Larry Fink

https://www.theguardian.com/technology/2026/mar/23/ai-boom-risks-widening-wealth-divide-blackrock...
5•devonnull•25m ago•0 comments

Dusking is a trend aimed at helping people switch off at the end of the day

https://theconversation.com/dusking-is-a-trend-aimed-at-helping-people-switch-off-at-the-end-of-t...
3•zeristor•26m ago•0 comments

SynthVision: Building a 110K Synthetic Medical VQA Dataset

https://huggingface.co/blog/OpenMed/synthvision
1•maziyar•27m ago•1 comments

Gabbard plans to shift coveted, CIA-backed high-tech fund In-Q-Tel to her office

https://www.politico.com/news/2026/03/23/in-q-tel-odni-cia-control-00840302
3•avidruntime•28m ago•0 comments

Philosophical DNA

https://diagnostic.millermanschool.com/
1•iamjfu•28m ago•0 comments

Where Should the Agent(s) Live?

https://opencomputer.dev/blog/where-should-the-agent-live
4•iacguy•29m ago•0 comments

Why LLMs can't paragraph well

https://hollisrobbinsanecdotal.substack.com/p/for-the-love-of-god-learn-to-paragraph
2•HR01•29m ago•0 comments

PyTorch 2.11 Released

https://pytorch.org/blog/pytorch-2-11-release-blog/
1•0bytematt•30m ago•0 comments

Minutes before Trump's announcement, $800M in trades made on oil prices

https://www.9news.com.au/world/donald-trump-iran-updates-oil-futures-trade-suspicious-betting-act...
8•inaros•32m ago•0 comments

AI Trained on Birdsong Can Recognize Whale Calls

https://spectrum.ieee.org/foundation-models-google-birds-whales
1•geox•34m ago•0 comments

Leonid Radvinsky, owner of OnlyFans, dies aged 43

https://www.theguardian.com/technology/2026/mar/23/leonid-radvinsky-onlyfans-owner-death
1•chirau•35m ago•1 comments

Absolute Beginner's Guide to Databasemaxxing

https://pthorpe92.dev/databasemaxxing/
1•dvektor•36m ago•0 comments

China Just Killed the B-Pillar Zeekr Mix 2026 [video]

https://www.youtube.com/watch?v=hGV-EUR2GYQ
1•thelastgallon•37m ago•0 comments

Show HN: A CLI for building and deploying Openclaw agents

https://pinata.cloud/blog/from-docker-dread-to-agentic-flow-introducing-the-pinata-cli/
1•madrov•39m ago•0 comments

You can now enable Claude to use your macOS computer to complete tasks

https://xcancel.com/claudeai/status/2036195789601374705
2•doener•41m ago•0 comments

Show HN: VoidLLM – privacy-first LLM proxy (Go, self-hosted)

https://github.com/voidmind-io/voidllm
1•chrisremo85•42m 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•10mo 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