frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Apple's MacBook Neo Modded to a 1 TB SSD

https://www.tomshardware.com/laptops/macbooks/apples-macbook-neo-modded-to-a-1-tb-ssd-breaking-th...
1•top_sigrid•2m ago•0 comments

Google's Gemini threatened me once disagreed with the "trump-putin-orban" axis

https://gemini.google.com/share/fdf648344c11
1•drops•4m ago•0 comments

Move over, Labubu. The new Silicon Valley status symbol is a tiny Apple computer

https://sfstandard.com/2026/03/12/mac-mini-bro-new-matcha-latte-guy/
1•MrJagil•11m ago•0 comments

Third places are disappearing as the world goes more online – The Week

https://theweek.com/culture-life/third-places-disappearing
1•janandonly•12m ago•0 comments

Belgian prime minister calls for EU to normalise ties with Russia

https://www.ft.com/content/4ce01938-a671-4433-83a7-dada2b3bac01
1•KnuthIsGod•13m ago•0 comments

Show HN: cn-variants – Tailwind CSS variants in 3 lines of code

https://npmx.dev/package/cn-variants
1•bastianplsfix•20m ago•0 comments

Capacity Is the Roadmap

https://yusufaytas.com/capacity-is-the-roadmap/
10•yusufaytas•23m ago•0 comments

ZippyType – A typing speed trainer with adaptive code-syntax drills

https://zippytype.vercel.app
1•afundeveloper•23m ago•0 comments

Laws of UX – in the age of AI vibe coding

https://lawsofux.com/
1•dheerajmp•26m ago•0 comments

Why Cloudflare rule order matters?

https://www.brzozowski.io/web-applications/2025/03/11/why-cloudflare-rule-order-matters.html
2•redfr0g•26m ago•0 comments

Never knew news websites could survive without ads

https://text.npr.org/
3•dheerajmp•26m ago•2 comments

Google.org Future of Work: 5 years of impact and lessons for the AI era

https://blog.google/company-news/outreach-and-initiatives/google-org/future-of-work-impact-report/
1•salkahfi•29m ago•0 comments

Custom AI Smart Speaker

https://openhome.com
1•edf13•30m ago•0 comments

Ask HN: Ten YoE as a software engineer, what's next with LLMs coming in fast?

2•Tmkly•32m ago•1 comments

Finding Hope in the Shape of Failure: Bottling Infinity in Distributed Systems

https://forkracefold.com/
1•taylorbuley•34m ago•0 comments

WebMCP

https://github.com/webfuse-com/awesome-webmcp
2•tonysurfly•36m ago•0 comments

Given a narrator

https://andrewshawcare.com/given-a-narrator/
1•andrewshawcare•36m ago•0 comments

Mr. Nobody for Putin

https://ru.themoscowtimes.com/2026/02/27/gospodin-nikto-za-putina-a188312
1•profstasiak•40m ago•1 comments

Ask HN: Did GitHub remove Opus and Sonnet from their Copilot Pro subscription?

3•lgl•42m ago•2 comments

Web Rewind – A Touch of Nostalgia

https://www.web-rewind.com/
1•mistat•43m ago•0 comments

Echoed – A Lightweight Discord Alternative

https://echoed.gg/
1•shaongitbd•43m ago•0 comments

The State of Allocators in 2026

https://cetra3.github.io/blog/state-of-allocators-2026/
2•ashvardanian•45m ago•0 comments

ASAT (Advanced Spreadsheet Alteration Tool)

https://github.com/okt4v/ASAT
1•okt4v•46m ago•1 comments

Show HN: Generate, Clean, and Prepare LLM Training Data, All-in-One

https://github.com/OpenDCAI/DataFlow
2•Junnn•48m ago•0 comments

Would maintaining such an open-source project be helpful to my career?

https://github.com/keminze/volo-data
1•kkmz•48m ago•0 comments

BriefMe – AI meeting briefs auto-generated from your calendar (no manual input)

https://www.briefme.wtf
1•Dev_Alex•49m ago•0 comments

Claude – Ask me 10 clarifying questions

https://zencapital.substack.com/p/claude-ask-me-10-clarifying-questions
1•zenincognito•52m ago•1 comments

If AI Writes the Code, Who Builds the Next Open Source Project?

https://blog.scottlogic.com/2026/03/15/if-ai-writes-the-code-who-builds-the-next-open-source-proj...
1•ColinEberhardt•52m ago•0 comments

Would You Help Me?

https://comuniq.xyz/post?t=860
2•01-_-•53m ago•1 comments

3D tic tac toe – coded via WhatsApp massages to OpenClaw

https://arthur-ficial.github.io/tictactoe-3d/
1•franze•55m ago•0 comments
Open in hackernews

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

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