frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Asus Bike Booster

https://www.asus.com/accessories/bike-booster/asus-oxiis/oxiis-intelligent-bike-booster/
1•wiradikusuma•2m ago•0 comments

AI agents ran an autonomous cyberattack on Taiwan

https://www.threads.com/?injected_media_ids=%5B%223961847099071291455%22%5D
1•BlueBerry2001•2m ago•0 comments

OpenAI Is Quietly Testing an $8 Pay-to-Reset Quota Feature

https://www.businessinsider.com/openai-pay-to-reset-quota-feature-2026-8
1•doppp•3m ago•0 comments

A SAT Attack on Tarski's High School Algebra Problem

https://arxiv.org/abs/2608.08421
1•matt_d•4m ago•0 comments

LinkedIn CringeBot 3000

https://www.cringebot3000.com/
1•theanonymousone•4m ago•0 comments

There are 25% more psychotherapy sessions at 53 minutes than at 52

https://www.trytwofold.com/insights/53-minute-billing-threshold
1•ragswag•5m ago•0 comments

Swiss public broadcaster to block AI scrapers – except Swiss model Apertus

https://www.nzz.ch/feuilleton/wir-muessen-uns-verteidigen-warum-susanne-wille-sich-gerade-mit-der...
1•brotmaa•6m ago•0 comments

We improved 15 LLMs at coding in one afternoon. Only the harness changed

https://stencil.so/blog/the-harness-problem
1•latchkey•7m ago•0 comments

Brain scans show that dogs can distinguish various emotions in human faces

https://www.univie.ac.at/en/news/detail/brain-scans-show-that-dogs-can-distinguish-various-emotio...
1•geox•9m ago•0 comments

Iraqi desserts article

https://nomadsunveiled.com/iraqi-desserts-sweets/
1•marysminefnuf•9m ago•0 comments

UK extreme heat prompts Cobra emergency meeting

https://www.theguardian.com/uk-news/2026/aug/12/uk-extreme-heat-prompts-cobra-emergency-meeting
1•tosh•11m ago•1 comments

China bans AI companions, forcing millions to break up with virtual partners

https://www.abc.net.au/news/2026-07-19/china-cracks-down-on-artificial-intelligence-companions/10...
2•vrganj•13m ago•0 comments

The Liberal Turn Against Free Speech

https://twitter.com/phl43/status/2087182515643519251
1•barry-cotter•14m ago•1 comments

Show HN: WhatsApp Contact Exporter

https://chromewebstore.google.com/detail/contact-exporter-for-wa/dfchifnmhmdeahedgneamifgellcajeb
1•qwikhost•17m ago•0 comments

Thailand suspends gun licences as teen shooter's victims are cremated

https://www.theguardian.com/world/2026/aug/12/thailand-suspends-gun-licences-teenage-shooter-gran...
1•Markoff•17m ago•0 comments

Show HN: Pantheon. Production-ready scientific workflows for the Horus Runtime

https://github.com/temple-compute/pantheon
1•chdominguez•22m ago•0 comments

The Institute Behind Taiwan's Chip Dominance

https://asteriskmag.com/issues/13/the-institute-behind-taiwan-s-chip-dominance
1•barry-cotter•22m ago•0 comments

Watch out for cache read costs

https://martinalderson.com/posts/watch-out-for-cache-read-costs/
1•cyliu•22m ago•0 comments

Ask HN: Has HN considered adding dark mode?

1•tmp10423288442•28m ago•0 comments

Torx, Thermalizers, and Z1

https://extropic.ai/writing/from-one-to-one-billion/
1•flinkerflinks•30m ago•0 comments

AgentStory is a library of books written live by autonomous agents

https://agentstory.fly.dev/about
1•georgeck•32m ago•0 comments

A Room Full of Locksmiths

https://www.gnanaguru.com/blog/a-room-full-of-locksmiths/
1•gnanagurusrgs•33m ago•0 comments

Tiobe Index for August 2026: Java Nears C++ as Rust Holds No. 10

https://www.techrepublic.com/article/news-tiobe-august-2026-java-nears-c-plus-plus/
1•geoffbp•33m ago•0 comments

Nvidia AI Factory Compute Is Becoming an Investable Asset Class

https://twitter.com/jensenhuang/status/2086934705207959965
2•eecc•35m ago•0 comments

Studying AI welfare empirically [pdf]

https://nonhumanminds.org/wp-content/uploads/2026/07/Studying-AI-Welfare-Empirically.pdf
1•rufasterisco•37m ago•0 comments

Interviewing Engineers in the AI Era: Lessons from a Year of Rebuilding

https://www.coinbase.com/en-gb/blog/interviewing-engineers-in-the-ai-era-lessons-from-a-year-of-r...
3•mweibel•41m ago•0 comments

Well-Known URIs

https://www.iana.org/assignments/well-known-uris
3•locknitpicker•41m ago•2 comments

A Functional Taxonomy of World Models – By Fei-Fei Li

https://www.worldlabs.ai/blog/taxonomy-of-world-models
1•vismit2000•41m ago•0 comments

DoorDash is set to become a Nevada-incorporated company

https://www.businessinsider.com/doordash-moves-incorporation-delaware-nevada-2026-8
2•NewCzech•42m ago•0 comments

Open-source harness builder for AI coding

https://github.com/coleam00/Archon
1•saikatsg•42m 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