frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI's Latest Rocket Ship Is an Old School, 28-Year-Old Data Company

https://www.forbes.com/sites/iainmartin/2026/08/06/ais-latest-rocket-ship-is-an-old-school-28-yea...
1•Michelangelo11•35s ago•0 comments

The Last New Word

https://www.lucasfcosta.com/fiction/the-last-new-word
1•lucasfcosta•4m ago•0 comments

Triton: DirectX 11 Driver for QEMU

https://blog.getutm.app/2026/introducing-triton-directx-11-driver-for-qemu/
1•electricant•7m ago•0 comments

A private curl-to-Python converter that runs in the browser

https://www.endpoint51.com/curl-to-python/
1•endpoint51•9m ago•1 comments

I run a 9-model LLM council to write a financial newsletter. What breaks

https://marketdaily.ai/blog/eng-llm-council-judge-en-202608
1•delvinchang•10m ago•0 comments

Voyager 1 FDS Computer Emulator

https://zaneham.github.io/voyager-fds-emulator/
2•rahen•11m ago•0 comments

A domain can now say it is for sale, in DNS

https://specification.website/spec/foundations/for-sale-dns/
1•shaunpud•13m ago•0 comments

Show HN: Patchward-check – list the test expectations a diff removes

https://pypi.org/project/patchward-check/
1•kolesnikov-arch•14m ago•0 comments

A Generation on Antidepressants Searches for the Exit

https://www.nytimes.com/2026/08/07/opinion/antidepressants-ssris-side-effects-drugs-maha.html
2•bookofjoe•23m ago•1 comments

Sleep Alters the Velocity of Physiological Brain Pulsations in Humans

https://advanced.onlinelibrary.wiley.com/doi/10.1002/advs.202503745
1•cs1996•23m ago•0 comments

Hacker News MCP

https://hackernews.marcokittel.de
1•evlute•24m ago•1 comments

Downfall

https://downfall.page/
4•conferza•26m ago•0 comments

ROMbug Onion: A Tor Browser with Onion Routing, Privacy and a Separate Identity

https://rombugonion.com/
1•chainbuilder•26m ago•0 comments

Superdna – analyze your DNA raw file locally

https://github.com/Wolg/superdna
1•wolg•27m ago•0 comments

How Cleaning up space debris could grow to become a big business

https://www.cnbc.com/2026/08/08/space-debris-junk-spacex-rocket-moon-crash.html
1•ck2•27m ago•1 comments

The Caretakers

https://leejo.github.io/2026/08/08/caretakers/
1•leejo•27m ago•0 comments

Marimomono: A Marimo Simulator

https://www.zeldas.page/marimo
1•zeldahessler•30m ago•0 comments

MCP Is Dead; Long Live MCP – Revisited

https://chrlschn.dev/blog/2026/08/mcp-is-dead-long-live-mcp/
1•CharlieDigital•35m ago•0 comments

They don't make 'em like Sublime Text anymore

https://dbushell.com/2026/08/07/sublime-text/
2•vinhnx•37m ago•1 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
2•fortran77•38m ago•1 comments

Ask HN: Is Ask HN Shrinking?

4•keiferski•41m ago•3 comments

Show HN: My AI agent built and shipped a browser game on its own

https://overlk.itch.io/afterimage
2•yoopla_dev•41m ago•0 comments

Building Groovie, an Advanced Web-Based Drum Machine / Beat Sequencer

https://pointersgonewild.com/2026-08-06-building-groovie-an-advanced-web-based-drum-beat-sequencer/
1•maxime_cb•43m ago•0 comments

Cave of the Crystals

https://en.wikipedia.org/wiki/Cave_of_the_Crystals
2•ColinWright•45m ago•0 comments

Git, CRDT, Markdown

https://replicated.live/blog/crdt.html
1•gritzko•45m ago•0 comments

A skills-based pathway to licensure is ordered in New Mexico [pdf]

https://web.archive.org/web/20260805102345/https://nmcourts.gov/wp-content/uploads/2026/07/Order-...
1•firefax•46m ago•0 comments

Ex-Amazon VP on What Gets You Promoted

https://www.youtube.com/watch?v=Gf0pR4_bv-o
1•tcp_handshaker•46m ago•0 comments

How software is changing – and how OpenAI is building the future

https://every.to/p/openai-infrastructure
1•samuel_kx0•50m ago•1 comments

Show HN: A free DOCX editor with MCP server for editing

https://revise.io/help/mcp-server
4•artursapek•53m ago•0 comments

Linux 7.3 to support Logitech HID++ 2.0 reprogrammable button support

https://www.phoronix.com/news/Linux-7.3-HIDPP-Reprogrammable
2•teleforce•54m 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