frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Software Bonkers

https://craigmod.com/essays/software_bonkers/
1•razin•37s ago•0 comments

Microsoft Fire IdTech Team at Id Software

https://gamefromscratch.com/microsoft-fire-idtech-team-at-id-software/
2•bauc•57s ago•0 comments

Show HN: Atrophy – measure whether AI is eroding your unaided coding skill

https://github.com/ashutosh-rath02/atrophy
1•ashurath•1m ago•0 comments

Midtown Manhattan blocks evacuated after beams buckling at construction site

https://abcnews.com/US/midtown-manhattan-blocks-evacuated-after-beams-found-buckling/story?id=134...
1•danso•1m ago•0 comments

The mask that compiles to nothing:how HotSpot's JIT learned to reason about bits

https://questdb.com/blog/jvm-jit-known-bits/
1•thunderbong•2m ago•0 comments

No LLM Involved: What If Your Arrays Could Schedule Themselves?

https://ilnumerics.net/ilnumerics-accelerator-compiler.html
1•hokb•3m ago•0 comments

Show HN: Action-locker: pin, verify, and vendor GHAs

https://github.com/steph-owl/action-locker
1•sudosteph•3m ago•1 comments

When Albert Einstein and Charlie Chaplin Met and Became Fast Famous Friends (1930)

https://www.openculture.com/2026/07/when-albert-einstein-charlie-chaplin-met.html
1•bookofjoe•3m ago•0 comments

Fat Toads Farm Pantry

https://ediblebozeman.com/features/fat-toads-farm-pantry/
1•mooreds•5m ago•0 comments

Show HN: SOCBench – an open benchmark for AI on SoC tasks

https://github.com/DeepTempo/socbench
2•krmayankb•8m ago•0 comments

How Nashville Became Home to a Full-Scale Replica of the Parthenon

https://www.openculture.com/2026/07/how-nashville-became-home-to-a-full-scale-replica-of-the-part...
2•Brajeshwar•9m ago•0 comments

Dr Richard Hipp still maintains 40% of the lines contributed to SQLite

https://www.reddit.com/r/PrincipalAi/s/PbfYg15IAK
1•fernando-ram•9m ago•0 comments

How to Throw a GPU at a Problem

https://www.youtube.com/watch?v=1-5wkzdP1Jc
1•eigenBasis•10m ago•0 comments

Make invalid states unrepresentable (for your agents)

https://debugti.me/posts/agents-and-invalid-states/
1•andy_xor_andrew•11m ago•0 comments

EdgeSpeech: Local voice processing for React Native

https://github.com/switchboard-sdk/EdgeSpeech
3•trolleycrash•12m ago•0 comments

Show HN: Equalizer – a real-time terminal equalizer for raw PCM pipes

https://github.com/tsirysndr/equalizer
1•tsiry•12m ago•0 comments

Secret Tracker in Claude Code Uncovered, Anthropic Directly Deletes Code

https://voi.id/en/technology/583552
3•mpfect•12m ago•1 comments

Kurrent–500 years of German handwriting

https://typography.guru/journal/kurrent%E2%80%94500-years-of-german-handwriting-r38/
1•theanonymousone•13m ago•0 comments

Show HN: TraceGen – realistic OpenTelemetry traces, incl. AI-agent, one binary

https://github.com/ImmersiveFusion/if-opentelemetry-tracegen
1•dkowalski•14m ago•0 comments

Avro Canada VZ-9 Avrocar

https://en.wikipedia.org/wiki/Avro_Canada_VZ-9_Avrocar
1•ziofill•14m ago•0 comments

Show HN: Context Warp Drive – Deterministic context folding for AI agents

https://github.com/dogtorjonah/context-warp-drive
3•Dr_Jonah•15m ago•0 comments

New Antenna for Upper Am Band Nears Readiness

https://www.radioworld.com/tech-and-gear/products/new-antenna-for-upper-am-band-nears-readiness
1•RF_Enthusiast•15m ago•1 comments

Daily Berlin Subway Puzzle

https://umsteigen.app
1•_tk_•16m ago•0 comments

NAD Memory: A Hybrid Memory Device Combined with NAND Flash Memory and DRAM

https://ieeexplore.ieee.org/document/11595663
1•rbanffy•16m ago•0 comments

Incomplete Open Dodecahedra

https://chriskw.xyz/2026/07/07/Dodecahedra/
1•chriskw•16m ago•0 comments

Robots, Soft Power, and Summer Davos 2026

https://twmrg.substack.com/p/robots-soft-power-and-summer-davos
1•alfino•17m ago•0 comments

Show HN: Action-Locker – A Lockfile and Locker For

1•sudosteph•17m ago•0 comments

Report on 40 Malicious Chrome Extensions, 22M Users

https://github.com/detrin/extensions_report/blob/main/FINDINGS.md
6•kekqqq•17m ago•0 comments

Chat Control passed first round in EU Parliament

https://www.heise.de/en/news/Showdown-in-Strasbourg-The-unexpected-return-of-Chat-Control-1-0-113...
31•miroljub•18m ago•2 comments

Show HN: Telemetry Tracker – An open-source telemetry platform for web apps

https://telemetry-tracker.com
1•unjica•20m ago•0 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