• 9 Posts
  • 77 Comments
Joined 7 months ago
cake
Cake day: November 29th, 2023

help-circle
  • Thanks for your response, but I don’t think I was promoting prosperity gospel? I understand that this parable is a favorite of theirs, but as you correct pointed out, there’s more to Jesus than that, and the point of the parable is by no means to rag on poor people, but on people who make poor decisions.

    My understanding is that if someone has little talent but still makes the most of it, that person is still more welcome in the Kingdom of Heaven than someone who has a lot but makes little use of it. In other words, if it was the servant who received the most money who ended up burying it and making no profit, it would have been him who would be cast out instead. See also the Parable of the Wedding Feast, where everyone receives exactly the same (an invitation to the king’s wedding), but one person shows up without the proper clothes on.














  • I think the moral of that story is that you should at least make a bare minimum effort in order to justify your existence. The Parable of the Wedding feast has a very similar lean: there, a guy gets thrown out of the wedding (after having been invited for free because the original guests wouldn’t come) because he wouldn’t even dress up for it.

    The point is, there ARE examples of Jesus cutting people off because they’re not worth his continued investment in them.





  • We’ve had libraries since long before the Internet. I don’t think lack of access to information is as much to blame as lack of time and/or willingness to make an effort.

    Also, we live in a culture that celebrates, glorifies and rewards stupidity to an insane degree. There is simply very little incentive for people to try and improve themselves.


  • I’m sure there are many ways to improve on this solution, but they would all require significantly more effort (ElasticSearch isn’t exactly trivial to set up).

    This is really just a proof of concept, the most minimal viable implementation that gets you something similar in terms of functionality.

    For instance, Windows Recall stores OCR content tagged by app, this solution doesn’t. Also, as others have mentioned, a practical implementation should likely check if anything has changed at all and discard any screenshots that don’t have any new data.


  • It appears to be as simple as tesseract <infile> <outfile>. Possibly could even pipe (or tee) the screenshot straight into that and save both an image and a text file in a single command line.

    So something like this should do the trick:

    gnome-screenshot -f - | tee /Microsoft/yourPrivacy/$(date +%s).png | tesseract - /Microsoft/yourPrivacy/$(date +%s).txt
    

    Skip the database, just use grep to search that directory if you need to find anything. Voilà, homemade Recall.