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
# Il codice delle statistiche del talk "Data Driven Bullshit" di pane Web e Salame 2016 | |
# Maggiori info qui: http://mgpf.it/2016/09/30/daradrivenbullshit2016.html | |
require "fb_graph2" | |
require "pp" | |
require "csv" | |
require "unidecoder" | |
FbGraph2.api_version = 'v2.7' | |
FbGraph2.http_config do |config| |
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
require 'anemone' | |
Anemone.crawl("http://stackoverflow.com/", {:proxy_host => 'proxy.xyz.com', :proxy_port => '9999'}) do |anemone| | |
anemone.on_every_page do |page| | |
puts page.url | |
end | |
end |