frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

To Sparsify or to Quantize: A Hardware Architecture View

https://www.sigarch.org/to-sparsify-or-to-quantize-a-hardware-architecture-view/
1•matt_d•32s ago•0 comments

Tennessee grandmother jailed after AI face recognition error links her to fraud

https://www.theguardian.com/us-news/2026/mar/12/tennessee-grandmother-ai-fraud
1•danso•2m ago•0 comments

Don't Vibe – Prove

https://ngrislain.github.io/projects/2026-3-12-dont-vibe--prove/
1•ngrislain•7m ago•0 comments

I built the Vy replacement that launches March 26th, the day Vy shuts down

https://inceptive-ai.com
1•alymaknojiya•8m ago•1 comments

Meta delays rollout of new AI model after performance concerns

https://www.nytimes.com/2026/03/12/technology/meta-avocado-ai-model-delayed.html
2•wibbily•11m ago•1 comments

Adobe's longtime CEO to exit role amid AI disruption, shares fall

https://www.reuters.com/sustainability/boards-policy-regulation/adobe-announces-ceo-transition-sh...
3•tartoran•14m ago•0 comments

Cinema App Is for Movie Streaming or Games Too?

2•jackrandy•14m ago•0 comments

AlgoTradeAI

https://www.algotradeai.live/
2•narantechinc•16m ago•0 comments

One plan/spec to rule them all (at least replace lots of docs)

3•wek•16m ago•0 comments

In space, no one can hear you kernel panic

https://increment.com/software-architecture/in-space-no-one-can-hear-you-kernel-panic/
2•p0u4a•17m ago•1 comments

Rivian Introduces R2 Lineup, Sharing Full Trims and Pricing

https://rivian.com/newsroom/article/rivian-introduces-r2-lineup
3•freetime2•18m ago•0 comments

Show HN: Nix on Windows –- proof-of-concept demo

https://github.com/nix-windows/nix-windows-demo
2•Ericson2314•20m ago•0 comments

How a subtle CSP misconfiguration broke our admin panel and how we fixed it

https://syndicode.com/blog/csp-failure-rails/
2•lglazyeva•21m ago•0 comments

Auto-Browser – An MCP-native browser agent with human takeover

https://github.com/LvcidPsyche/auto-browser
1•Lvcid•23m ago•0 comments

Silicon Valley's New Obsession: Watching Bots Do Their Grunt Work

https://www.wsj.com/tech/ai/ai-bots-claude-openclaw-285ac816
1•bookofjoe•23m ago•1 comments

Silicon Valley Abuzz About Adding AI Compute to Engineer Compensation

https://www.businessinsider.com/ai-compute-compensation-software-engineers-greg-brockman-2026-3
1•healsdata•24m ago•0 comments

Show HN: Tarvos – Relay Architecture for infinitely building with coding agents

https://github.com/Photon48/tarvos/tree/main
1•Photon48•24m ago•0 comments

Enabling Efficient Sparse Computations Using Linear Algebra Aware Compilers

https://www.osti.gov/biblio/3013883
1•matt_d•24m ago•0 comments

Show HN: Parevo Core – Auth, tenant, permission in one Go library

https://github.com/parevo/core
1•parevo•26m ago•0 comments

Moving beyond RLM and ReAct based coding agents

https://randomlabs.ai/blog/slate
2•akira_067•28m ago•0 comments

Full Source Code of Sweden's E-Government Platform Leaked from Compromised CGI

https://darkwebinformer.com/full-source-code-of-swedens-e-government-platform-leaked-from-comprom...
2•reimertz•29m ago•0 comments

Musk's X to Alter Verification System in Europe

https://news.bloomberglaw.com/california-brief/musks-x-to-alter-verification-system-in-europe-com...
1•absqueued•34m ago•0 comments

K2 Black Panther: It Might Be the Best Tank on Earth

https://nationalsecurityjournal.org/k2-black-panther-it-might-be-the-best-tank-on-earth-not-made-...
1•ckmate-king-2•43m ago•0 comments

Apple Releases New Versions of iOS for Older iPhones

https://www.macrumors.com/2026/03/11/apple-ios-16-7-15-release/
5•mgh2•46m ago•2 comments

Add per-repo output language preference

1•nishiohiroshi•47m ago•0 comments

Feedback on a local-first MCP memory system for AI assistants?

https://github.com/ptobey/local-memory-mcp
1•ptobey•47m ago•1 comments

Does MAGA Want American Science to Win?

https://www.thenewatlantis.com/publications/does-maga-actually-want-american-science-to-win
1•SCEtoAux•47m ago•1 comments

Compare Claude 4.6 Opus and GPT-5.2 to Boost E-E-A-T Content Quality

https://searchfit.ai/blog/claude-4-6-opus-vs-gpt-5-2-for-eeat-content-accuracy-citations-hallucin...
1•kasaei•49m ago•0 comments

OpenClaw Meets Microsoft Agentic Identity [video]

https://www.youtube.com/watch?v=7uD2vyfBUUs
1•umangsehgal93•51m ago•0 comments

Live Stream Oscar Wilde Importance of Being Earnest

https://www.youtube.com/watch?v=obX-HGs-PS8
1•frm88•52m ago•1 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•9mo 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