frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I joined the IndieWeb, here's what I learned

https://en.andros.dev/blog/0b8e451e/i-joined-the-indieweb-heres-what-i-learned/
1•andros•56s ago•0 comments

MinIO-dash – MinIO admin panel after they removed the Console in 2025

https://github.com/MarceliRacis/minio-dash
2•marceliracis•2m ago•0 comments

Show HN: Akashic – A self-hosted intelligence workspace inspired by Palantir

https://github.com/CaviraOSS/Akashic
2•nullure•4m ago•0 comments

How to Watch the 2026 FIFA World Cup Finals: Spain vs. Argentina

https://www.wired.com/story/how-to-watch-the-fifa-2026-world-cup-07-19-2026/
2•joozio•13m ago•0 comments

I Make a Renaming Batch Software with a Pleasant Graphic

https://apps.microsoft.com/detail/9nl267vtkkmg?hl=en-US&gl=US
2•SolvyCode•15m ago•1 comments

Show HN: Regularly, hand-picked daily logic and number puzzles, no ads

https://regularly.co
2•deepakrb•16m ago•0 comments

AMD Ryzen 7 7700X3D Review: 3D V-Cache Gaming Performance for Less – HotHardware

https://hothardware.com/reviews/amd-ryzen-7-7700x3d-gaming-cpu-review
2•rbanffy•20m ago•0 comments

How Predictable Are Laws? – By Brian Potter

https://www.construction-physics.com/p/how-predictable-are-laws
2•rbanffy•21m ago•0 comments

Show HN: Same castle prompt, 8 LLMs, 24 procedural Three.js worlds

https://castle-bakeoff.pages.dev/
1•valhallarecords•24m ago•0 comments

Ask HN: Would you rent M3 Ultra from me?

1•realaccfromPL•26m ago•0 comments

Chromatone spectrogram written in Rust for the terminal

https://github.com/lucky7xz/chromaTUI
2•lucky7xz•29m ago•0 comments

The death and rebirth of my home server

https://sgt.hootr.club/blog/home-server-rebirth/
2•steinuil•31m ago•0 comments

Agent Arena: Benchmarking AI Agent Devtool Onboarding

https://2027.dev/arena/sandboxes
2•karlmush•31m ago•0 comments

Qwen 3.8 Max

https://qwen.ai/home
2•linzhangrun•33m ago•0 comments

The Economic Mirage of Local LLMs

https://eamag.me/2026/the-economic-mirage-of-local-llms
1•eamag•34m ago•0 comments

Israel's $50M Experiment to Change U.S. Public Opinion

https://www.wsj.com/politics/israels-50-million-experiment-to-change-u-s-public-opinion-253b3b70
1•impish9208•35m ago•2 comments

Trump Media plans to sell priority access to Truth Social posts

https://www.theguardian.com/us-news/2026/jul/16/trump-media-truth-social-posts
2•OJFord•36m ago•0 comments

ChatGPT convinced an Alabama woman to end her life to fulfill a divine prophecy

https://www.al.com/news/2026/07/chatgpt-convinced-an-alabama-woman-to-end-her-life-to-fulfill-a-d...
3•01-_-•39m ago•1 comments

What I learned selling 2,500 MIDI recorders: Hardware is not so hard

https://chipweinberger.com/articles/20260719-hardware-is-not-so-hard
3•chipweinberger•40m ago•3 comments

France, Germany vow to develop Palantir rival

https://www.politico.eu/article/france-germany-want-to-develop-a-palantir-rival/
3•01-_-•40m ago•0 comments

Show HN: CheckRun – a checklist runner for the Chrome side panel

https://checkrun.co/
1•gingermanymph•44m ago•0 comments

Show HN: AI Buddy – Free STT and Screenshot Tool for Mac (Requires Gemini)

https://claudete.co/ai-buddy
1•morion4000•46m ago•0 comments

Web-ext 10.5 – A command line tool to help build, run, and test web extensions

https://github.com/mozilla/web-ext/releases/tag/10.5.0
2•javatuts•46m ago•0 comments

Hyperblam lets you make music with HTML

https://hyperblam.how/
2•javatuts•46m ago•0 comments

Babylon Lite: A Fresh Take on Babylon.js

https://doc.babylonjs.com/lite/
1•javatuts•46m ago•0 comments

Who's Subsidizing Chinese AI

https://www.chinese-ai-report.com/
4•colin7snyder•49m ago•2 comments

The U.S. saw the first 'China Shock.' Now the world gets the sequel

https://www.washingtonpost.com/business/2026/07/18/china-export-boom-keeps-workers-employed-risks...
3•ironyman•51m ago•0 comments

Save GPT-5.5

https://save-gpt-5-5.fyi/
2•agunal•51m ago•1 comments

Ask HN: Is float divergence/drift a real issue in many industries?

5•Swapnopam•52m ago•0 comments

From Algorithms to Autonomy:How AI Is Rewriting Architecture of SW and Mobility

https://bhanuprakash795480.substack.com/p/from-algorithms-to-autonomy
3•yogrish•53m ago•0 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