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
*/5 * * * * curl -fsSL https://freedns.afraid.org/dynamic/update.php?$TOKEN\&address=$(ip -6 addr show | grep global | sort | head -1 | colrm 1 10 | awk -F/ '{print $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
CQEGAf8AAAJWxsBNBFbWz1UBCADWrnc9lDq5BfNZ8WQXeXDK1P8sEVgMovqTqgFZ | |
rEjANVWKwM/x68VsixdQiS7pES4JEx5j5khfaG/IR3K8K0TDDOESqFMlTG4j6rO0 | |
+hkUclMxeecYXD94nGSEWLO1/0Gph1b3YH6tA5KfohLFEb8hZ79HUna4tDEAQ6sQ | |
ljZmWkXryK2WUXDljYKrWLQaEmlN06OUifLzZQPaHYO3kFNhgNw6lr8jM0ZKnP7s | |
8oRK6TdJDB+JVq+q8z+pqKgZi6wCIv+Cc48gwISlOf4eb1w0HwiqHC+mRcqi5KoW | |
X20JBJzblGHYeAgdYbXwK2slDUfME4aevbcsjegalG+fp1ODABEBAAHNInNuZWFr | |
IChHZW5lcmF0ZWQgYnkgUmV0cm9TaGFyZSkgPD7CwF8EEwECABMFAlbWz1UJEFLc | |
QmqVBBsdAhkBAAApHggAnWJCoayQDCmWtNXmTKT8WpVlHAhU8Mt62F7dQKGkkFJo | |
AX0X+ZbykigP7jsLNZRZUznENIfZGQp1Tjdmx1AKrxXGNJwAdC9PKSJasKSc2CXX | |
RIOPlBaHDElMVIBlN/7cyuzd1/GxqNhcwQXW2s8Oe+7g29UoYKR38mG1Z/nVdsph |
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
jA0EBwMCIU2ivrPeL8P/0ukBJoA5eBe4l1XhKsStexteqstrKbvTuqbQ0qmCEazq | |
CtwVF4NItPO0pL36IL79gVns8SDPwANJs0cu322hom2Xy13r8djdy8V4PbO9nvoN | |
pbHA+5o5SA3IOkXuOOqYeq53A1d4WlT3N/yvkd6+gI/yadvJUSV/KRiyCKkBenq2 | |
Sqjlp0Cn2PoX4G+ogO2gHXgOU+zgDnPe1DW7Ztd7mN5CzjcxvLw7zNTB+ygsk4Nq | |
cNl1MnPTIxI0WBH2L4I9EBHt4YFzzbK6v6DxGb+i/710xIbZcb1cc8X8/MLDVxAf | |
Z626JeM1uWC9afMLfnR9/W/wyVavC9YAGXR2wwxALkI8CzE4Dj71iSG/hUWsIFLC | |
yiK8BWR6e1VEuSdDpFIuTPbuO9h30RXoeoX4YbzEGvlMrDvNR/jOgE6z0qMj2tvk | |
+nCswJ+q0DrEsYFHn6Ayv9DNpO84b7QxIgxkFHtmMru1SqYz8hD+JCLDT7PsBQP9 | |
X4MApfe0Ci+rX31dN8Dd46tM23NfZvWwreQc7NWqxUyHb3+PcHcaYaJraZGN+mwK | |
Ofswp2k54fKxMTpfblvZ8T7montnqiUOwz4C3q64leuKfkBx6jnlX7km+1Vxw8QC |
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
# datavibe.net spamassassin local config as of 2015-07-17 | |
# Add *****SPAM***** to the Subject header of spam e-mails | |
rewrite_header Subject *****SPAM***** | |
# Save spam messages as a message/rfc822 MIME attachment instead of | |
# modifying the original message (0: off, 2: use text/plain instead) | |
report_safe 1 | |
add_header all RelaysUntrusted _RELAYSUNTRUSTED_ |
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
find /Applications \( -iname 'Xcode-beta.app' -o -iname 'Xcode.app' \) -prune -o \ | |
\( -type d -iname '*.lproj' ! -iname 'Base.lproj' \ | |
! -iname 'en_??.lproj' ! -iname 'English.lproj' ! -iname 'en.lproj' \) -print -delete |
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
#!/bin/bash | |
if [[ $# -ne 1 ]]; then | |
echo "usage: $0 <rolename> (e.g. \`$0 EngineerProd\`)" > /dev/stderr | |
exit 127 | |
fi | |
if ! which jq 2>&1 > /dev/null ; then | |
echo "$0 error: Please install 'jq'." > /dev/stderr | |
exit 127 |
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
#!/bin/bash | |
find . -iname '*.json' | \ | |
xargs -P 8 jq -c '.Records[] | [ .userIdentity.arn, .userIdentity.userName, .eventName ]' \ | |
>> out |
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/local/Cellar/openssl/1.0.2a-1/bin/openssl enc -aes-128-ctr \ | |
-pass pass:"$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64)" -nosalt < /dev/zero | \ | |
pv -p -e -r --size 512G | \ | |
dd of=/dev/rdisk2 bs=10m |
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
Verifying myself: My Bitcoin username is +sneak. https://onename.io/sneak |
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
EX="" | |
EX+=" --exclude=.DS_Store" | |
EX+=" --exclude=/iBooks.app/" | |
EX+=" --exclude=/iTunes.app/" | |
EX+=" --exclude=/FaceTime.app/" | |
EX+=" --exclude=/Calendar.app/" | |
EX+=" --exclude=/Mail.app/" | |
EX+=" --exclude=/QuickTime?Player.app/" | |
EX+=" --exclude=/Safari.app/" | |
EX+=" --exclude=/Preview.app/" |