frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Sleeping LLM – A language model that remembers by sleeping

https://github.com/vbario/sleeping-llm
1•vbaranov87•46s ago•0 comments

Show HN: Check Your Latency

https://3nt.lat/
1•dpweb•2m ago•0 comments

Apple's Multibillion-Dollar Push to Make Chips in the U.S. [video]

https://www.youtube.com/watch?v=ktFlaBhpMu8
1•Austin_Conlon•3m ago•0 comments

Date-fns: Modern JavaScript date utility library

https://date-fns.org/
1•nateb2022•3m ago•0 comments

OVH Is Raising Prices

1•babaganoosh89•7m ago•0 comments

ZES – sign data with post-quantum crypto without the API ever seeing it

https://pq-api.cyclecore.ai/try
1•dev_PQC-focus•9m ago•1 comments

Show HN: Nullroom.io – Experimental, stateless P2P messaging and file sharing

https://www.nullroom.io/
1•vdw•11m ago•0 comments

Trading Strategies (2018) [pdf]

https://smallake.kr/wp-content/uploads/2019/12/SSRN-id3247865.pdf
1•htfy96•14m ago•0 comments

vLLM-mlx – 65 tok/s LLM inference on Mac with tool calling and prompt caching

https://github.com/raullenchai/vllm-mlx
1•raullen•17m ago•1 comments

Swamp Dirt and AI Safety

https://safeenough.substack.com/p/swamp-dirt-and-ai-safety
1•protagonist_hn•21m ago•0 comments

Gravity's Effect on Biology

https://www.frontiersin.org/journals/physiology/articles/10.3389/fphys.2023.1199175/full
2•the-mitr•23m ago•0 comments

Beyond the "Post": Trauma, Temporality, and Psychiatric Categories in Kashmir

https://www.inversejournal.com/2026/02/22/beyond-the-post-trauma-temporality-and-psychiatric-cate...
1•bryanrasmussen•25m ago•0 comments

Miss Alexandra

https://mihaiolteanu.me/miss-alexandra
1•molteanu•26m ago•0 comments

What the Defense Production Act Can and Can't Do to Anthropic

https://www.lawfaremedia.org/article/what-the-defense-production-act-can-and-can%27t-do-to-anthropic
1•verdverm•30m ago•0 comments

Show HN: CVJ-1 VJ Deck / VISUALZ audio-reactive VJ software

https://www.visualzstudio.com/vj-deck
1•madchops1•30m ago•0 comments

Will A.I. Take Away Our Basic Skills?

https://paperrobots.substack.com/p/will-ai-take-away-our-basic-skills
2•NomNew•32m ago•1 comments

Show HN: Free online audio translator that translates voice instantly

https://audioconvert.ai/audio-translator
1•Katherine603•33m ago•0 comments

Plugin to give Claude Code perception (screen, system audio and mic context)

https://twitter.com/ashu_trv/status/2026296815860203888/
1•ash-ishh•34m ago•0 comments

Show HN: Squidy – How I stopped losing AI agent context mid-project

https://rendernet.com.br/squidyrun/
1•marcfox182•39m ago•0 comments

Show HN: Easyemailfinder.com (5 Free Credits)

https://easyemailfinder.com
1•faalbane•43m ago•0 comments

The Internet Was Weeks Away from Disaster and No One Knew [video]

https://www.youtube.com/watch?v=aoag03mSuXQ
1•trinsic2•48m ago•1 comments

Tesla Lab – 20 computational experiments

https://github.com/consigcody94/tesla-lab
1•sentinelowl•50m ago•1 comments

Show HN: NovelStar – a functional novel writing suite in a single HTML file

https://github.com/pixeldude84/novelstar
1•pixeldude84•50m ago•0 comments

Claude Code Anywhere

https://happy.engineering
1•vismit2000•55m ago•0 comments

Detecting AI scammers and bringing back the control to humans

https://veritrue.ai/
1•cheroll•58m ago•2 comments

I hacked ChatGPT and Google's AI – and it only took 20 minutes

https://www.bbc.com/future/article/20260218-i-hacked-chatgpt-and-googles-ai-and-it-only-took-20-m...
3•leephillips•1h ago•1 comments

RSA-signed prompt envelopes for OpenClaw agents

https://github.com/Mediocr3Mik3/open-claw-spa
1•Mediocr3Mik3•1h ago•1 comments

Connectors: Discord, Notion, and Slack Now Wired into Every Debate

https://www.askverdict.ai/updates/connectors-notion-discord-slack
1•thegdsks•1h ago•0 comments

A Computational Perspective on NeuroAI and Synthetic Biological Intelligence

https://arxiv.org/abs/2509.23896
1•andsoitis•1h ago•0 comments

A faithful, native Windows Notepad clone built in Zig using raw Win32 APIs

https://github.com/leebase/lfznotepad
1•garbagepatch•1h ago•1 comments
Open in hackernews

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

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