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/sh -e | |
# | |
# POSIX shell script equivalent of: | |
# <https://github.com/mplewis/shed> | |
# | |
# Usage: shed [SHELL_ARGUMENTS...] | |
# | |
# Executes stdin after you edit it. | |
# If $EDITOR is unset, uses $PAGER. | |
# If $PAGER is unset, uses cat(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
################################################################################ | |
# bitmon | |
# Description: monitors irc.lfnet.org:6667#bitcoin and extracts user details | |
# Author: Brendan Coles <[email protected]> | |
# Version: 0.1-20110520 | |
################################################################################ | |
import socket, string | |
botname = 'u1rt6zQzvGpS1Zz' # change this | |
channel = '#bitcoin' |