this post was submitted on 22 Apr 2024
33 points (97.1% liked)
Privacy
31799 readers
97 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
- Posting a link to a website containing tracking isn't great, if contents of the website are behind a paywall maybe copy them into the post
- Don't promote proprietary software
- Try to keep things on topic
- If you have a question, please try searching for previous discussions, maybe it has already been answered
- Reposts are fine, but should have at least a couple of weeks in between so that the post can reach a new audience
- Be nice :)
Related communities
Chat rooms
-
[Matrix/Element]Dead
much thanks to @gary_host_laptop for the logo design :)
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.
Like a diff checker?
https://www.diffchecker.com/
This is pretty close to what im looking for actually, thanks for sharing! :)
Glad to help!
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
Thanks for the tip!
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/
thanks very much for sharing โ๏ธ