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 ruby | |
### CHANGE THIS TO YOUR SERVER OK? | |
TUNNEL_ENDPOINT = '[email protected]' | |
### YOU CAN ALSO USE 'Ethernet' et al. | |
INTERFACE = 'AirPort' | |
PORT = 3022 |
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 ruby | |
require "rubygems" | |
require "opencv" | |
include OpenCV | |
class IChat | |
def available! | |
tell_me_to "set status to available" |
NewerOlder