This file contains hidden or 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 | |
set -e | |
[ -z $1 ] && dir='/tmp/foo' || dir=$1 | |
chromedev="/Applications/Google Chrome Dev.app" | |
runChromeDev() { | |
( |
This file contains hidden or 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/env python3 | |
from plistlib import * | |
import mutagen as m | |
import urllib.parse | |
import pprint | |
import sys | |
import csv | |
import os |
This file contains hidden or 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
/** | |
* !! Requires a SendGrid account & API Key. | |
* Sign up for the FREE account and create an API key. | |
* If you're receiving more than 100 faxes a day you | |
* shouldn't be entertaining the idea of a script like this... | |
* | |
* In the Function Instance view: | |
* - Paste this entire script | |
* - Set the url path for your Function to: /fax-to-email | |
* |
This file contains hidden or 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
iptables -A INPUT -p tcp --destination-port 443 -j REJECT --reject-with tcp-reset | |
iptables -A INPUT -p udp --destination-port 80 -j REJECT --reject-with icmp-port-unreachable | |
iptables -A INPUT -p udp --destination-port 443 -j REJECT --reject-with icmp-port-unreachable | |
ip6tables -A INPUT -p tcp --destination-port 443 -j REJECT --reject-with tcp-reset | |
ip6tables -A INPUT -p udp --destination-port 80 -j REJECT --reject-with icmp6-port-unreachable | |
ip6tables -A INPUT -p udp --destination-port 443 -j REJECT --reject-with icmp6-port-unreachable | |
iptables-save > /etc/iptables/rules.v4 | |
ip6tables-save > /etc/iptables/rules.v6 |
OlderNewer