Edward Snowden answered questions after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
| class FBPNode | |
| attr_accessor :inputs, :outputs, :opts, :processor, :input_buffers | |
| def initialize(opts={}, &block) | |
| @inputs = opts[:inputs] || [] | |
| @outputs = opts[:outputs] || [] | |
| @options = opts[:options] || {} | |
| @name = opts[:name] | |
| @debug = true | |
| @processor = block |
Edward Snowden answered questions after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
| require 'sinatra' | |
| require 'sinatra-websocket' | |
| require 'thin' | |
| $logger = Logger.new(STDERR) | |
| $logger.level = Logger::INFO | |
| set server: 'thin', bind: '127.0.0.1', port: 7777 | |
| set namespaces: {} |