frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Whoisinspace.com/

https://whoisinspace.com
1•Egg-Man•46s ago•0 comments

Victory Appeals Court Rejects Expansive New Copyright Claim

https://www.eff.org/deeplinks/2026/09/victory-appeals-court-rejects-expansive-new-copyright-claim
1•hn_acker•1m ago•0 comments

New evidence for hidden chambers beyond Tutankhamun's tomb

https://www.nature.com/articles/d41586-026-02621-2
1•rndsignals•1m ago•0 comments

New wild cat species is identified for first time in 100 years, researchers say

https://www.nbcnews.com/science/environment/new-wild-cat-species-identified-rcna598113
1•_tk_•2m ago•0 comments

Americans Shrugged Off Surveillance. Then Came Flock and Data Centers

https://www.techpolicy.press/americans-shrugged-off-surveillance-then-came-flock-and-data-centers/
1•cdrnsf•3m ago•0 comments

Show HN: The Heilbronn Problem – packing points to avoid small triangles

https://math.tejstead.com/heilbronn/
1•tejstead•5m ago•0 comments

How hard can it be to cache a Git checkout?

https://twitter.com/useblacksmith/status/2100590354915291400
2•piobio•5m ago•0 comments

Go-based Robotics Framework built around NATS.io

https://github.com/emergingrobotics/gorai
1•Bluestein•5m ago•0 comments

Robotaxi Might Be a Narc

https://www.theverge.com/transportation/996863/robotaxi-waymo-police-privacy-surveillance
1•MC995•5m ago•0 comments

Open Source Lightroom

https://darkroom-taupe-rho.vercel.app/
1•kuaola•7m ago•0 comments

Escalating Battle Against AI Deepfakes Mandates Smart Streaming Decisions

https://www.red5.net/blog/escalating-battle-against-ai-deepfakes-mandates-smart-streaming-decisions/
1•mondainx•8m ago•0 comments

Wilsonian Idealism

https://en.wikipedia.org/wiki/Wilsonian_idealism
1•embedding-shape•9m ago•0 comments

Homo Rodans

https://en.wikipedia.org/wiki/Homo_rodans
2•brudgers•9m ago•0 comments

University Rescinds Offer to Activist Allegeded to Wipe Phone Before DHS Search

https://www.404media.co/university-rescinds-job-offer-to-activist-who-allegedly-wiped-phone-befor...
3•tomatopepper•9m ago•1 comments

My Office Has an On-Air Light (and Yes, It's a Robot)

https://blog.herlein.com/post/on-air-light-is-a-robot/
1•gherlein•9m ago•0 comments

JDK 27 is now available

https://inside.java/2026/09/15/jdk-27-available/
2•metrofun•11m ago•0 comments

Abstract Machines Launches Synth

https://www.absmach.eu/blog/synth-core-announcement/
2•rodneyosodo•13m ago•0 comments

Ask HN: HIPAA for AI vs. Licensed Providers, your thoughts?

1•verdverm•14m ago•4 comments

A New Equal-Area Map for Interactive Computer Use

https://www.benjoffe.com/map
2•metrofun•16m ago•0 comments

Why Europeans save differently, and how to put those savings to work

https://www.ecb.europa.eu//press/blog/date/2026/html/ecb.blog20260915~dacebb4a6f.en.html
3•throw0101c•18m ago•0 comments

Vinix – A modern operating system written in V

https://vinix-os.org/
2•hggh•20m ago•0 comments

Rabbit Hole: Minimum L-seams

https://www.fractalkitty.com/rabbit-hole-minimum-l-seams/
1•evakhoury•20m ago•0 comments

LLM Classification Is Feature Engineering

https://minimallysufficient.com/posts/llm-classification-is-feature-extraction/
8•minsufficient•20m ago•1 comments

Benchmarking Local LLM Servers: Llama.cpp, Llamafile, LM Studio, and Ollama

https://blog.mozilla.ai/benchmarking-local-llm-servers-llama-cpp-llamafile-lm-studio-and-ollama/
3•angpt•22m ago•1 comments

Carlo Rovelli book challenges science's understanding of reality and universe

https://www.npr.org/2026/09/14/nx-s1-5968442/on-the-equality-of-all-things-physics-carlo-rovelli
1•__rito__•23m ago•0 comments

Show HN: Pelmet – menu bar manager for macOS 27 that hides icons on demand

https://github.com/fif7y/pelmet
1•fif7y•23m ago•0 comments

Prompting large language models for quality ecological statistics

https://besjournals.onlinelibrary.wiley.com/doi/10.1111/2041-210x.70267?af=R
2•luispa•23m ago•0 comments

Show HN: Open-source AI teammates with their own computer

https://runerrand.dev/
6•shiqimei•23m ago•2 comments

Show HN: Live one minute of a stranger's memory, then leave one for the next

https://enterkronos.com/?memory=01&ref=hn
1•yohann_sidot•24m ago•0 comments

If a Lion Could Speak

https://blue-continuum.com/if-a-lion-could-speak
1•dnetesn•24m 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