frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hidden Workers Secretly Powering ChatGPT [video]

https://www.youtube.com/watch?v=aooiDA-AsNo
1•ShinyLeftPad•55s ago•0 comments

Officially, Marco Rubio is still banned from China. So how is he in Beijing?

https://www.washingtonpost.com/world/2026/05/14/officially-marco-rubio-is-still-banned-china-so-h...
1•_tk_•1m ago•0 comments

The First Wafer Scale Company – Trilogy Systems Story Part 1 (2024)

https://thechipletter.substack.com/p/wafer-scale-trilogy-systems-part
1•klelatti•2m ago•0 comments

Economics of Expanding Medical Assistance in Dying to Vulnerable Populations

https://journals.sagepub.com/doi/10.1177/00302228251323299
1•NalNezumi•6m ago•0 comments

Hiring Trends in Mid 2026: What Founders Are Getting Wrong

https://foundersarehiring.com/hiring-resources/hiring-trends-mid-2026
1•niksmac•8m ago•0 comments

AI Font Detector: Smart Ways to Identify Fonts with Precision

https://www.tumblr.com/tracksaasly/816569321203613696/ai-font-detector-smart-ways-to-identify-fon...
1•emmaroutines•8m ago•0 comments

Non-interactive Claude Code usage ejected from subscriptions

1•mdemare•8m ago•0 comments

Why Ruby Is the Better Language for LLM-Powered Development

https://www.bytecode.hr/posts/why-ruby-is-the-better-language-for-llm-powered-development
1•faangguyindia•10m ago•0 comments

Firefox extension to browser the web in a 1990s GeoCities retro style

https://addons.mozilla.org/en-US/firefox/addon/geocities-time-machine/
2•whatsupdog•10m ago•1 comments

GitLab's Reliability Crisis: Developers Are Fed Up and Going Public

https://gitlab.com/gitlab-com/gl-infra/production/-/work_items/22104
1•joshwoodcock•11m ago•0 comments

James Reason, Who Used Swiss Cheese to Explain Human Error, Dies at 86 (2025)

https://www.nytimes.com/2025/03/13/science/james-reason-dead.html
1•zeristor•12m ago•2 comments

Remove .zig Files from Bun

https://github.com/oven-sh/bun/pull/30680
1•quasigloam•15m ago•0 comments

High-Entropy Alloy

https://en.wikipedia.org/wiki/High-entropy_alloy
1•leonidasrup•19m ago•0 comments

Azure Container Apps express overview

https://learn.microsoft.com/en-us/azure/container-apps/express-overview
1•mariuz•23m ago•0 comments

Perceptron Mk1 highly performant video analysis model 80% cheaper than big three

https://venturebeat.com/technology/perceptron-mk1-shocks-with-highly-performant-video-analysis-ai...
1•rswerve•23m ago•0 comments

ByteHug Technologies

https://play.google.com/store/apps/details?id=com.bytehug.daydonedayplanner&hl=en_US
1•AnjuAlias•25m ago•0 comments

Show HN: Midjourney Prompt Generator

https://www.midjourney-prompt-generator.eu/
1•manol_ai•29m ago•1 comments

Nginx Rift: Nginx Remote Code Execution via an 18-Year-Old Vulnerability

https://depthfirst.com/research/nginx-rift-achieving-nginx-rce-via-an-18-year-old-vulnerability
1•throwaway2027•36m ago•0 comments

Show HN: Mind Focus, an Android app for focus and attention recovery

https://www.ataraxiaapps.com/en/posts/app-mind-focus/
1•korax_nyx•39m ago•0 comments

Claude changes headless usage from June 15

https://twitter.com/ClaudeDevs/status/2054610152817619388
1•tzmlab•42m ago•0 comments

Less is exponentially more (2012)

https://commandcenter.blogspot.com/2012/06/less-is-exponentially-more.html
1•tosh•42m ago•0 comments

Behind the Sound of Ninja Gaiden: Ragebound

https://www.audiokinetic.com/en/community/blog/ninja-gaiden-ragebound/
1•severine•43m ago•0 comments

Lets Roast Your Website

1•ajaysheoran2323•44m ago•0 comments

Show HN: ChangeSpec – An open standard for notices in software changes

https://changespec.org/
1•cdnsteve•46m ago•1 comments

Daily Food Guessing Game

https://munchle.day/
1•shumaher•48m ago•0 comments

Riding the Leopard

https://www.notboring.co/p/riding-the-leopard
1•jger15•49m ago•0 comments

TypedArray.prototype.map()

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/map
1•tosh•49m ago•0 comments

Researchers say AI just broke every benchmark for autonomous cyber capability

https://cyberscoop.com/ai-autonomous-cyber-capability-benchmarks-broken-gpt5-claude-mythos/
1•lschueller•51m ago•0 comments

Avocado Studio – open-source AI content editor for Next.js sites

https://docs.avocadostudio.dev
1•yury_h•52m ago•0 comments

40-Year-Old System Analyzed with AI: It Turned Out to Have a Modern Architecture

https://medium.com/@noborutakahashi/a-40-year-old-system-analyzed-with-ai-it-turned-out-to-have-a...
1•fragmede•54m ago•0 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