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
import paramiko, socks | |
# PySocks recommends using no arguments, | |
# because it only supports the defaults anyway. | |
sock = socks.socksocket() | |
host, port = '127.0.0.1', 1234 | |
# Set up your proxy information for this socket | |
sock.set_proxy( |
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
import paramiko, socks | |
# PySocks recommends using no arguments, | |
# because it only supports the defaults anyway. | |
sock = socks.socksocket() | |
host, port = '127.0.0.1', 1234 | |
# Set up your proxy information for this socket | |
sock.set_proxy( |
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
! Molokai theme | |
*xterm*background: #101010 | |
*xterm*foreground: #d0d0d0 | |
*xterm*cursorColor: #d0d0d0 | |
*xterm*color0: #101010 | |
*xterm*color1: #960050 | |
*xterm*color2: #66aa11 | |
*xterm*color3: #c47f2c | |
*xterm*color4: #30309b | |
*xterm*color5: #7e40a5 |