frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic's "Claude for Open Source" program still charged $200

https://twitter.com/i/status/2034748327628005848
1•arccy•3m ago•0 comments

Walmart wins patents to give algorithms more sway over prices

https://www.ft.com/content/8c2338dc-9e2e-4561-955a-c2a6a6c4d28e
1•petethomas•6m ago•0 comments

Bombarding gamblers with offers greatly increases betting and gambling harm

https://www.bristol.ac.uk/news/2026/march/bombarding-gamblers-with-offers-greatly-increases-betti...
1•hhs•7m ago•0 comments

Open Source Gave Me Everything Until I Had Nothing Left to Give

https://kennethreitz.org/essays/2026-03-18-open_source_gave_me_everything_until_i_had_nothing_lef...
1•donutshop•8m ago•0 comments

The Stochastic Parrot Argument Considered Harmful

https://www.verysane.ai/p/polly-wants-a-better-argument
1•jacobedawson•10m ago•0 comments

Black Cube: Israeli spy firm crashes Slovenia's election

https://www.politico.eu/article/black-cube-leak-tape-corruption-israel-spy-firm-slovenia-election/
2•jamesgill•11m ago•0 comments

Randevu: Deterministic Schelling Points for Decentralized Temporal Coordination [pdf]

https://github.com/TypicalHog/randevu/blob/main/RANDEVU.pdf
1•TypicalHog•11m ago•0 comments

SpaceX Knocks Boeing from Dominant Role in NASA's Moon Mission

https://www.bloomberg.com/news/articles/2026-03-19/nasa-plans-bigger-spacex-moon-mission-role-in-...
2•spikels•12m ago•1 comments

Long dismissed in adult health, the thymus may be critical for longevity

https://www.massgeneralbrigham.org/en/about/newsroom/press-releases/thymus-critical-to-longevity-...
2•hhs•13m ago•0 comments

You're probably overpaying for everything you buy online

https://www.rectangle.so
2•Waseemkhalo•13m ago•1 comments

Show HN: Groq Emulator

https://mohamedkoubaa.com/groq-emulator
1•mohamedkoubaa•16m ago•0 comments

Forked Garry Tan's gstack and adapted for Google's Antigravity and Gemini-CLI

https://github.com/asecretcompany/gstack-fork
1•andrewjneumann•16m ago•0 comments

I Spoke to AI Agent Claude – Sen Bernie Sanders

https://www.youtube.com/watch?v=h3AtWdeu_G0
1•timetraveller26•18m ago•1 comments

ShouldIBuildThat finds app opportunities that appear across multiple signals

https://www.shouldibuildthat.com/
1•da352•19m ago•0 comments

Building a UI Framework [pdf]

https://software.hixie.ch/ui-frameworks.pdf
1•jarek-foksa•22m ago•0 comments

IdeaClaw – one sentence, get a camera-ready paper, BP, DD reports, health report

https://github.com/StartripAI/ideaClaw
1•AlfredHua1•23m ago•0 comments

What's in a name? – The unknown faces of history

https://www.uni-bonn.de/en/news/048-2026
1•hhs•23m ago•0 comments

Making an Argument for (Voluntary) Online Identity Verification

https://agoraid.com/blog/supporting-online-identity-verification/
1•kisamoto•24m ago•0 comments

To Catholic thinkers, Pentagon's AI demands violate 'human dignity'

https://www.washingtonpost.com/nation/2026/03/19/anthropic-war-ai-catholic-church/
1•reaperducer•27m ago•0 comments

I built a database scoring what separates high-scoring pitch decks from the rest

https://www.unbiasedventures.ch/pitch-deck-examples-2026/
1•peterweisz•27m ago•0 comments

House speaker, Intel chiefs make new push to renew surveillance law

https://www.reuters.com/legal/government/republican-speaker-intel-chiefs-make-new-push-renew-surv...
3•petethomas•28m ago•0 comments

Replacing Anki: what I learned building a language app (1k users, $21 MRR)

https://www.indiehackers.com/post/i-built-a-language-learning-app-to-replace-anki-1-000-users-21-...
1•vital_pavlenko•29m ago•0 comments

Agent-rendered: the pattern that replaces runtime infra with build-time AI

https://gumeo.github.io/post/agent-rendered-infrastructure/
1•gumeo•32m ago•0 comments

Vulnerabilities in OpenClaw: A Complete Enterprise Security Analysis

https://ClawNanny.com/docs_viewer?markdown_url=/static/docs/ClawNanny_OpenClaw_Enterprise_Securit...
1•OpenSystemApps•33m ago•0 comments

Minecraft Source Code Is Interesting

https://www.karanjanthe.me/posts/minecraft-source/
2•KMJ-007•33m ago•0 comments

AI Pentester

https://www.noscope.com/
1•realtryhackme•34m ago•0 comments

Update iOS to protect your iPhone from web attacks

https://support.apple.com/en-us/126776
1•tech234a•35m ago•0 comments

New "PolyShell" flaw allows unauthenticated RCE on Magento e-stores

https://www.bleepingcomputer.com/news/security/new-polyshell-flaw-allows-unauthenticated-rce-on-m...
1•uyzstvqs•35m ago•0 comments

Generalized Dot-Product Attention: Tackling Real-World Challenges in GPU Kernels

https://pytorch.org/blog/generalized-dot-product-attention-tackling-real-world-challenges-in-gpu-...
1•matt_d•36m ago•0 comments

Delve (YC W24) – Fake Compliance as a Service – Part I

https://deepdelver.substack.com/p/delve-fake-compliance-as-a-service
6•sebmellen•36m ago•0 comments
Open in hackernews

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

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