frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Riftri – copy-on-write Git worktrees for running agents in parallel

https://twitter.com/KinfishT/status/2102093551601684897
1•kinfish•1m ago•0 comments

The JavaScript Midlife Crisis

https://maroun-baydoun.com/blog/javascript-midlife-crisis/
1•maroun-baydoun•2m ago•0 comments

Ask HN: Ideas for getting more GitHub stars?

2•NatalieTrono•3m ago•0 comments

Open source tool for building hierarchical agent loops

https://github.com/plasma-ai/fractal
1•NatalieTrono•5m ago•0 comments

How the Barcode Was Invented

https://worldofsystems.co/invention-of-the-barcode/
1•eawosika•7m ago•1 comments

I built a tool that reverse engineers competitors SEO

https://www.rankshawk.com
2•fanel•7m ago•1 comments

Egress Testing – Server that records inbound TCP and UDP packets

https://portleak.link/
1•Xtrato•11m ago•1 comments

A16Z is challenging Silicon Valley's love for drop-outs by launching a school

https://techcrunch.com/2026/09/22/a16z-is-challenging-silicon-valleys-love-for-drop-outs-by-launc...
2•wslh•12m ago•1 comments

Reading specs beats reading code

https://technative.eu/en/blog/specgetty-introduction/
1•mipselaer•16m ago•1 comments

Native apps written in TypeScript and CSS

https://github.com/geastack/examples
4•arbayi•18m ago•0 comments

Agent manager now with mouse support

https://agent-manager.dev/writing/mouse-support/
3•Michaelov•19m ago•2 comments

Obscura: The first VPN that can't log your activity

https://obscura.com/#faq-technical
10•Flimm•20m ago•2 comments

AI Leaders Are Standing on a Liability Landmine

https://www.wsj.com/tech/ai/ai-leaders-are-standing-on-a-liability-landmine-736a8060
5•JumpCrisscross•20m ago•1 comments

WebMCP Integration at Stripe

https://twitter.com/stevekaliski/status/2102452850391654512
1•aghilmort•22m ago•0 comments

Show HN: Which of your secrets did your coding agent send?

https://github.com/AGGIB/Stroq
1•Agybay•23m ago•1 comments

ShinyHunters hackers say they breached FBI

https://www.reuters.com/world/shinyhunters-hackers-say-they-breached-federal-bureau-investigation...
5•JumpCrisscross•25m ago•0 comments

Meta testing a 'human concierge' for its new personal AI agent, Muse

https://www.reuters.com/business/meta-testing-human-concierge-its-new-personal-ai-agent-muse-2026...
2•mfiguiere•25m ago•0 comments

Show HN: ClassD-VHF-Transmitter – Covert RF Transmission via Phone Speaker PWM

https://github.com/TA1EEI/ClassD-VHF-Transmitter
1•TA1EEI•26m ago•0 comments

The human brain is two separate organs, study finds

https://news.stanford.edu/stories/2026/09/human-brain-two-separate-organs
10•freediver•27m ago•2 comments

I built the Jev architecture one year ago and open-sourced it

https://www.reddit.com/r/LocalLLaMA/comments/1wijo3e/i_literally_built_the_jev_architecture_one_y...
5•htk•30m ago•0 comments

He Said AI? Sharpen the Pitchforks

https://forta.com/blog/he-said-ai-sharpen-the-pitchforks
1•rmason•31m ago•1 comments

Show HN: junkDrawer.ai – Browse eBay with AI Agent and Dynamic Filtering

https://www.junkdrawer.ai
1•junkDrawer_ai•31m ago•0 comments

DiscoBox: AI Coding Agents in Disposable Sandboxes

https://github.com/discobox-ai/discobox
1•TheIronYuppie•31m ago•0 comments

Why I'm deciding to go ad-free to support my product

https://trainmap.co.uk/
2•optionalltd•33m ago•1 comments

A Faster Shortest Path Algorithm

https://www.vals.ai/blogs/faster-shortest-path-algorithm
3•leumon•35m ago•0 comments

New time zone code: PCT for British Columbia

https://archive.news.gov.bc.ca/releases/news_releases_2024-2028/2026CITZ0009-001073.htm
1•emptybits•36m ago•1 comments

GPT-6 Sol and Luna push the cost-efficiency frontier

https://artificialanalysis.ai/articles/gpt-6-sol-and-luna-push-the-cost-efficiency-frontier
3•wertyk•39m ago•0 comments

How Scared Should We Be of A.I.?

https://www.nytimes.com/2026/09/05/opinion/ai-silicon-valley.html
3•unsignedchar•39m ago•0 comments

Show HN: Slivingdoc – High scale durable UTF-8 context manager for agents

https://www.slivingdoc.dev/
1•baalimago•42m ago•0 comments

A CPU Runs a Program [video]

https://www.youtube.com/watch?v=qTTL5heVB6E
1•dadawei•43m 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