Name: Corro Tohl Gender: Male Captian: USS Truro NCC-1889 (Miranda Class) Status: Deceased
- Miranda Class
- Dedication Plaque: "And glow more intense than blaze of branch, or brazier, Stirs the dumb spirit..." - T. S. Elliot Little Gidding
| EICAR Test String | |
| (anti-virus) X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* | |
| When an anti-virus program scans this file, it reports that it finds the EICAR-STANDARD-AV-TEST-FILE virus. | |
| GTUBE Test String | |
| (spam) XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X | |
| For further information, see: http://spamassassin.apache.org/gtube/. |
#Nivi Lybeth
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require 'eventmachine' | |
| require 'websocket-eventmachine-client' | |
| require 'huey' | |
| Huey.configure do |config| | |
| config.hue_ip = '192.168.1.244' | |
| config.uuid = "NqysWo8Fmlm4WE8M6Sxm-9UznfDoSnmFJOmg7q2g" | |
| end |
| #!/usr/bin/env ruby | |
| require 'eventmachine' | |
| require 'websocket-eventmachine-client' | |
| EM.run do | |
| ws = WebSocket::EventMachine::Client.connect(:host => 'irc-ws.chat.twitch.tv', :port => 80, :ssl => false) | |
| ws.onopen do | |
| puts "Connected" | |
| ws.send "CAP REQ :twitch.tv/tags twitch.tv/commands twitch.tv/membership" |
| require 'eventmachine' | |
| require 'websocket-eventmachine-client' | |
| EM.run do | |
| ws = WebSocket::EventMachine::Client.connect(:uri => 'wss://irc-ws.chat.twitch.tv') | |
| ws.onopen do | |
| puts "Connected" | |
| ws.send "CAP REQ :twitch.tv/tags twitch.tv/commands twitch.tv/membership" | |
| ws.send "NICK justinfan#{rand(100000..999999)}" |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require 'configatron' | |
| require 'rest-client' | |
| require 'twitch/chat' | |
| require_relative 'config.rb' | |
| require 'json' | |
| follows = RestClient.get "https://api.twitch.tv/helix/users/follows?to_id=#{configatron.chanid}", {:'Client-ID' => configatron.clientid} | |
| follows1 = JSON.parse(follows).fetch('data').take(1).zip |