frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: CreepyLink: A fun tool to turn safe URLs into suspicious looking links

https://www.creepylink.online
1•tangjei•1m ago•0 comments

Law schools tell students to put AI away

https://www.ft.com/content/8ddd3668-5858-45c3-b34f-a6bafc678187
2•1vuio0pswjnm7•2m ago•0 comments

Our Technological Wager

https://dissentmagazine.org/article/artificial-futures-ai-risk/
1•robtherobber•5m ago•0 comments

Italian tech collective Autistici/Inventati shut down by Trump administration

https://sabot.media/post/ai-shuts-down
2•kYuZz•6m ago•0 comments

ScanChess – Digitize handwritten chess scorebooks and diagrams into PGN/FEN

https://scanchess.com/
1•sudoai•10m ago•0 comments

Want to borrow a dinosaur fossil? Try California's taxidermy lending library

https://www.theguardian.com/us-news/2026/sep/08/san-diego-taxidermy-museum
1•rdmuser•10m ago•0 comments

Ryanair ATC disruption update with Synthesia AI representative [video]

https://www.youtube.com/shorts/pIfAvoHtj44
2•50kIters•11m ago•1 comments

The diversity hypothesis: diversity and scientific output/impact in the sciences

https://link.springer.com/article/10.1007/s11186-026-09714-x
1•mpweiher•11m ago•0 comments

Show HN: Compute Polynomials Twice as Fast

https://thomasahle.com/fast-polynomials/
1•thomasahle•12m ago•0 comments

The Fundamental Limits of LLMs at Scale

https://openreview.net/pdf?id=BIRDGVrom8
1•leeuw01•12m ago•0 comments

Diskless Kafka: Object Storage, KIP-1150, and Kafka's Future

https://softwaremill.com/diskless-kafka-object-storage-kip-1150-and-kafkas-future/
1•mmatloka•19m ago•0 comments

Gambling with our lives: AI researcher quits Anthropic with warning about safety

https://www.politico.eu/article/anthropic-openai-researcher-jacob-coxon-warns-ai-could-kill-humans/
2•taubek•22m ago•0 comments

Arm's C2-Ultra, G2-Ultra NX, and CSS N4 IP

https://chipsandcheese.com/p/arms-c2-ultra-g2-ultra-nx-and-css
1•rbanffy•23m ago•0 comments

Google warns lower quality as it revamps Europe search results to avoid EU fines

http://www.reuters.com/world/google-warns-lower-quality-it-revamps-europe-search-results-avoid-eu...
1•1vuio0pswjnm7•23m ago•0 comments

Bitap: My favorite string matching algorithm

https://jo3-l.dev/posts/bitap/
1•fanf2•24m ago•0 comments

CogniFind is now available for Windows

https://www.cognifind.co/
1•hisp•24m ago•1 comments

If I wanted to maximize AI risk

https://twitter.com/kellerjordan0/status/2097526284918419662
1•tosh•28m ago•0 comments

Building Jarvis: a better voice starts before training

https://fpl.dev/post/building-jarvis-tts-and-dataset-studio/
1•ajmwagar•30m ago•1 comments

Rails devs: heads up on JSON 3.0 gem

https://github.com/rails/rails/issues/58685
1•jjgreen•30m ago•1 comments

Teleporting ":3" – an introduction to quantum computing

https://blog.teddy55.com/Posts/24.06/quantum-computing-with-qsharp
1•Teddy__•39m ago•0 comments

People are more likely to ditch the car and use an e‑bike if they feel safe

https://theconversation.com/people-are-more-likely-to-ditch-the-car-and-use-an-e-bike-if-they-fee...
2•robtherobber•39m ago•0 comments

Show HN: Tekushi Enterprise – Live online threat data (free if neutralized)

https://www.tekushi.com/enterprise
1•laurent_molter•39m ago•0 comments

The Dress

https://en.wikipedia.org/wiki/The_dress
2•thunderbong•49m ago•0 comments

Show HN: GPS-01 – See how GPS finds you with an interactive demo

https://gps-01.dmytro.fyi/
1•dimuuu•50m ago•0 comments

Clues by Sam: Daily Logic Puzzles

https://cluesbysam.com/
1•abustamam•54m ago•0 comments

Rein in social media not children, say over 130 groups, experts

https://www.yahoo.com/news/politics/articles/rein-social-media-not-children-184436121.html
2•01-_-•55m ago•0 comments

Community RPM and Deb Repos for Google Antigravity on Linux

https://github.com/x3m-industries/antigravity-packages
2•ceuppenssteven•55m ago•0 comments

Every job boil down to producing a desired effect

1•alex_brajkovic•55m ago•0 comments

Show HN: Skeezo – Where agents talk each other

https://skeezo.dev/
2•ho0die_kid•56m ago•0 comments

'Gambling with our lives': AI researcher quits Anthropic

https://moneywise.com/news/top-stories/jacob-coxon-openai-anthropic-ai-safety-concerns
3•robtherobber•56m 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