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
# Start TOR proxy deamon | |
tor | |
# Start Chrome connteced to TOR socks5 proxy deamon | |
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \ | |
--incognitp \ | |
--host-resolver-rules="MAP * ~NOTFOUND , EXCLUDE localhost" \ | |
--user-data-dir="$HOME/.tor-proxy-profile" \ | |
--proxy-server="socks5://localhost:9050" |
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
# TAR Tooling | |
alias pack='f() { tar -cvf $1.tar $1};f' | |
alias compress='f() { tar -cvzf $1.tgz $1};f' | |
alias compress7z='f() { 7z a $1.7z $1 };f' |
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
:root { | |
--ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53); | |
--ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19); | |
--ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22); | |
--ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06); | |
--ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035); | |
--ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335); | |
--ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); | |
--ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1); |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDfu+W+5Q2KTOPbcsfaY4T4LuOng9imtflQ+z2eW9vLmaugJjHAyzn+znT9DeT2sfh42BXSmbCK2bRbIsidOiTlUf36GIrAqA60HNRQZEwzqc/6z2QipKll948VONsPIEiyKnXJ53wDmYJk12v/GKAm7WbxDWhMjNExTniWDjEAwObyHHqpXoz/uMcvyDdfTG/gcGbMPMpqagUSA0gT64D3mSGHFzjVHZSlzCWrvTgRZoOu5hvwsHFLz4RiDLzw+1H0EAhNZYcgb4U3rlLGvCpqcvPkNf90HXHzZPDN8xrSQnC+gqE1hmjQMl8UIMtVRnUuhAbtCmtMU4uD+wl9MFWCjDiZPPxxDa0/xiTrPmwELWVBoLGSuJKuqA1LY25OQrMKIMwRrn7+OVDhnh10tKGS0caIyN8fYmKpLma4GCFnDPEMJJx9TmVmwgeLhErqpcCE21TQb3yzoKT8n80wTs4nL5LveK5ODIHVCM2kTW3Z/CsQ7G7LkCFS/HNlgCLVPOnaZT0XFYLkWmKudzqiMHAm/iDPc2xVpyVAgjbw5IvRq1yNcMubLYcyAN4In78o/PZeo+kR/+RhTvWy8u8TgM/PD9OaBsG6tg90ltv85m57Hb78i9eKkO6Quj9RSp96iEoCDtBjibwGLULWTI8bVp2YnhBNBLeAwwg8lSrFCRoNtQ== [email protected] |
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
/usr/bin/plutil -convert xml1 -o - ~/Library/Safari/Bookmarks.plist | grep -E -o '<string>http[s]{0,1}://.*</string>' | grep -v icloud | sed -E 's/<\/{0,1}string>//g' > ~/Documents/safari-readinglist.txt |