this post was submitted on 22 Apr 2024
33 points (97.1% liked)

Privacy

31224 readers
1182 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS
 

Hiya, just quickly wondering if anyone know about a good tool for comparing Privacy policies against each other? Im currently downloading each PP, then using self-hosted StirlingPDF to compare 1 on 1. However, I am looking for a more efficient tool, to compare multiple at the time, if there are any. Any tool that can handle multiple PDFs or HTML files and look at the differences between them kinda tool.

Appreciate any suggestions! ๐Ÿ•ต๏ธ

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 4 months ago (2 children)

Preferably line by line. Kind of like what Github does whenever you apply a commit, it will make a red line for what is removed and a green line for what is added code. I could look into LLMs though, but was hoping to find a quick n dirty tool to do the job.

[โ€“] [email protected] 4 points 4 months ago (1 children)
[โ€“] [email protected] 2 points 4 months ago (1 children)

This is pretty close to what im looking for actually, thanks for sharing! :)

[โ€“] [email protected] 2 points 4 months ago
[โ€“] [email protected] 3 points 4 months ago* (last edited 4 months ago) (1 children)

After reading this, I'm thinking whether converting the PDFs to markdown and diffing them with a text difftool could work.

If you go this route, you may want to test with different diff algorithms. Git has multiple too, but I don't remember right now which I found to be the best

[โ€“] [email protected] 1 points 4 months ago (1 children)
[โ€“] [email protected] 2 points 4 months ago* (last edited 4 months ago) (1 children)

Now that I'm at my computer, I was able to find the diff alg I was thinking about: it's histogram.

Here's an issue from gitea about when they changed the default git diff alg to this one: https://github.com/go-gitea/gitea/issues/23255
And here's an article I have found earlier about some of the available git diff algorithms, and when they are too be used: https://luppeng.wordpress.com/2020/10/10/when-to-use-each-of-the-git-diff-algorithms/

[โ€“] [email protected] 1 points 4 months ago

thanks very much for sharing โ˜˜๏ธ