frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How do you audit what your autonomous agents did?

https://github.com/BrightbeamAI/chap
1•arsalanshahid•23s ago•0 comments

Kilo Code has been acquired by Anaconda

https://www.anaconda.com/blog/anaconda-acquires-kilo-code
1•poorvsahu•28s ago•0 comments

The Psychology of Software Teams

https://www.routledge.com/The-Psychology-of-Software-Teams/Hicks/p/book/9781032963389
2•dcre•1m ago•0 comments

Show HN: AI-powered sports analytics and social betting platform

https://statsniper.com/
2•not_wowinter13•1m ago•0 comments

Featurevisor v3 – open-source feature flags management with Git

https://featurevisor.com/blog/v3-release/
3•fahad19•2m ago•0 comments

Open-source memory for coding agents, synced over SSH

https://github.com/vshulcz/deja-vu/
3•vshulcz•2m ago•0 comments

Unsolved Problems in MLOps

https://spawn-queue.acm.org/doi/pdf/10.1145/3762989
3•gnyeki•2m ago•0 comments

Purging George Orwell's books misses what drives the political right

https://theloop.ecpr.eu/purging-the-books-of-george-orwell-will-not-halt-the-rise-of-the-politica...
2•jruohonen•4m ago•1 comments

Codex Micro

https://openai.com/supply/co-lab/work-louder/
3•davidbarker•5m ago•0 comments

OpenAI's first branded hardware is a light-up keyboard?

https://arstechnica.com/ai/2026/07/openais-first-branded-hardware-is-a-light-up-keyboard/
3•cdrnsf•5m ago•0 comments

OpenAI Launches Hardware for Codex

https://www.theverge.com/ai-artificial-intelligence/965901/openai-hardware-codex-micro-launch
3•whalesalad•5m ago•0 comments

2081681993819799846994786333448627702865224538845305484256394568209274196 (etc.) [video]

https://www.youtube.com/watch?v=1cvKGqgOx_8
2•lr0•5m ago•0 comments

Network routing correctness ≠ distribution completeness [pdf]

https://static1.squarespace.com/static/6a0160b578abca0542beab1d/t/6a545da888c407314b0e6289/178391...
2•siliconmtn•6m ago•0 comments

Show HN: OtoDock, run Claude Code and Codex as a team of agents on your server

https://github.com/OtoDock/oto-dock/
2•dimitrismrtzs•6m ago•0 comments

What happens when your VPN meets 200 AI agents

https://thenewstack.io/unified-access-ai-agents/
1•Brajeshwar•6m ago•0 comments

Kilo Code has been acquired by Anaconda

https://twitter.com/kilocode/status/2077394060248076699
3•tosh•6m ago•0 comments

We're Starting To Trust Some Clusters - OCI Has Two Of Them

https://webbynode.com/articles/were-starting-to-trust-some-clusters-oci-is-one-of-them
1•gsgreen•9m ago•0 comments

Rest of the Owl: Completes the full dev cycle given a well defined task

https://github.com/steph-dove/klaussy-agents/blob/main/src/klaussy/templates/skills/rest-of-the-o...
1•klaussy•9m ago•0 comments

BREAKFAST – Mechanical Engineer – Brooklyn NY – On-Site – Full-Time or Freelance

https://theartistbreakfast.com/works
1•mattiasgunneras•9m ago•0 comments

The Other Norwegian

https://granta.com/the-other-norwegian/
1•jruohonen•10m ago•0 comments

Nix in FedRAMP High environments now available in FlakeHub

https://determinate.systems/blog/flakehub-fedramp-high/
2•jmartens•10m ago•0 comments

German Court Orders Deletion of Footage Exposing Pig Gas Chambers

https://veganhorizon.substack.com/p/punished-for-exposing-the-truth
2•hn_acker•10m ago•0 comments

Show HN: Mindlas – catch your coding agent drifting before the bad code lands

https://github.com/Evolutionairy-AI/MINDLAS
1•MAESTRO1955•12m ago•0 comments

How we're saving 50k$ of Claude API every month

https://github.com/regolo-ai/brick-SR1
1•FrancescoMassa•13m ago•1 comments

After Geneva, AI Governance Must Confront the Trust Deficit

https://www.techpolicy.press/after-geneva-ai-governance-must-confront-the-trust-deficit/
1•cdrnsf•15m ago•0 comments

The Internet Had a North Star. The UN's Global Dialogue Made Clear AI Doesn't

https://www.techpolicy.press/the-internet-had-a-north-star-the-uns-global-dialogue-made-clear-ai-...
1•cdrnsf•16m ago•0 comments

Alzheimer's Blood Tests Offer New Promise to Diagnose and Predict the Disease

https://www.nytimes.com/2026/07/15/well/mind/alzheimers-disease-blood-tests-symptoms.html
2•elo2000•16m ago•0 comments

Treating generic drugs as something special can wreck affordability

https://www.46brooklyn.com/research/wrecklimid-how-treating-generic-drugs-as-something-special-ca...
2•toomuchtodo•17m ago•1 comments

Meta employees sue, allege AI-driven layoffs targeted medical, parental leave

https://apnews.com/article/meta-lawsuit-workers-target-ai-layoffs-leave-019fb9c7fdc09167e91547546...
3•1vuio0pswjnm7•17m ago•0 comments

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

https://github.com/welcome-to-the-sunny-side/misa77
2•nonadhocproblem•19m 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