frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Postgres locks do not scale

https://www.recall.ai/blog/postgres-locks-do-not-scale
1•timetoogo•15s ago•0 comments

ANSI X9.150-2026 Payment QR – Merchant-Presented QR Codes for Secure Payment

https://webstore.ansi.org/standards/ascx9/ansix91502026
1•petethomas•40s ago•0 comments

GPT 5.6

https://openai.com/index/gpt-5-6/
5•logickkk1•1m ago•0 comments

Using GPT-5.6

https://developers.openai.com/api/docs/guides/latest-model
2•minimaxir•1m ago•0 comments

The Download: a nuclear landmark, and China eyes Nvidia chips

https://www.technologyreview.com/2026/07/09/1140283/the-download-nuclear-power-milestone-nvidia-c...
1•joozio•1m ago•0 comments

ChatGPT Work

https://openai.com/index/chatgpt-for-your-most-ambitious-work/
3•Tiberium•1m ago•0 comments

Cyclists Are Using a New Fueling Solution That Could Blow Endurance Racing Apart

https://velo.outsideonline.com/road/road-racing/tour-de-france/tour-de-france-riders-trial-secret...
1•haunter•1m ago•1 comments

GPT 5.6 System Card

https://deploymentsafety.openai.com/gpt-5-6
2•rvz•1m ago•0 comments

GeForce Trading Cards Series 1 [video]

https://www.youtube.com/watch?v=96PKNcmazcE
1•theNotFractured•1m ago•0 comments

Programming versus Writing with LLMs. Different Beasts

https://hexaray.com/blog/llm-programming-vs-writing
1•gatinsama•3m ago•0 comments

Gaming is better for you than Scrolling Social Media [video]

https://www.youtube.com/watch?v=VVnSHHxOHIA
1•carabiner•5m ago•0 comments

Show HN: Daily vibe-coding video games, day 87: Jungle Chess

https://gamevibe.us/87-jungle-chess
1•pzxc•6m ago•0 comments

Can banks skirt the Durbin Amendment by owning a debit network?

https://www.americanbanker.com/payments/news/can-banks-skirt-interchange-caps-by-owning-a-debit-n...
1•petethomas•6m ago•0 comments

Gradual Disempowerment: Systemic Existential Risks of Incremental AI Development

https://arxiv.org/abs/2501.16946
1•lioeters•6m ago•0 comments

What could data centres look like in 2055?

https://news.lenovo.com/lenovo-data-center-of-the-future/
2•mooreds•7m ago•0 comments

NEO's Hands – An API to the Physical World

https://www.1x.tech/discover/neos-hands
1•bpierre•7m ago•0 comments

Capable

https://hypercapable.vercel.app
1•ray__•9m ago•0 comments

How I use coding agents for reproducible DS/ML workflows

https://github.com/tkpratardan/lemma
1•tkpratardan•10m ago•0 comments

GhostApproval: A trust-boundary gap in AI coding assistants

https://www.wiz.io/blog/ghostapproval-a-trust-boundary-gap-in-ai-coding-assistants
1•logickkk1•10m ago•0 comments

Say hello to Claude Wrapped

https://www.theverge.com/ai-artificial-intelligence/963105/anthropic-claude-wrapped-reflection-ai...
2•Brajeshwar•12m ago•0 comments

A software defect in Telstra timekeeping servers took down emergency calls

https://www.theregister.com/networks/2026/07/08/telstra-outage-downs-000-calls-trains-payment-sys...
1•logickkk1•12m ago•0 comments

A Roadmap to Finding, Onboarding, and Training a Virtual Assistant

https://tavlinconsulting.gumroad.com/l/mental-load
1•mooreds•12m ago•0 comments

Parents' Phone Addiction Affects Bond with Kids, New Study Finds

https://www.bloomberg.com/news/articles/2026-07-08/parents-phone-addiction-affects-bond-with-kids...
1•bishopsmother•14m ago•0 comments

Multiple Double Arithmetic on Nvidia Tensor Cores

https://arxiv.org/abs/2607.06881
1•Jimmc414•14m ago•0 comments

AI Mistakes Can Cost Doctors Time When Writing to Patients

https://home.dartmouth.edu/news/2026/07/ai-mistakes-can-cost-doctors-time-when-writing-patients
2•cdrnsf•14m ago•0 comments

Formally Verifying AI-Generated GPU Kernels

https://gimletlabs.ai/blog/formally-verifying-ai-generated-kernels
1•nserrino•15m ago•0 comments

Puerto Rico Grid Recovery: Limited Progress Toward Stability

https://www.gao.gov/products/gao-26-107772
1•Jimmc414•15m ago•0 comments

Show HN: Zero2Robot – A free, from-scratch course on how robots learn

https://zero2robot.com/
1•kaushikbokka•15m ago•0 comments

Design a distributed unique id generator

https://blog.danwald.me/design-a-distributed-unique-id-generator
1•danwald•15m ago•0 comments

Ask HN: How do you share agent context across a team?

1•snowhy•16m ago•2 comments
Open in hackernews

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

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