Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opusTo use this bot:
ads_bot.py and requirements.txt.pip install -r requirements.txt to install the requirements.Apparently the porn industry is going after github pages (by sending DMCA to google), you can read the story here (found there).
Using https://www.chillingeffects.org/notices/search?page=1&sort_by=&term=github.com (https://github.com/berkmancenter/chillingeffects/blob/master/doc/api_documentation.mkd#example-successful-response-2) (and an horribly quick and dirty script), here is the list all the concerned users and repositories page (you can find the data bellow):
| { | |
| "491289025" : "ijinshan-kappmarket://", | |
| "301521403" : "fb103361823069955://", | |
| "492178411" : "ils492178411://", | |
| "346142396" : "fb234434003713://", | |
| "310633997" : "whatsapp://", | |
| "370614765" : "com.condenet.newyorker://", | |
| "325058491" : "rnmddisco://", | |
| "382952264" : "epichttp://", | |
| "477048487" : "predictwind://", |
| # load required packages | |
| library(shiny) | |
| library(shinyIncubator) | |
| library(googleVis) | |
| library(ggplot2) | |
| library(stringr) | |
| library(plyr) | |
| library(XML) | |
| library(httr) | |
| library(Hmisc) |
| comment | |
| comment punctuation | |
| comment.block.documentation | |
| comment.block.preprocessor | |
| comment.documentation | |
| constant | |
| constant.character | |
| constant.character punctuation | |
| constant.character.entity | |
| constant.character.escape |
| (function() { | |
| var script, | |
| scripts = document.getElementsByTagName('script')[0]; | |
| function load(url) { | |
| script = document.createElement('script'); | |
| script.async = true; | |
| script.src = url; | |
| scripts.parentNode.insertBefore(script, scripts); |
| require 'nokogiri' | |
| require 'httparty' | |
| puts "Scraping ids of detainees in custody" | |
| ids = [] | |
| (1..10).each do |n| | |
| response = HTTParty.get "http://projects.nytimes.com/guantanamo/detainees/held?page=#{n}" | |
| page = Nokogiri::HTML(response) | |
| ids += page.css('#detaineesTable a').map { |link| $1 if /detainees\/(\d+)/ =~ link['href'] }.compact | |
| end |
| # Copyright Jehiah Czebotar 2013 | |
| # http://jehiah.cz/ | |
| import tornado.options | |
| import glob | |
| import os | |
| import sqlite3 | |
| import logging | |
| import datetime | |
| import csv |
| license: gpl-3.0 |