frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New Integrated by Design FreeBSD Book

https://vivianvoss.net/blog/integrated-by-design-launch
1•vermaden•55s ago•0 comments

Ukraine's drone commander has Russian oil, troops and morale in his sights

https://www.bbc.com/news/articles/c1d9wvd2e4ro
4•tkgally•5m ago•1 comments

The NYC Law on Metal Gates That Nearly Everyone Forgot About

https://www.nytimes.com/2026/04/24/nyregion/metal-gates-city-council-law.html
2•JumpCrisscross•7m ago•0 comments

Reddit no longer allowing mobile users to browse on web

https://old.reddit.com/r/help/comments/1sudaup/reddit_no_longer_letting_me_browse_on_my_phone/
1•darth_avocado•9m ago•0 comments

Show HN: I build an automation that back my Claude chat to a ticketing system

1•xnslx•10m ago•0 comments

Free paycheck calculator for all 50 US states

https://takehometool.com/
1•ahcstudio•11m ago•0 comments

Show HN : Tickword – Chain the words. Dont let the clock catch you

https://tickword.com/en
1•Jekooo•13m ago•2 comments

Intuitive Understanding of PCA

https://ai.ragv.in/posts/intuitive-understanding-of-pca/
1•kn81198•16m ago•0 comments

Why on-chain options are still thin (and a liquidity model that fixes it)

https://rohanrathod.ai/writing/on-chain-options-liquidity
1•ro_lend•17m ago•0 comments

Late pregnancy is pretty bizarre

https://viverricious.substack.com/p/late-pregnancy-is-pretty-bizarre
1•eatitraw•18m ago•0 comments

Predicting the Future (2001) [pdf]

https://library.rumsfeld.com/doclib/sp/2382/2001-04-12%20To%20George%20W%20Bush%20et%20al%20re%20...
1•pollorollo•18m ago•0 comments

Admin Console Inaccessible – Tailscale Status

https://status.tailscale.com/incidents/01KQ8HC1B4KG94AMB39DD9F0FJ
1•corvad•19m ago•0 comments

How My RLM Tool Works

https://isaacflath.com/writing/rlm
1•simonpure•19m ago•0 comments

Taming the Unpredictable: Reliability in Chaos (Srecon 26)

https://www.usenix.org/conference/srecon26americas/presentation/brush
1•captainkrtek•20m ago•0 comments

Why stablecoins are making many banks nervous

https://www.marketplace.org/story/2026/04/27/why-stablecoins-are-making-many-banks-nervous
1•petethomas•22m ago•0 comments

A common weed killer left an epigenetic footprint in early-onset colon cancer

https://medicalxpress.com/news/2026-04-common-weed-killer-left-hidden.html
4•SilverElfin•22m ago•1 comments

We tested 7,039 sites for MCP support; 5.8% passed a live handshake

https://8bitconcepts.com/research/q2-2026-mcp-ecosystem-health.html
1•8bitconcepts•24m ago•0 comments

Extended interview: Ben Sasse on lessons for America [video]

https://www.youtube.com/watch?v=WcT9O5Sjmd0
1•duck•29m ago•0 comments

Solar exports 2x during Oil Crisis

https://e360.yale.edu/digest/china-solar-exports-iran-war
2•dreadsword•38m ago•0 comments

AI is confronting a supply-chain crunch

https://www.economist.com/business/2026/04/27/ai-is-confronting-a-supply-chain-crunch
1•edward•39m ago•0 comments

Nirvanic AI

https://www.nirvanic.ai
1•a_poo_on_a_shoe•39m ago•0 comments

Elephants, Goldfish and the New Golden Age of Software Engineering

https://drensin.medium.com/elephants-goldfish-and-the-new-golden-age-of-software-engineering-c336...
1•krish98sai•39m ago•0 comments

WallasAPI: Multi-provider AI router with automatic fallback (12 providers)

https://github.com/wubjak/wallasapi
1•wubjak•50m ago•0 comments

Open Museum – an MCP server for license-verified search across museums

https://github.com/cfpramod/open-museum-mcp
1•pramodprasanth•51m ago•1 comments

Pip 26.1 Released

https://lwn.net/Articles/1070010/
2•kazu11max17•52m ago•0 comments

AI researchers want AI to fake "thinking"

https://www.machinesociety.ai/p/ai-researchers-want-ai-to-fake-thinking-247
2•mikelgan•55m ago•1 comments

Initial tests find lead in children's fast-fashion clothing

https://www.acs.org/pressroom/presspacs/2026/march/initial-tests-find-lead-in-childrens-fast-fash...
1•_DeadFred_•56m ago•0 comments

I build my LLM a Brain

1•Kevintbt•56m ago•1 comments

I ran retrieval-auditor against LangChain's RAG quickstart, 5/6 flagged

https://github.com/kevin-luddy39/contrarianAI/tree/main/tools/retrieval-auditor/examples/langchai...
1•kevinluddy39•56m ago•0 comments

A Disappearing JSX Framework

https://twitter.com/dashersw/status/2048719900013732232
1•arbayi•56m 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