├── .gitignore ├── LICENSE ├── README.md ├── crawlers ├── Crawling-Google │ ├── README.md │ ├── google_2000 │ │ ├── __init__.py │ │ ├── items.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ │ ├── __init__.py │ │ │ └── google_2000_spider.py │ ├── googlebyear.py │ ├── output.txt │ ├── pictures │ │ ├── click-Documents-subtab.png │ │ ├── click-network-tab.png │ │ ├── copy-user-agent.png │ │ ├── correct-lxml-download.png │ │ ├── correct-user-agent.png │ │ ├── custom-date-range-Google-Search.png │ │ ├── finding-Google-results.png │ │ ├── highlight-request-headers.png │ │ ├── highlight-search-document.png │ │ ├── right-click-copy-xpath.png │ │ ├── right-click-open-devtools.png │ │ └── use-magnifying-glass.png │ ├── scrapy.cfg │ ├── simpledownload.py │ └── simpleselect.py └── Way-Back │ ├── README.md │ ├── pictures │ ├── clinton-culkin-2002-02-09.png │ ├── nytimes-2000-11-19.png │ ├── reuters-2000.png │ ├── reuters-is-hiring.png │ ├── reuters-products-2000.png │ └── way-back-makes-it-easy.png │ └── waybacktrack.py ├── dataset ├── README.md ├── crawl_extract.py ├── entertainment.msn.com.7z ├── news.bbc.co.uk.7z ├── news.yahoo.com.7z ├── thenation.com.7z ├── www.cnn.com.7z ├── www.esquire.com.7z ├── www.forbes.com.7z ├── www.foxnews.com.7z ├── www.latimes.com.7z └── www.nymag.com.7z ├── testing ├── README.md ├── avgs.pkl ├── dreampie-eatiht-session.html ├── dreampie-wcbe-session.html ├── eatiht_praf_output.pkl ├── eatiht_results.pkl ├── praf.py ├── trimmed.pkl ├── wbce-tests.7z ├── wbce-tests │ ├── BodyTextExtractor2Filter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── BodyTextExtractorFilter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── ContentCodeBlurringFilter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── DocumentSlopeCurveFilter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── FeatureExtractorDomFilter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── FeatureExtractorSplitFilter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── GeneralCCB │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── KFeatureExtractorDomFilter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── LinkQuotaFilter │ │ ├── avgs.pkl │ │ ├── results.pkl │ │ └── trimmed.pkl │ ├── eatiht_results.png │ ├── extractor_avgs.pkl │ ├── wbce_results.png │ ├── wbce_results2of3.png │ └── wbce_results3of3.png └── wbce_process_results.py └── timelines └── 1.1.2015-1.7.2015 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/README.md -------------------------------------------------------------------------------- /crawlers/Crawling-Google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/README.md -------------------------------------------------------------------------------- /crawlers/Crawling-Google/google_2000/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawlers/Crawling-Google/google_2000/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/google_2000/items.py -------------------------------------------------------------------------------- /crawlers/Crawling-Google/google_2000/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/google_2000/pipelines.py -------------------------------------------------------------------------------- /crawlers/Crawling-Google/google_2000/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/google_2000/settings.py -------------------------------------------------------------------------------- /crawlers/Crawling-Google/google_2000/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/google_2000/spiders/__init__.py -------------------------------------------------------------------------------- /crawlers/Crawling-Google/google_2000/spiders/google_2000_spider.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawlers/Crawling-Google/googlebyear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/googlebyear.py -------------------------------------------------------------------------------- /crawlers/Crawling-Google/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/output.txt -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/click-Documents-subtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/click-Documents-subtab.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/click-network-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/click-network-tab.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/copy-user-agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/copy-user-agent.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/correct-lxml-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/correct-lxml-download.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/correct-user-agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/correct-user-agent.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/custom-date-range-Google-Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/custom-date-range-Google-Search.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/finding-Google-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/finding-Google-results.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/highlight-request-headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/highlight-request-headers.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/highlight-search-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/highlight-search-document.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/right-click-copy-xpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/right-click-copy-xpath.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/right-click-open-devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/right-click-open-devtools.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/pictures/use-magnifying-glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/pictures/use-magnifying-glass.png -------------------------------------------------------------------------------- /crawlers/Crawling-Google/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/scrapy.cfg -------------------------------------------------------------------------------- /crawlers/Crawling-Google/simpledownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/simpledownload.py -------------------------------------------------------------------------------- /crawlers/Crawling-Google/simpleselect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Crawling-Google/simpleselect.py -------------------------------------------------------------------------------- /crawlers/Way-Back/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/README.md -------------------------------------------------------------------------------- /crawlers/Way-Back/pictures/clinton-culkin-2002-02-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/pictures/clinton-culkin-2002-02-09.png -------------------------------------------------------------------------------- /crawlers/Way-Back/pictures/nytimes-2000-11-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/pictures/nytimes-2000-11-19.png -------------------------------------------------------------------------------- /crawlers/Way-Back/pictures/reuters-2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/pictures/reuters-2000.png -------------------------------------------------------------------------------- /crawlers/Way-Back/pictures/reuters-is-hiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/pictures/reuters-is-hiring.png -------------------------------------------------------------------------------- /crawlers/Way-Back/pictures/reuters-products-2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/pictures/reuters-products-2000.png -------------------------------------------------------------------------------- /crawlers/Way-Back/pictures/way-back-makes-it-easy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/pictures/way-back-makes-it-easy.png -------------------------------------------------------------------------------- /crawlers/Way-Back/waybacktrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/crawlers/Way-Back/waybacktrack.py -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/README.md -------------------------------------------------------------------------------- /dataset/crawl_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/crawl_extract.py -------------------------------------------------------------------------------- /dataset/entertainment.msn.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/entertainment.msn.com.7z -------------------------------------------------------------------------------- /dataset/news.bbc.co.uk.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/news.bbc.co.uk.7z -------------------------------------------------------------------------------- /dataset/news.yahoo.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/news.yahoo.com.7z -------------------------------------------------------------------------------- /dataset/thenation.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/thenation.com.7z -------------------------------------------------------------------------------- /dataset/www.cnn.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/www.cnn.com.7z -------------------------------------------------------------------------------- /dataset/www.esquire.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/www.esquire.com.7z -------------------------------------------------------------------------------- /dataset/www.forbes.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/www.forbes.com.7z -------------------------------------------------------------------------------- /dataset/www.foxnews.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/www.foxnews.com.7z -------------------------------------------------------------------------------- /dataset/www.latimes.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/www.latimes.com.7z -------------------------------------------------------------------------------- /dataset/www.nymag.com.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/dataset/www.nymag.com.7z -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/avgs.pkl -------------------------------------------------------------------------------- /testing/dreampie-eatiht-session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/dreampie-eatiht-session.html -------------------------------------------------------------------------------- /testing/dreampie-wcbe-session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/dreampie-wcbe-session.html -------------------------------------------------------------------------------- /testing/eatiht_praf_output.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/eatiht_praf_output.pkl -------------------------------------------------------------------------------- /testing/eatiht_results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/eatiht_results.pkl -------------------------------------------------------------------------------- /testing/praf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/praf.py -------------------------------------------------------------------------------- /testing/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests.7z -------------------------------------------------------------------------------- /testing/wbce-tests/BodyTextExtractor2Filter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/BodyTextExtractor2Filter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/BodyTextExtractor2Filter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/BodyTextExtractor2Filter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/BodyTextExtractor2Filter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/BodyTextExtractor2Filter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/BodyTextExtractorFilter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/BodyTextExtractorFilter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/BodyTextExtractorFilter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/BodyTextExtractorFilter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/BodyTextExtractorFilter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/BodyTextExtractorFilter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/ContentCodeBlurringFilter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/ContentCodeBlurringFilter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/ContentCodeBlurringFilter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/ContentCodeBlurringFilter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/ContentCodeBlurringFilter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/ContentCodeBlurringFilter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/DocumentSlopeCurveFilter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/DocumentSlopeCurveFilter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/DocumentSlopeCurveFilter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/DocumentSlopeCurveFilter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/DocumentSlopeCurveFilter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/DocumentSlopeCurveFilter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/FeatureExtractorDomFilter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/FeatureExtractorDomFilter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/FeatureExtractorDomFilter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/FeatureExtractorDomFilter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/FeatureExtractorDomFilter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/FeatureExtractorDomFilter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/FeatureExtractorSplitFilter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/FeatureExtractorSplitFilter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/FeatureExtractorSplitFilter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/FeatureExtractorSplitFilter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/FeatureExtractorSplitFilter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/FeatureExtractorSplitFilter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/GeneralCCB/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/GeneralCCB/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/GeneralCCB/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/GeneralCCB/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/GeneralCCB/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/GeneralCCB/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/KFeatureExtractorDomFilter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/KFeatureExtractorDomFilter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/KFeatureExtractorDomFilter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/KFeatureExtractorDomFilter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/KFeatureExtractorDomFilter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/KFeatureExtractorDomFilter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/LinkQuotaFilter/avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/LinkQuotaFilter/avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/LinkQuotaFilter/results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/LinkQuotaFilter/results.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/LinkQuotaFilter/trimmed.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/LinkQuotaFilter/trimmed.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/eatiht_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/eatiht_results.png -------------------------------------------------------------------------------- /testing/wbce-tests/extractor_avgs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/extractor_avgs.pkl -------------------------------------------------------------------------------- /testing/wbce-tests/wbce_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/wbce_results.png -------------------------------------------------------------------------------- /testing/wbce-tests/wbce_results2of3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/wbce_results2of3.png -------------------------------------------------------------------------------- /testing/wbce-tests/wbce_results3of3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce-tests/wbce_results3of3.png -------------------------------------------------------------------------------- /testing/wbce_process_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/testing/wbce_process_results.py -------------------------------------------------------------------------------- /timelines/1.1.2015-1.7.2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodricios/crawl-to-the-future/HEAD/timelines/1.1.2015-1.7.2015 --------------------------------------------------------------------------------