frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Xecai, a minimal Python interface for LLM providers for RAG systems

https://github.com/AdrianVispalia/xecai
1•adrianvi•44s ago•0 comments

Boeing 929 Jetfoil

https://en.wikipedia.org/wiki/Boeing_929_Jetfoil
1•WorldPeas•1m ago•0 comments

Toward autonomous self-organizing biological robots with a nervous system

https://wyss.harvard.edu/news/toward-autonomous-self-organizing-biological-robots-with-a-nervous-...
1•KenRuf•3m ago•0 comments

What's your biggest challenge as a founder?

1•bysyd•3m ago•0 comments

The LCA problem revisited [pdf]

https://www3.cs.stonybrook.edu/~bender/talks/BenderFa00-lca-talk.pdf
1•remywang•3m ago•1 comments

"Kai su, teknon" Caesar last words were probably a curse, not a farewell (2018)

https://www.lrb.co.uk/the-paper/v40/n23/thomas-jones/see-you-in-hell-punk
1•kwikiel•6m ago•0 comments

Ex-Uber self-driving chief crashes his Tesla on FSD, exposes supervision snafu

https://electrek.co/2026/03/17/former-uber-self-driving-chief-tesla-fsd-crash-supervision-problem/
1•aanet•6m ago•1 comments

Show HN: The elegant type-safe module composable library

https://arc.tsdk.dev/
1•jeremy_su•8m ago•0 comments

Jane (Jane.app) – Senior+ Engineers with AI Infra exp – Remote (US/Canada)

https://www.notion.so/janeapp/Jane-ai-2ee378ecd68380c8a9afc7f8ebee7b0f
1•keiranmcooper•10m ago•1 comments

PvZ-Portable: A cross-platform reimplementation of Plants vs. Zombies

https://github.com/wszqkzqk/PvZ-Portable
1•fastily•13m ago•0 comments

I made an simple OG meta image thing

https://snapog.com
1•earonesty•14m ago•1 comments

Chris Collins Reveals Amiga Devbench – Next-Level Amiga Development [video]

https://www.youtube.com/watch?v=kr4x3YnE-Ws
1•doener•14m ago•0 comments

I Don't Know, Timmy, Being God Is a Big Responsibility

https://qntm.org/responsibility
2•stickynotememo•16m ago•0 comments

2 Years Ago I Decided to Pay for My Search Engine. I've Never Looked Back

2•moebius_ansa•17m ago•0 comments

How the Strait of Hormuz closure affects global oil supply

https://www.reuters.com/graphics/IRAN-CRISIS/OIL-LNG/mopaokxlypa/
1•doener•19m ago•0 comments

Q&A: What does the Iran war mean for the energy transition and climate action?

https://www.carbonbrief.org/qa-what-does-the-iran-war-mean-for-the-energy-transition-and-climate-...
1•doener•19m ago•0 comments

Benchmark: TanStack Start is now the fastest full stack React framework

https://blog.platformatic.dev/react-ssr-framework-benchmark-tanstack-start-react-router-nextjs
1•flyaway123•21m ago•0 comments

AI Tools Can Help with Legal History Research

https://reason.com/volokh/2026/03/17/how-ai-tools-can-help-with-legal-history-research/
1•treetalker•24m ago•0 comments

Show HN: Shadcn/UI for Blazor

https://blazor-shadcn.fly.dev
2•Justbeingjustin•24m ago•1 comments

I stopped writing prompts and built an operating system on top of Claude Code

https://medium.com/@assaf_85431/i-stopped-writing-prompts-i-built-an-operating-system-instead-b7a...
1•Assafkip•25m ago•0 comments

JPMorgan Morgan halts $5.3B Qualtrics debt deal as AI fears chill demand

https://www.ft.com/content/ce9a67da-62df-484e-9f50-075d4be7817f
3•petethomas•26m ago•0 comments

Show HN: CodeLedger – deterministic context and guardrails for AI

https://codeledger.dev
1•ashmivante•26m ago•0 comments

Railtracks

1•soulfood5632•26m ago•0 comments

Show HN: ToolGuard – Pytest for AI agent tool calls

1•Heer_J•27m ago•0 comments

Ask HN: What's Your AI Workflow?

1•vixalien•28m ago•0 comments

The Abstraction Ratchet

https://write.as/void-signal/the-abstraction-ratchet
2•void-signal•29m ago•0 comments

Sistemico.net

https://sistemico.net/
1•gdss•29m ago•0 comments

Tree-style invite systems reduce AI slop

https://abyss.fish/tree-style_invite_systems_reduce_AI_slop
2•birdculture•31m ago•0 comments

Eating Ultra-Processed Foods Could Raise Your Heart Risk by 67%

https://scitechdaily.com/eating-ultra-processed-foods-could-raise-your-heart-risk-by-67/
1•Gaishan•33m ago•0 comments

My Son's Roblox Mod Helped Me Find a Bug in Crypto Wallet Software

https://robmulla.substack.com/p/how-my-sons-roblox-mod-helped-me
1•latchkey•33m 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•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•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