frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fabricated citations: an audit across 2·5M biomedical papers

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(26)00603-3/fulltext
1•gjuggler•1m ago•0 comments

"I just find AI to be creatively soulless."

https://www.theverge.com/games/928668/i-just-find-ai-to-be-creatively-soulless
2•1vuio0pswjnm7•1m ago•0 comments

Preserving Fisher-Price Pixter

https://dmitry.gr/?r=05.Projects&proj=37.%20Pixter
1•birdculture•4m ago•0 comments

ChatGPT Helped Me Achieve a New Personal Best in the Marathon

https://www.teesche.com/blog/how_chatgpt_helped_me_achieve_a_new_personal_best_in_the_marathon
2•speckx•5m ago•0 comments

My glioblastoma-assisted research work

https://orcid.org/0000-0002-4206-3283
1•fredokun•5m ago•1 comments

Moving 20 apps off of React in a Day, pixel for pixel

https://c5r.medium.com/moving-20-apps-off-of-react-in-a-day-7bcb8bbc380e
1•caliChander•6m ago•0 comments

The room where it happens

https://certiv.ai/blog/the-room-where-it-happens/
1•azhenley•6m ago•0 comments

Earliest octopuses were giant top predators in Cretaceous oceans

https://www.science.org/doi/10.1126/science.aea6285
2•smartmic•7m ago•0 comments

AI agents that pay their own way – HTTP 402 and USDC on Base

https://x402.coinopai.com/
1•agenticbotbot•9m ago•0 comments

Cost of enum-to-string: C++26 reflection vs. the old ways

https://vittorioromeo.com/index/blog/refl_enum_to_string.html
1•SuperV1234•9m ago•0 comments

User reports show problems with Spotify

https://downdetector.ca/status/spotify/
1•uncognic•9m ago•0 comments

Organize your photos by people

https://amrshawky.com/posts/what-is-picpocket/
1•amr_shawky•12m ago•0 comments

Show HN: Kplane – Isolated cloud environments for AI agents

https://www.kplane.dev/
1•lexokoh•13m ago•0 comments

Why do tubes sound different than transistors?

https://allforturntables.com/2023/10/23/why-do-tubes-sound-different-than-transistors/
2•rolph•13m ago•0 comments

Is This Why Science Advances One Funeral at a Time?

https://nautil.us/is-this-why-science-advances-one-funeral-at-a-time-1280650
1•Brajeshwar•15m ago•0 comments

Collaborate – a Claude skill for multi-person AI-assisted document writing

https://github.com/googlarz/collaborate
1•googlarz•20m ago•0 comments

The Exception Economy

https://replicacyber.com/the-exception-economy-when-every-path-forward-has-a-cost/
1•gmljustin•21m ago•0 comments

Show HN: Agentic interface for mainframes and COBOL

https://www.hypercubic.ai/hopper
3•sai18•21m ago•1 comments

Where do we think we're going with proprietary AI?

https://crib.social/notice/B6E7MXvhQQXjSdAmOG
1•gslepak•21m ago•0 comments

Wigle: Crowdsourced network map of BT, BLE, WiFi points via wardriving phone app

https://wigle.net
1•cdvonstinkpot•22m ago•0 comments

In a quest to becoming AI-independent

https://adlrocha.substack.com/p/adlrocha-in-a-quest-to-becoming-ai
1•gmays•24m ago•0 comments

Brilliant Labs brooks no dissent as the Halo SNAFU continues

https://jfloren.net/b/2026/5/12/0
1•floren•24m ago•0 comments

Ask HN: Job Search Skill for Claude?

2•OldSchoolTV•25m ago•0 comments

Microsoft's $1B AI data center will "switch off half of Kenya"

https://www.windowscentral.com/artificial-intelligence/kenya-president-warns-microsofts-1-billion...
3•pjmlp•25m ago•1 comments

Original Sachertorte loses in blind test against cheap supermarket brands

https://konsument.at/test/tastecheck-sachertorte
1•Markoff•25m ago•0 comments

Mass Supply Chain Attack Hits TanStack, Mistral AI NPM and PyPI Packages

https://safedep.io/mass-npm-supply-chain-attack-tanstack-mistral/
1•ezekg•25m ago•0 comments

Radar Trends to Watch: May 2026

https://www.oreilly.com/radar/radar-trends-to-watch-may-2026/
1•mparnisari•25m ago•0 comments

Platform Timing Is a Strategic Decision

https://www.michael-ploed.com/blog/platform-timing-is-a-strategic-decision
2•gpi•26m ago•0 comments

Googlebook, Designed for Gemini Intelligence

https://blog.google/products-and-platforms/platforms/android/meet-googlebook/
6•meetpateltech•26m ago•1 comments

Microplastics turn up in nearly every human brain sample

https://medicalxpress.com/news/2026-04-microplastics-human-brain-sample-healthy.html
2•PaulHoule•26m ago•1 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