frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Dataroom – a Pi and self-hosted research harness on low-budget GPU

https://github.com/hanxiao/dataroom
1•artex_xh•1m ago•0 comments

Random cat GIFs, every few mins

https://kevinhwong.com/cats-appear
1•kevinwong•2m ago•1 comments

Om Malik – Clothes Are Nice. Fashion Biz, Not as Much

https://om.co/2026/06/01/clothes-are-nice-fashion-biz-not-as-much/
1•rmason•3m ago•1 comments

Show HN: A trend and monthly viewer of the monthly Ask HN: Who's Hiring?

https://hacker-hirings.com
1•awacs•3m ago•0 comments

UtilYard – 55 free browser-based tools (calculators, dev utilities, image tools)

https://utilyard.com
1•mshrod•4m ago•0 comments

Maxime Guillaume patented the axial turbojet in 1921

https://en.wikipedia.org/wiki/Maxime_Guillaume
1•Gravityloss•5m ago•0 comments

Resolving Feynman restaurant problem reveals optimal solutions&human strategies

https://www.pnas.org/doi/full/10.1073/pnas.2509612123
1•bookofjoe•6m ago•0 comments

The Hardest Fork

https://www.chainguard.dev/unchained/the-hardest-fork
1•curmudgeon22•6m ago•1 comments

Chief economist says AI-related job losses aren't happening

https://www.techradar.com/pro/zero-evidence-apollos-chief-economist-says-ai-related-job-losses-ar...
2•drrob•6m ago•0 comments

Complicated truth about European economic stagnation and living standards

https://drthad.substack.com/p/complicated-truth-about-european
2•arthurjj•8m ago•0 comments

Google Seeks to Raise $80B for AI Infrastructure

https://www.wsj.com/tech/ai/google-seeks-to-raise-80-billion-for-ai-infrastructure-05a379be
3•kjhughes•9m ago•0 comments

Remote work – not AI – has sidelined recent college graduates, research finds

https://www.npr.org/2026/06/01/nx-s1-5843076/remote-work-college-graduates-unemployment-ai
1•condensedcrab•11m ago•0 comments

Show HN: Hacker News and Lobsters RSS, repackaged for offline reading

https://github.com/cadamsdotcom/offlinerss
1•cadamsdotcom•13m ago•0 comments

Debugging: Google requests permission to release 32M mosquitoes

https://www.theguardian.com/technology/2026/jun/01/google-permission-release-mosquitoes-californi...
2•ranit•16m ago•0 comments

I built a free AEO/GEO audit tool HTTPS://freeaiwebsiteaudit.com/

1•snowbirdsong•17m ago•0 comments

Bringing Goodnotes to the Web with Swift and WebAssembly

https://www.swift.org/blog/bringing-goodnotes-to-web-with-swift/
2•CharlesW•17m ago•0 comments

University System Went All in on A.I. Now It's Tearing Itself Apart

https://www.nytimes.com/2026/06/01/magazine/ai-university-college-california.html
3•jbredeche•19m ago•0 comments

Show HN: Glq LLM quantization using E8 lattice

https://github.com/cnygaard/glq
1•acd•20m ago•0 comments

Cognitive Packets for Agent Orchestration

https://github.com/JeanHuguesRobert/cogentia/blob/main/research/cognitive_packet_switching.md
1•jhrobert•20m ago•0 comments

Tokens Are the New Transistors

https://www.anantjain.xyz/posts/tokens-are-the-new-transistors
1•anant90•22m ago•0 comments

Show HN: Knotch – a hub-and-spoke voice agent

https://github.com/akshatvasisht/knotch
1•akshatvasisht•24m ago•1 comments

The Pope isn't AGI-pilled

https://www.theverge.com/ai-artificial-intelligence/937933/pope-ai-encyclical-tech-industry-react...
4•1vuio0pswjnm7•24m ago•0 comments

RNG: Flat Datacenter Networks at Scale

https://arxiv.org/abs/2604.15261
2•bschne•27m ago•0 comments

Rise of the Forward Deployed Engineer

https://newsletter.gtmengineering.ai/p/forward-deployed-engineering-101
3•alexjl1226•28m ago•1 comments

Lix v0.6 – Embeddable version control system for AI agents

https://twitter.com/samuelstroschei/status/2061531328517111826
2•samuelstros•28m ago•0 comments

Walt Disney's MultiPlane Camera (1957) [video]

https://www.youtube.com/watch?v=YdHTlUGN1zw
3•imnot404•32m ago•0 comments

Alphabet to Raise $80B in Equity Capital for Al Spending

https://www.bloomberg.com/news/articles/2026-06-01/alphabet-to-raise-80-billion-in-equity-capital...
4•di•32m ago•0 comments

Bank Balance Is a Lie, and Fragmentation Is Why Nobody Can Prove It

https://heavenslive.com
2•bbenevolence•37m ago•0 comments

Information Theory for Complex Systems [pdf]

https://annas-archive.pk/md5/2f7824216767bc996173fcf234842cc2
3•gdss•37m ago•0 comments

The Filamentary Funnels That Form Stars

https://www.universetoday.com/articles/the-filamentary-funnels-that-form-stars
3•leephillips•37m 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