frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ScyllaDB MCP Server: What AI-Native Developer Distribution Looks Like

https://www.devexp.ai/blog/scylladb-mcp-server-case-study.html
1•uberdru•1m ago•0 comments

Toto 2.0: Time series forecasting enters the scaling era

https://www.datadoghq.com/blog/ai/toto-2/
1•joelthelion•2m ago•0 comments

Show HN: I built a free AI startup validator – it scored a dog walking app 4/10

https://tools.predictionoracle.io/
1•johnleslie_pm•5m ago•0 comments

Coal is rising in China's clean energy transition

https://thediplomat.com/2026/04/coal-is-rising-in-chinas-clean-energy-transition/
1•leonidasrup•5m ago•0 comments

MINA BTP

https://mina-btp.com
1•Elisa_Blue•9m ago•0 comments

Crypto Prediction Markets Explained

https://www.chainalysis.com/blog/crypto-prediction-markets/
1•Anon84•11m ago•0 comments

Prolog Basics Explained with Pokémon

https://unplannedobsolescence.com/blog/prolog-basics-pokemon/
1•birdculture•13m ago•0 comments

Chinese short dramas became AI content machines

https://www.technologyreview.com/2026/05/15/1137326/chinese-short-dramas-ai/
1•joozio•14m ago•0 comments

ACM ByteCast Interview with Sendmail Developer Eric Allman

https://learning.acm.org/bytecast/ep85-eric-allman
1•t-3•17m ago•0 comments

O(x)Caml in Space

https://gazagnaire.org/blog/2026-05-14-borealis.html
3•yminsky•19m ago•0 comments

The Secret World of Tiny Phones That Go Inside Your Butt (2016)

https://www.vice.com/en/article/prison-phones-that-go-up-your-bum/
1•downbad_•23m ago•0 comments

MVRV Regime Monitor – the only crypto strategy that survived held-out validation

https://github.com/lonelyobserver0/mvrv-regime-monitor
1•lonelyobserver0•24m ago•0 comments

The Sigmoids Won't Save You

https://www.astralcodexten.com/p/the-sigmoids-wont-save-you
1•Tomte•24m ago•0 comments

WxRuby3 v1.70 Released

https://github.com/mcorino/wxRuby3/discussions/473
1•mariuz•25m ago•0 comments

Hello Robot's Wheeled Home Robot Ditches Humanoid Hype

https://spectrum.ieee.org/stretch-4-home-robot
1•rbanffy•32m ago•0 comments

Clippy can send emails, write excel sheets, and interact with any application

https://clippyai.app
2•AmDab•33m ago•0 comments

Developer Experience Is a Performance Feature

https://bytecode.news/posts/2026/05/developer-experience-is-a-performance-feature
2•LaSombra•35m ago•0 comments

Steve Jobs Next Computer: His Forgotten Exile Years

https://spectrum.ieee.org/steve-jobs-next-computer
2•rbanffy•40m ago•0 comments

SDL Library Adds Support for the New Steam Controller Without Depending on Steam

https://www.phoronix.com/news/SDL-Steam-Controller-2026
2•haunter•40m ago•1 comments

Justice Department Investigation Determines Yale Discriminated Based on Race

https://www.justice.gov/opa/pr/justice-department-investigation-determines-yales-medical-school-d...
3•Claudus•43m ago•1 comments

NanoTDB – Golang Append-Only Time Series DB

https://github.com/aymanhs/nanotdb
2•aymanhs72•43m ago•0 comments

Known by Their Actions: Fingerprinting LLM Browser Agents via UI Traces

https://arxiv.org/abs/2605.14786
1•sbulaev•46m ago•1 comments

Tachyons Neo – Utility CSS without build step

https://tachyonsneo.com
2•hit8run•50m ago•1 comments

Show HN: OrcaSheets, local first analytics engine to process billions of rows

https://orcasheets.ai
2•ydgandhi•51m ago•0 comments

How to Enter Side Doors

https://velvetnoise.substack.com/p/how-to-enter-side-doors
2•jger15•55m ago•0 comments

Nairobi became a nexus for the black market in giant harvester ants

https://www.theguardian.com/environment/ng-interactive/2026/may/13/smuggled-illegal-global-trade-...
2•Michelangelo11•1h ago•1 comments

Scryve-tools – Unified wallet auth for CKB, EVM, and BTC in one NPM package

https://github.com/tecmeup123/scryve-tools
1•scryve•1h ago•0 comments

The Earliest Known Dentistry Wasn't Done by Our Species

https://www.sciencealert.com/the-earliest-known-dentistry-wasnt-done-by-our-species
2•janandonly•1h ago•1 comments

Show HN: Sanjaya – Academic paper discovery and extraction (OpenAlex/Scrapy)

https://sanjaya-six.vercel.app/
2•oug-t•1h ago•1 comments

Rest alone doesn't fix burnout. Here's the structural reason why

https://www.sharks-coaching.com/content-hub/emotions-and-stress-management/how-to-recover-from-bu...
4•roxxon_1•1h ago•2 comments
Open in hackernews

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

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