frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Is code quality and design systems the new SWE?

https://old.reddit.com/r/cscareerquestions/comments/1sukvlf/is_learning_code_quality_and_design_s...
1•SantiDev•2m ago•1 comments

Tiny 1000bhp 13Kg YASA Motor Cuts 200kg from EVs [video]

https://www.youtube.com/watch?v=B2Hl4c1iZK0
1•Lio•3m ago•0 comments

Tenth Circuit Broadens CFAA 'Loss' Beyond Technological Harm–Moxie vs. Nielsen

https://blog.ericgoldman.org/archives/2026/04/tenth-circuit-broadens-cfaa-loss-beyond-technologic...
1•hn_acker•4m ago•0 comments

Rust-coreutils – Program Security Assesment [pdf]

https://github.com/Zellic/publications/blob/master/uutils%20coreutils%20-%20Zellic%20Audit%20Repo...
1•delamon•4m ago•1 comments

Build Your Own Trust Chain

https://blog.certisfy.com/2026/04/build-your-own-trust-chain.html
1•Edmond•4m ago•0 comments

Google plans to invest up to $40B in Anthropic

https://www.reuters.com/business/google-plans-invest-up-40-billion-anthropic-bloomberg-news-repor...
1•wslh•5m ago•0 comments

The Atlas of AI Interaction Design

https://ai-interaction.com/
1•laurex•5m ago•0 comments

Firebird Web Client – open-source, browser-based IDE for Firebird databases

https://github.com/ZlatanOmerovic/firebird-web-client
1•mariuz•6m ago•0 comments

Age checks could turn internet into an ID checkpoint, complains Proton CEO

https://www.theregister.com/2026/04/23/proton_ceo_age_checks_id_checkpoint/
2•Bender•8m ago•1 comments

Ask HN: Any Niantic engineers or staff here who can help me?

1•jedberg•8m ago•0 comments

Tell HN: Anthropic won't reset usage limits for those who downgraded

1•vintagedave•8m ago•0 comments

Designing a Memory System for LLM-Based Agents

https://zby.github.io/commonplace/notes/designing-agent-memory-systems/
1•thomasweiser•8m ago•0 comments

Weak security means attackers could disable all of a city's public EV chargers

https://www.theregister.com/2026/04/24/rentable_iot_security_flaws/
4•Bender•8m ago•0 comments

Intel Binary Optimization: Worth it for the few?

https://www.lttlabs.com/articles/2026/04/24/intel-binary-optimization-worth-it
2•LabsLucas•9m ago•1 comments

Use of AI in Indian elections (2026)

https://www.channelnewsasia.com/asia/india-state-elections-ai-use-campaigning-6063751
2•debarshri•10m ago•0 comments

Show HN: Rook, a macOS notes app for developers

2•maryamtb•11m ago•0 comments

Plants Can Hear the Sound of Falling Rain

https://nautil.us/plants-can-hear-the-sound-of-falling-rain-1280186
2•Brajeshwar•11m ago•0 comments

As electric aspirations fade, Porsche sells its stake in Bugatti

https://arstechnica.com/cars/2026/04/as-electric-aspirations-fade-porsche-sells-its-stake-in-buga...
2•Bender•11m ago•0 comments

Styxx – text-only drift detector 0.916 AUC beats hidden-state baseline

https://github.com/fathom-lab/styxx
2•fathomlab•11m ago•0 comments

StreamComments lets you read and write comments while watching Netflix

https://chromewebstore.google.com/detail/streamcomments/bjpolkbchhpfmmiljggomjpojhigkebg
2•sandebert•18m ago•0 comments

Machine learning& gut microbiome pathway analysis in Alzheimer's risk prediction

https://alz-journals.onlinelibrary.wiley.com/doi/10.1002/dad2.70340
2•bookofjoe•19m ago•0 comments

SDL Now Supports DOS

https://github.com/libsdl-org/SDL/pull/15377
2•Jayschwa•19m ago•0 comments

Show HN: MR Links – Inline link references for Marginal Revolution blog posts

https://github.com/donchuru/mr-links
2•nanfinitum•19m ago•0 comments

Show HN: Turn speech into text anywhere via hotkey (runs on Intel NPU, no cloud)

https://github.com/anubhavgupta/whisper-npu
2•anubhav200•20m ago•4 comments

I Turned the Game Boy Color into a Watch

https://www.youtube.com/watch?v=gTUg_NePXy8
2•mehackernewsacc•21m ago•0 comments

Cloud Functions in Firebase now supports Dart as an experimental feature

https://twitter.com/Firebase/status/2047405653879070917
2•nostromoWOWWOW•21m ago•0 comments

Diatec, known for its mechanical keyboard brand FILCO, has ceased operations

https://gigazine.net/gsc_news/en/20260424-filco-diatec/
3•gslin•22m ago•0 comments

Firefox Has Integrated Brave's Adblock Engine

https://itsfoss.com/news/firefox-ships-brave-adblock-engine/
4•eaf7e281•23m ago•0 comments

ReactGhost: Four locations of an unguarded property lookup in React Flight

https://reactghost.com/
2•cybrdude•25m ago•0 comments

Beware Software Brain

https://anderegg.ca/2026/04/23/beware-software-brain
3•Brajeshwar•26m ago•1 comments
Open in hackernews

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

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