frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Phased-Out Plugs

https://plugsocketmuseum.nl/Unusual.html
1•gaws•2m ago•0 comments

The Only Thing Worse Than Spirit Airlines Is a World Without Spirit Airlines

https://www.theatlantic.com/technology/2026/05/spirit-airlines-cancellation-closure/687047/
1•RestlessMind•4m ago•0 comments

Eaglepress.org – Content Management System Python 3

https://eaglepress.org
1•eagle10ne•6m ago•0 comments

Show HN: A tiny C program where an LLM rewires its DAG while running

https://github.com/kouhxp/liteflow
1•mrkn1•9m ago•0 comments

Achieving 3X speedups with diffusion-style speculative decoding

https://developers.googleblog.com/supercharging-llm-inference-on-google-tpus-achieving-3x-speedup...
1•xnx•11m ago•0 comments

Ctx – Persistent Memory for Claude Code, Cursor, and AI Coding Tools

https://github.com/ActiveMemory/ctx
1•parlakisik•13m ago•0 comments

OpenAI co-founder discloses nearly $30B stake, financial ties to Altman

https://www.reuters.com/sustainability/boards-policy-regulation/openai-co-founder-discloses-nearl...
1•PessimalDecimal•15m ago•0 comments

The Most Counterintuitive Way to Build a Brain [video]

https://www.youtube.com/watch?v=cDxtFtoQVNc
1•kburman•16m ago•0 comments

OpenPartner – the open-source referral and partner program platform

https://openpartner.dev/
1•keithfawcett•17m ago•0 comments

The em dashes ( –) – The unsaid AI SLOP Tax

https://old.reddit.com/r/ClaudeAI/comments/1t3rrfr/the_em_dashes_the_unsaid_ai_slop_tax/
1•thegdsks•18m ago•1 comments

Webistearchiver – macOS – Save and manage websites. Locally and minimalistically

https://websitearchiver.net
1•kipdev•18m ago•1 comments

Reporters at McClatchy Withhold Bylines in Dispute over A.I. Content

https://www.nytimes.com/2026/05/01/business/media/mcclatchy-ai-newsroom-byline-strike.html
1•bookofjoe•18m ago•1 comments

Blink – AI Assistant. A Knowledge Destination

https://blink-oi.vercel.app
1•Pascal1997•20m ago•0 comments

Clicky Background Computer-Use

https://twitter.com/farzatv/status/2051454940326097220
1•frabonacci•21m ago•0 comments

LuvStatus

https://luvstatus.com
1•nainervana•22m ago•0 comments

Woman's Talkspace therapy app sessions exposed in court

https://www.proofnews.org/womans-talkspace-therapy-app-sessions-exposed-in-court/
1•g8oz•23m ago•0 comments

Telescript (Programming Language)

https://en.wikipedia.org/wiki/Telescript_(programming_language)
1•avaer•27m ago•0 comments

Mtplx – 2.24x faster TPS – The native MTP inference engine for Apple Silicon

https://github.com/youssofal/MTPLX
2•youssof•29m ago•0 comments

Trump's proposed NASA budget is a 'horrible threat to our future' in space

https://www.space.com/space-exploration/trumps-proposed-nasa-budget-is-a-horrible-threat-to-our-f...
1•voxadam•30m ago•0 comments

AI Companies Learn the Word No

https://reason.com/2026/05/04/ai-companies-learn-the-word-no/
2•pseudolus•35m ago•0 comments

"Notepad++ for Mac" release is disavowed by the creator of the original

https://arstechnica.com/gadgets/2026/05/unofficial-vibe-coded-notepad-for-mac-draws-objections-fr...
2•cwal37•35m ago•1 comments

Valve just imported 50 tons of game consoles in two days

https://www.theverge.com/news/923461/valve-steam-machine-frame-deck-import-records-may-2026
1•droidjj•36m ago•0 comments

Why ChatGPT answers instead of saying "I don't know"

https://medium.com/@blueshirts23/i-forced-chatgpt-into-adversarial-tests-heres-what-it-actually-d...
2•BoundaryTester•39m ago•0 comments

The Creation of Instant Coffee

https://www.worksinprogress.news/p/the-creation-of-instant-coffee
1•bookofjoe•41m ago•0 comments

Emergency brakes: How to limit temps long before last resort of geoengineering

https://thebulletin.org/2026/05/emergency-brakes-how-to-limit-temperatures-long-before-the-last-r...
1•littlexsparkee•42m ago•0 comments

Bun is being ported from Zig to Rust

https://github.com/oven-sh/bun/commit/46d3bc29f270fa881dd5730ef1549e88407701a5
66•SergeAx•44m ago•29 comments

An imperative language for AI workload orchestration: Terradev CLI v4.0.11

https://github.com/theoddden/Terradev
2•Facingsouth•45m ago•0 comments

A Mental Model for Agentic Work

https://basti.io/blog/agentic_work_mental_model/
2•basti_ag•47m ago•0 comments

Delta Works

https://en.wikipedia.org/wiki/Delta_Works
1•prawn•50m ago•0 comments

Truth

https://plato.stanford.edu/entries/truth/
1•nvr219•51m ago•0 comments
Open in hackernews

Ask HN: Any good tools to pgdump multi tenant database?

3•polishdude20•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Oh yes I agree with you. It may become a big push to convince my org to do that