frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Did DeepSeek v4 suddenly become more expensive?

https://imgur.com/gallery/hMEUsyW
1•thatwasunusual•3m ago•1 comments

Ask HN: How does your team handle release notes / changelogs?

1•medhova•5m ago•0 comments

Hare-Brained History Vol. 98: The 1953 Ascent of Mount Everest

https://aid2000.substack.com/p/hare-brained-history-vol-98-the-1953
1•thunderbong•7m ago•0 comments

Jqwik Java testing library includes malicious prompt injection attempt

https://github.com/jqwik-team/jqwik/issues/708
1•omcnoe•10m ago•1 comments

Meta tool to track employee mouse clicks collision course with EU privacy rules

https://www.reuters.com/business/meta-tool-track-employee-mouse-clicks-collision-course-with-eu-p...
1•1vuio0pswjnm7•11m ago•0 comments

Who verifies the verifier? Notes on DeepMind's formal proof-search paper

https://korbonits.com/blog/2026-05-28-who-verifies-the-verifier/
1•korbonits•13m ago•0 comments

Meta plans AI pendant, 'wearables for work' in hardware boost

https://economictimes.indiatimes.com/tech/technology/meta-plans-ai-pendant-wearables-for-work-in-...
1•jeffufl•17m ago•1 comments

Viral OnlyFans Model Kamryn Renae Rescued Off Mount Whitney Hike

https://www.sfgate.com/national-parks/article/mount-whitney-kamryn-renae-22282534.php
1•carabiner•18m ago•0 comments

EvoGraph: Hybrid Directed Graph Evolution Toward Software 3.0

https://arxiv.org/abs/2508.05199
1•jerlendds•20m ago•0 comments

US judiciary asked to adopt rule to curb fake AI-generated cases in filings

https://www.reuters.com/legal/government/us-judiciary-asked-adopt-rule-curb-fake-ai-generated-cas...
3•droidjj•24m ago•0 comments

The Pope Disrupts Silicon Valley

https://www.ft.com/content/e98d7451-19ee-472e-9b92-8938eab0e205
1•1vuio0pswjnm7•25m ago•0 comments

I made a CPU only spiking neuron network lib that comes pretty close to PyTorch

https://huggingface.co/etoxin/neuronguard-wikipedia-classifier
2•etoxin•26m ago•1 comments

Hackathon – winner gets YC interview

https://events.ycombinator.com/conversational-ai-hackathon-2026
1•subh_cs•27m ago•0 comments

Earliest evidence for invasive mitigation of dental caries by Neanderthals

https://journals.plos.org/plosone/article?id=10.1371%2Fjournal.pone.0347662
1•tambourine_man•32m ago•0 comments

From Benchmarketing to Benchmaxxing

https://www.typedef.ai/blog/from-benchmarketing-to-benchmaxxing-what-40-years-of-database-evals-c...
1•cpard•33m ago•0 comments

Automate your version control with, GitMo

https://github.com/KyleBenzle/GitMo
1•Hilliard_Ohiooo•37m ago•1 comments

DeepSWE blows up AI coding leaderboard, crowns GPT-5.5, + ClaudeOpus loophole

https://venturebeat.com/technology/deepswe-blows-up-the-ai-coding-leaderboard-crowns-gpt-5-5-and-...
3•BriStoller•42m ago•0 comments

Imece – a decentralized AI compute cooperative

https://github.com/jstdv/imece
1•jstdv•43m ago•0 comments

Windows Reactor – React like WinUI 3 framework

https://github.com/microsoft/microsoft-ui-reactor
1•rexpan•46m ago•0 comments

Llms.txt Examples: Real Patterns for API Docs, Help Centers, and Developer Docs

https://docsalot.dev/blog/llms-txt-examples
1•fazkan•49m ago•0 comments

Prism is a purpose-built, redundant, global broadcasting platform

https://www.prism18.com/
1•petethomas•50m ago•0 comments

Scaling Laws for Agent Harnesses via Effective Feedback Compute

https://arxiv.org/abs/2605.29682
1•veryluckyxyz•51m ago•0 comments

2026 vibe coding tool comparison

https://read.technically.dev/p/2026-vibe-coding-tool-comparison
1•eigenBasis•52m ago•0 comments

AI Isn't Replacing Curious Developers

https://dataengineeringcentral.substack.com/p/ai-isnt-replacing-developers
1•eigenBasis•53m ago•0 comments

Uber and the Bitter Truth About Low AI ROI

1•thegrandidiot•59m ago•0 comments

Make Content That Sells

https://www.profitthreads.com
1•mattmerrick•1h ago•0 comments

After decades risking arrest, South Korea's tattoo artists step into limelight

https://www.bbc.com/news/articles/cg4pwdn6130o
4•breve•1h ago•0 comments

TempleOS WASM

https://templeos.reiko.app/
6•zdgeier•1h ago•0 comments

Perry Compiles TypeScript directly to executables using SWC and LLVM

https://www.perryts.com/
16•0x1997•1h ago•9 comments

OWASP Vulnerableapp

https://github.com/SasanLabs/VulnerableApp
2•preetkaran20•1h ago•1 comments
Open in hackernews

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

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