Wouldn’t click on your shit . Link probably has more viruses than a concentration camp .
it's good your skeptical man. I'm a new memeber with little to no posts and no avatar.
Those are all legit was to be a ghost when online.
But like Smokexbreak said they are legit ways to be more anonymous online.
also you should be stripping the meta data from your photos when you upload them. If you have gps tagging enabled on your photos it literally has the coordinates of where you took the photo stored as meta data on the photo. You can use my script below as an example of how to strip the meta data(i use it to strip all meta data from photos i upload and reduce there size). Otherwise you can try online tools or more friendly tools by doing some google searches.
#!/bin/bash
dir_to_process="to_process"
for filename in $dir_to_process/*; do
echo $filename
exiftool -all= $filename
jpegoptim --max=80 $filename
ls -l $filename --block-size=M
mv $filename processed/
done
echo "=======Cleaning up old files ========="
rm -f $dir_to_process/*.JPG_original
echo "============Done!============"
ls -l processed/ --block-size=M