Anonymous 05/26/2023 (Fri) 23:36 No.24581 del
>>24019
My own observations on images from archives:
• Images not present or deleted in Desuarchive could have ended on Imgur through 4archive, what a save, right? No, nod really :DDDDD

• Looking at random 4archive thread (see below) today I can't but notice how there are surprisingly many images missing, and I unfortunately can't confirm whether they were deleted as part of current purge or earlier since neither of them apparently contain nudity, and they are not deleted in chronological order, some are still left.

• 4archive admin claims to have scraped 80% of images into his drives by May 18th[1].

• Imgur does not seem to transcode/compress small jpeg images under 1MB or it did not do so to old images. You can prove this by comparing them with imagemagicks's identify -quiet -format "%#" [file] command which I wrapped into crappy script for quick tests:

[code]
#!/bin/bash
HASH1=$( identify -quiet -format "%#" "$1" )
HASH2=$( identify -quiet -format "%#" "$2" )
echo "$HASH1"
echo "$HASH2"
if [[ "$HASH1" == "$HASH2" ]]

Message too long. Click here to view full text.