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 python | |
| import sys | |
| import gobject | |
| import gtk | |
| import webkit | |
| from itertools import cycle | |
| class WebBrowser(gtk.Window): |
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 | |
| zonefile=$1 | |
| zone=$2 | |
| test_hosts() { | |
| for host in "$@"; do | |
| host_=$(echo $host|awk -F ':' '{print $1}') | |
| port_=$(echo $host|awk -F ':' '{print $2}') | |
| echo | timeout 3 openssl s_client -connect $host_:$port_ >/dev/null 2>&1; |
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 | |
| export https_proxy="127.0.0.1:3333" | |
| for i in `seq 1 2000` ; do | |
| wget https://www.kernel.org/pub/linux/bluetooth/bluez-5.12.tar.xz bluez-5.1-$i.tar.xz | |
| sleep 0.3 | |
| done | |
NewerOlder