frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Harvard and the Cloudflare Governance Fight

https://www.ft.com/content/a95aebcf-6cfe-418c-8c11-ddf05f3aef4d
1•AnodicElegy•56s ago•1 comments

One LLM agent per trade over construction site photos

https://trpevski.com/blog/ai-construction-inspection-contractors-cannot-argue-with/
1•gorillax•1m ago•0 comments

Repo indexing was doing more harm than good, so we dropped it from our agent

https://thegit.ai/blog/why-we-abandoned-repository-indexing
1•waximabbax•5m ago•0 comments

On the way to automate user manuals and knowledge bases

https://typemill.net/news/on-the-way-to-automate-user-manuals-and-knowledge-bases
1•trendschau•9m ago•0 comments

PEP 805 – Safe Parallel Python – peps.python.org

https://peps.python.org/pep-0805/
1•rbanffy•10m ago•0 comments

12 Sunsets: Exploring Ed Ruscha's Archive

https://12sunsets.getty.edu/
1•gregoire•14m ago•0 comments

Agent loops stop re-reading your codebase on every turn

https://runinfra.ai/inference-api
2•OsamaJaber•21m ago•0 comments

Agents' collaboration in the OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/#~1200-agents-sent-%3...
1•dmazin•25m ago•0 comments

Samsung updates Galaxy S24 FE with August 2026 security patch

https://www.sammobile.com/news/samsung-updates-galaxy-s24-fe-with-august-2026-security-patch/
1•ledoncool•28m ago•0 comments

I Cut 80%+ of Context Overhead in My Coding Agent

https://m-reschreiter.at/en/blog/how-i-cut-80-percent-context-overhead-dynamic-tools
2•asm3r96•29m ago•0 comments

IFA 2026 Preview: On-device AI PCs, DJI robotics, and Xiaomi's European debut

https://forgeeks.net/ifa-2026-local-ai-robots-devices/
2•kuuuzya•32m ago•0 comments

Show HN: Puppetflow a free browser automation platform

https://github.com/puppetflow/puppetflow
1•jierka•34m ago•0 comments

Unique Bronze Age "Treasures of Villena" Stolen in Spain

https://radar.am/en/news/science-2775622103/
1•Bluestein•34m ago•0 comments

'Mad honey' that can stop your heart is being sold online

https://phys.org/news/2026-08-mad-honey-heart-sold-online.html
2•samizdis•34m ago•0 comments

The Server Called Paranoia: Defend Autistici/Inventati

https://cavallette.noblogs.org/2026/08/10083/2
1•rapnie•42m ago•0 comments

A Perfect SimCity

https://www.jeffquast.com/post/a-perfect-simcity/
2•alexisread•42m ago•0 comments

Thunderquakes: A new way to image the Earth's subsurface

https://www.psu.edu/news/earth-and-mineral-sciences/story/thunderquakes-new-way-image-earths-subs...
2•geox•45m ago•0 comments

Hilariously Fast Volume Computation with the Divergence Theorem

https://alyssarosenzweig.ca/blog/hilariously-fast-volume-computation-with-the-divergence-theorem....
2•luu•51m ago•0 comments

Your AGENTS.md file doesn't do anything

https://pivot-to-ai.com/2026/08/27/your-agents-md-file-doesnt-actually-do-anything/
1•latexr•51m ago•0 comments

Review: A month with a Solargrow solar system

https://james.cridland.net/blog/2026/solargrow-isolarcloud-review/
2•DamonHD•54m ago•0 comments

Judge rules Trump administration illegally punished AI firm Anthropic

https://www.cbsnews.com/news/judge-rules-trump-administration-illegally-punished-ai-firm-anthropic/
3•mgh2•55m ago•2 comments

Show HN: AgentParty – cross-session chat for coding agents across machines

https://github.com/leeguooooo/AgentParty
2•leeguoo•57m ago•0 comments

The Wall Confronting Reliable Coding Agent Autonomy

https://codemanship.wordpress.com/2026/08/28/the-wall-confronting-reliable-coding-agent-autonomy/
2•flail•58m ago•0 comments

Show HN: Rosebed – A Minecraft beta 1.7.3 reimplementation in Zig

https://github.com/mdmrk/rosebed
1•talentedRed•58m ago•0 comments

Show HN: 18 Words, Zanagrams and Sunflowers Are Now PZL Games

6•pompomsheep•1h ago•1 comments

ClickHouse winning this soo called observability war?

https://clickhouse.com/blog/is-clickhouse-winning-the-observability-wars
1•gingenio•1h ago•0 comments

Show HN: Rafter – an MCP server that shares one team's memory, skills and agents

https://heyrafter.xyz/
2•kristohb•1h ago•0 comments

Summer's over: take out your notebooks (or Loreline)

https://loreline.app/en/journal/august-2026/
2•gr4vityWall•1h ago•0 comments

Another look at SQLite's WAL-Reset bug

https://theconsensus.dev/p/2026/08/23/another-look-at-sqlite-wal-reset.html
3•blueshoess•1h ago•0 comments

The Interactive Way to Go

https://web.archive.org/web/20210831172631/http://playgo.to/iwtg/en/
1•Bluestein•1h 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