frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: iClaw is part OpenClaw, part Siri, powered by Apple Intelligence

https://barrasso.me/posts/2026-04-27-iclaw-ai-agent-using-apple-intelligence/
1•podlp•39s ago•0 comments

Sage-Wiki: An LLM-compiled personal knowledge base

https://github.com/xoai/sage-wiki
1•amai•1m ago•0 comments

Agent Capsule: "Agents as Data" pattern for production AI agents (gist)

https://gist.github.com/liranhason/b64c202430dd02f1a9a54f0c3d6ffd16
1•armagnac2•2m ago•0 comments

LA Olympics 2028: The expensive, annoying ticket crashout

https://www.vox.com/culture/486760/2028-los-angeles-olympics-ticket-prices-fail
1•speckx•3m ago•0 comments

Yann LeCun: LLMs Are Nearing the End, but Better AI Is Coming (2025)

https://www.newsweek.com/nw-ai/ai-impact-interview-yann-lecun-llm-limitations-analysis-2054255
1•lucidplot•3m ago•0 comments

A transparent update on Scaleway pricing

https://www.scaleway.com/en/blog/a-transparent-update-on-scaleway-pricing/
1•TechTechTech•4m ago•0 comments

Should we just skip code review now?

https://xata.io/blog/ai-codes-humans-engineer
1•ClaudiuDasca•4m ago•0 comments

Unpredictable Consequences?

https://xcancel.com/DeItaone/status/2049084994027438524
1•DivingForGold•4m ago•1 comments

The iPhone Camera Problem

https://medium.com/@hbbio/the-iphone-camera-problem-73ea2686b363
1•hbbio•5m ago•0 comments

Show HN: Knowerage – code coverage for LLM analysis

https://github.com/MTimma/knowerage
1•mtimma•6m ago•0 comments

Ask HN: Will there be global famine soon?

3•roschdal•9m ago•1 comments

Peter Vogel's Fairlight Audio Archives

https://www.anerd.com/fairlight/audioarchives/index.htm
1•Ringz•9m ago•1 comments

pgBackRest is dead. Now what?

https://mydbanotebook.org/posts/pgbackrest-is-dead.-now-what/
2•pabs3•9m ago•0 comments

The Basics of Becoming Wise

https://dariusforoux.com/the-basics-of-becoming-wise/
1•RickJWagner•10m ago•0 comments

Peter Vogel's personal Fairlight picture gallery

https://www.anerd.com/fairlight/gallery.htm
1•Ringz•11m ago•0 comments

A Primer on LLM Post-Training

https://pytorch.org/blog/a-primer-on-llm-post-training/
1•hyperpape•11m ago•0 comments

Peter Vogel's Limestone House

https://www.anerd.com/pv/house.htm
1•Ringz•12m ago•0 comments

Pacquet: pnpm (JavaScript package manager) in-progress rewrite in Rust

https://github.com/pnpm/pacquet
1•maxloh•12m ago•0 comments

Show HN: MindCheck – Analyze your AI coding logs for over-delegation

https://github.com/PatrickSqx/MindCheck
1•Grp1•12m ago•0 comments

The Silent Frequency That Makes Old Buildings Feel Haunted

https://scienceblog.com/the-silent-frequency-that-makes-old-buildings-feel-haunted/
1•jnord•12m ago•0 comments

KDEConnect

https://userbase.kde.org/KDEConnect
1•Rygian•13m ago•0 comments

The Gate Test: Why Human-in-the-Loop Fails and How to Fix It

https://jitera.com/blog/agentic-gate/
3•everlier•13m ago•0 comments

Self-hosted red team workspace

https://github.com/Buthis404/RootNotes
1•hulupupu•13m ago•0 comments

So I'm making a 1000 player space game

https://mas-bandwidth.com/so-im-making-a-space-game/
1•gafferongames•14m ago•0 comments

Notion PDF Studio – Export Notion Pages as Professional PDFs

https://notion-pdf-studio.dynadia.com/
1•mathiasv•17m ago•0 comments

Man-in-the-Service: OpSec Safe Relay Techniques

https://turtlesec.io/talks/man-in-the-service-opsec-safe-relay-techniques
1•mastersplinter•17m ago•1 comments

The Authority Gap: Your SEO Top Spot Doesn't Earn AI Citations

https://keryxsolutions.substack.com/p/the-authority-gap-your-seo-top-spot
1•kdb1008•17m ago•0 comments

Check any website against the W3C Web Sustainability Guidelines

https://wsg-check.netlify.app/
1•speckx•19m ago•0 comments

Why Your AI Agents Keep Breaking Your Workflows

https://keryxsolutions.substack.com/p/why-your-ai-agents-keep-breaking
2•kdb1008•19m ago•0 comments

Show HN: Bareforge – A UI builder exporting stateful JavaScript/CLJS projects

https://github.com/avanelsas/bareforge
1•vanelsas•20m ago•1 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