frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Toolcast – Turn any API into an AI agent tool with one command

https://github.com/Djsand/toolcast
1•Djsand•1m ago•0 comments

US warns EU to pass trade deal or risk losing 'favourable' access to LNG

https://www.ft.com/content/6bf153e4-11af-44d5-9d1c-48b5c7ad26ef
1•geox•3m ago•0 comments

Pkgmirror: self-host your own Zig mirror

https://devlog.hexops.org/2026/announcing-pkgmirror/
1•emidoots•3m ago•0 comments

It is time to redefine what a senior engineer is

https://cientifico.net/it-is-time-to-redefine-what-a-senior-engineer-is/
1•antfarm•3m ago•0 comments

Reasoning-Based Personalized Generation for Users with Sparse Data

https://arxiv.org/abs/2602.21219
1•PaulHoule•5m ago•0 comments

OpenCode-LLM-proxy – use any OpenCode model via OpenAI/Anthropic/Gemini API

https://github.com/KochC/opencode-llm-proxy
1•kochc•6m ago•2 comments

Show HN: Build AI Trading Agents in Cursor/Claude with an MCP Server

https://financialdata.net/mcp-server
1•financial-data•6m ago•0 comments

Anthropic throttles Claude subscriptions to meet capacity

https://www.infoworld.com/article/4151196/anthropic-throttles-claude-subscriptions-to-meet-capaci...
1•ceejayoz•6m ago•1 comments

More AI-Generated Slop (2026)

https://www.dotnetperls.com/2026_3_24_more-ai-generated-slop
1•speckx•7m ago•0 comments

Some uncomfortable truths about AI coding agents

https://standupforme.app/blog/some-uncomfortable-truths-about-ai-coding-agents/
2•borealis-dev•13m ago•0 comments

Show HN: Open-Source Animal Crossing–Style UI for Claude Code Agents

https://github.com/outworked/outworked/releases/tag/v0.3.0
7•ZeidJ•21m ago•0 comments

Show HN: We built Cursor, but for data transformations (open source)

https://github.com/zipstack/visitran
2•naren87•23m ago•0 comments

Show HN: Solution for Prompt Injection of AI Agents

https://github.com/safe-agentic-world/nomos
2•prudhvinomos•23m ago•0 comments

Scrolling Forward, Sliding Backward: Social Media Threatens Democracy

https://www.mdpi.com/2076-0760/15/2/143
2•PaulHoule•23m ago•0 comments

15 Years of Forking

https://www.waterfox.com/blog/15-years-of-forking/
1•MrAlex94•24m ago•0 comments

Byte Magazine Archive 1975 to 1995

https://www.worldradiohistory.com/Byte_Magazine.htm
2•oldnetguy•25m ago•1 comments

The Video Software That Powers the Internet (and Almost Nobody Knows It Exists)

https://roughcut.heyeddie.ai/p/the-video-software-that-powers-the
2•rantingdemon•27m ago•0 comments

Tapes: transparent AI agent telemetry

https://johncodes.com/archive/2026/02-09-introducing-tapes/
1•speckx•27m ago•0 comments

A foundation model of vision, audition, and language for in-silico neuroscience

https://ai.meta.com/research/publications/a-foundation-model-of-vision-audition-and-language-for-...
1•dkrylov•28m ago•0 comments

How to Kill a Tech Monopoly

https://www.fourplex.net/2026/03/25/how-to-kill-a-tech-monopoly/
1•bbsc•30m ago•0 comments

Beijing's surprise intervention on Meta's Manus rattles tech founders

https://www.cnbc.com/2026/03/27/meta-manus-china-review-singapore-washing-model-regulation-.html
2•inaros•31m ago•0 comments

Clawbolt: AI assistant for contractors, not knowledge workers

https://blog.mozilla.ai/the-hardest-part-of-running-a-small-business-in-the-trades/
1•river_otter•31m ago•1 comments

Show HN: A votable list of the one thousand best books

https://kylebenzle.com/bookreviews.php
1•hilliardfarmer•35m ago•0 comments

Show HN: Foundry: a Markdown-first CMS written in Go

https://github.com/sphireinc/Foundry
2•nsayoda•41m ago•2 comments

Jaybird 6.0.5 Released

https://firebirdsql.org/en/news/jaybird-6-0-5-and-jaybird-5-0-12-released
1•mariuz•41m ago•0 comments

Speculative Decoding: Performance or Illusion?

https://specdecode-bench.github.io/
2•matt_d•42m ago•0 comments

Ask HN: Mercury Bank closed account due to residency – alternatives?

1•salleisha•42m ago•1 comments

LLM Persuasion Benchmark: Multi-Turn Persuasion Between Models

https://github.com/lechmazur/persuasion
5•zone411•44m ago•0 comments

Confinia – a supervised market research runtime for live trading systems

https://github.com/bamhann/confinia
2•bamhann•44m ago•0 comments

Scaling Laws: Should AI Laws Be Subject to a Higher Standard? [video]

https://www.youtube.com/watch?v=sx7FdK6ufPg
1•verdverm•44m 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