frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The first AI agent worm is months away, if that

https://dustycloud.org/blog/the-first-ai-agent-worm-is-months-away-if-that/
1•laurex•1m ago•0 comments

BlackRock limits withdrawals as redemptions rattle private credit fund

https://www.reuters.com/business/blackrock-limits-withdrawals-private-credit-fund-redemptions-mou...
2•itbeho•2m ago•0 comments

Show HN: I made a keygen for my own software

https://vrsal.cc/wkg/
1•univrsal•3m ago•0 comments

RAG is broken, lets fix it

https://decompressed.io/learn/embedding-drift
1•zacole•3m ago•0 comments

Show HN: Palus Finance (YC W26): Better yields on idle cash for startups, SMBs

1•sam_palus•4m ago•0 comments

Conductor – Scalable Workflow Orchestration Engine for Microservices

https://github.com/microsoft/conductor
1•cebert•5m ago•0 comments

Tech employment now significantly worse than the 2008 or 2020 recessions

https://twitter.com/JosephPolitano/status/2029916364664611242
2•enraged_camel•5m ago•0 comments

The Situation: The Base Jumping Presidency

https://www.lawfaremedia.org/article/the-situation--the-base-jumping-presidency
1•hn_acker•5m ago•0 comments

Altman said no to military AI abuses – then signed Pentagon deal anyway

https://www.theregister.com/2026/03/06/openai_dod_deal/
2•CrankyBear•6m ago•0 comments

OpenAI Symphony

https://github.com/openai/symphony
1•ssgodderidge•6m ago•1 comments

Show HN: Argus – VSCode debugger for Claude Code sessions

https://github.com/yessGlory17/argus
1•lydionfinance•7m ago•0 comments

Mathematics in the Age of AI [video]

https://www.youtube.com/watch?v=mS9Lr43cIB4
1•sonabinu•8m ago•0 comments

What the new "Nova" design of Firefox looks like

https://www.soeren-hentzschel.at/firefox/exklusiv-so-sieht-das-neue-nova-design-von-firefox-aus/
2•speckx•8m ago•0 comments

U-Haul Growth Index: Top U.S. Growth Metros and Cities of 2025 Announced

https://www.uhaul.com/Articles/About/U-Haul-Growth-Index-Top-US-Growth-Metros-And-Cities-Of-2025-...
2•nradov•9m ago•0 comments

System76 Comments on Recent Age Verification Laws

https://www.phoronix.com/news/System76-Age-Verification-Laws
1•speckx•9m ago•0 comments

Mark Zuckerberg says criminal behavior on Facebook inevitable

https://www.theguardian.com/technology/2026/mar/05/mark-zuckerberg-meta-trial
2•01-_-•9m ago•1 comments

Show HN: TLDR – Free Chrome extension that summarizes any article in 2s with AI

https://github.com/wesleysmyth/TLDR-extension
1•wesleysmyth•9m ago•1 comments

Data Center Intelligence at the Price of a Laptop

https://tomtunguz.com/qwen-9b-matches-frontier-models/
1•djha-skin•10m ago•0 comments

Google Gross violations of the ToS and transformation into an "Evil" corporation

1•falkerdev•11m ago•0 comments

Show HN: Apiform – Auto-Generate CRUD REST APIs from Your Prisma Schema

https://github.com/ghimirebibek/apiform
1•sathiunique•12m ago•0 comments

I Audit a Legacy Rails Codebase in the First Week

https://piechowski.io/post/how-i-audit-a-legacy-rails-codebase/
1•todsacerdoti•15m ago•0 comments

Ask HN: Why do we still buy things by browsing catalogs?

2•dannythecount•15m ago•1 comments

Oracle Will Fire Thousands Due to AI Cash Crunch

https://www.bloomberg.com/news/articles/2026-03-05/oracle-layoffs-to-impact-thousands-in-ai-cash-...
2•master_crab•16m ago•2 comments

Avoiding a Culture of Emergencies

https://blog.staysaasy.com/p/avoiding-a-culture-of-emergencies
1•donutshop•17m ago•0 comments

ConsciOS v1.0: A Viable Systems Architecture for Human and AI Alignment

https://papers.ssrn.com/sol3/Papers.cfm?abstract_id=5817303
1•WesDuWurk•18m ago•1 comments

The emerging role of SRAM-centric chips in AI inference

https://gimletlabs.ai/blog/sram-centric-chips
1•nserrino•19m ago•0 comments

Show HN: Dotclaude – Sync your Claude Code config across machines with Git

https://github.com/daniel7an/dotclaude
1•daniielyan•19m ago•1 comments

Imrobot – Reverse-CAPTCHA that verifies AI agents, not humans

https://github.com/leopechnicki/im_robot
1•leo_pechnicki•19m ago•1 comments

The universe is filled with a cacophony of colliding black holes

https://www.scientificamerican.com/article/newly-discovered-ripples-in-spacetime-put-einsteins-ge...
1•speckx•19m ago•0 comments

What Is Western Civilization?

https://www.youtube.com/watch?v=Sq6MWZVBPgY
2•vo2maxer•21m ago•0 comments
Open in hackernews

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

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