This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi, | |
To be compliant with GDPR, I request a copy of all my personal data that is linked to the email address you used here ( mail@mail.com ) (article 15, right of access: https://www.dataprotection.ie/en/individuals/know-your-rights/right-access-information). | |
Then I would also like you to withdraw, all said data, once you sent it, from all your databases, to not use this data anymore. (article 17 and 19 https://www.dataprotection.ie/en/individuals/know-your-rights/right-erasure-articles-17-19-gdpr) | |
This includes all the designs I've uploaded on your site, and the reviews I've left. | |
If you're not the right person to do so, please forward this information to your DPO. | |
Have a lovely day, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
footssh() | |
{ | |
if [[ $TERM = "foot" ]]; then | |
TERM=linux ssh $@ | |
else | |
ssh $@ | |
fi | |
} | |
alias ssh=footssh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clean_extensionjpg(){ | |
mmv \*.[Jj][Pp][Gg] \#1.jpg | |
mmv \*.[Jj][Pp][Ee][Gg] \#1.jpg | |
} | |
clean_extensionpng(){ | |
mmv -v \*.[Pp][Nn][Gg] \#1.png | |
} | |
clean_extension(){ | |
clean_extensionpng | |
clean_extensionjpg |