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
Rank | Site | SNI | HTTP | DNS | |
---|---|---|---|---|---|
1 | google.com | open | open | open | |
2 | youtube.com | blocked | blocked | blocked | |
3 | facebook.com | blocked | blocked | blocked | |
4 | baidu.com | open | open | open | |
5 | yahoo.com | open | open | open | |
6 | amazon.com | open | open | open | |
7 | wikipedia.org | open | open | open | |
8 | qq.com | open | open | open | |
9 | google.co.in | open | open | open |
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
function listFolders(folder) { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
sheet.appendRow(["Name", "Sharing Access", "Sharing Permission", "Get Editors", "Get Viewers", "Date", "Size", "URL", "Download", "Description", "Type"]); //writes the headers | |
var folder = DriveApp.getFolderById("YOUR_FOLDER_ID");//that long chunk of random numbers/letters in the URL when you navigate to the folder | |
var files = folder.getFiles();//initial loop on loose files w/in the folder | |
var cnt = 0; | |
var file; |
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 "mechanize" | |
USERNAME = ENV.fetch("USERNAME") do | |
puts "Letterboxd USERNAME environment variable must be supplied" | |
exit | |
end | |
WATCHLIST = "http://letterboxd.com/%s/watchlist/" % USERNAME | |
agent = Mechanize.new |
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
#!/usr/bin/python | |
""" | |
Downloads and creates a CSV file from IMDB Top 250 list | |
""" | |
from pyquery import PyQuery as pq | |
import csv | |
import datetime | |
# for UnicodeWriter | |
import codecs | |
import cStringIO |
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
<?php | |
/* | |
Backup script for trakt.tv (API v2). | |
Live demo: https://darekkay.com/blog/trakt-tv-backup/ | |
*/ | |
// create a Trakt app to get a client API key: http://docs.trakt.apiary.io/#introduction/create-an-app | |
$apikey = "CLIENT_API_KEY"; |
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
git clone git://git.kernel.org/pub/scm/virt/kvm/kvm.git | |
git clone git://git.kiszka.org/kvm-kmod.git | |
cd kvm-kmod | |
./configure | |
make LINUX=../kvm clean sync all | |
modprobe -r kvm_intel | |
cp ./x86/kvm*.ko /lib/modules/$(uname -r)/kernel/arch/x86/kvm/ | |
modprobe kvm_intel |
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
javascript:{var link = document.getElementsByClassName('iconIMDB')[0].href;try{window.open(link);}catch(e){}};void(0); |
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
javascript:{var s = window.location.href.toString();var p=/\/(?:title|name)\/([a-zA-Z0-9])+\//gi;if (p.test(s)){try{var n=s.match(p)[0].split("\/")[2];window.open('http://letterboxd.com/imdb/'+n);}catch(e){}}};void(0); |
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
// Run this in the browser bar: var el = document.createElement("script"); el.src=URL; document.body.appendChild(el); | |
// | |
// 1. Login to http://my.vudu.com | |
// 2. Open the Inspector (cmd-ctrl-I on OSX), and un this script (if popups are blocked, temporarily unblock popups from Vudu in your browser) | |
// 3. Grab the downloaded CSV file (probably with a random name), and load at http://letterboxd.com/import | |
// | |
// How it works: this script is inserted into the Vudu page via a bookmarklet, grabs your session key, and | |
// makes a call to Vudu's api. Then it parses the response and creates a CSV, which it then opens in a page as a data-uri. | |
// | |
// Copyright 2013-2020. Code released under the MIT license. |
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
<?php require_once('letterboxd.php') ?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Letterboxd reviews</title> | |
<meta name="description" content="Letterboxd reviews demo"> | |
<meta name="author" content="ign <ignacio[at]ign.uy>"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="style.css"> |