movie | movie runtime | episode runtime | episode no | series | ratio |
---|---|---|---|---|---|
My Neighbor Totoro | 86 | 151 | 233 | Howl's Moving Podcastle | 1.76 |
The Keep | 96 | 168 | 218 | Michael Mannsplaining/Cast of the Podhicans | 1.75 |
Stop Making Sense | 88 | 138 | 248 | Stop Making Podcasts | 1.57 |
Space Jam | 88 | 134 | 185 | Other | 1.52 |
Porco Rosso |
This file contains 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
if (!window['YT']) { | |
var YT = { | |
loading: 0, | |
loaded: 0 | |
}; | |
} | |
if (!window['YTConfig']) { | |
var YTConfig = { | |
'host': 'http://www.youtube.com' | |
}; |
This file contains 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
Star Wars: Episode I - The Phantom Menace (1999) | |
The Judge (2014) | |
Star Wars: Episode II - Attack of the Clones (2002) | |
The Fantastic Four (1994) | |
Fantastic Four (2005) | |
Fantastic Four: Rise of the Silver Surfer (2007) | |
Fantastic Four (2015) | |
Star Wars: Episode III - Revenge of the Sith (2005) | |
Star Wars (1977) | |
The Empire Strikes Back (1980) |
This file has been truncated, but you can view the full file.
This file contains 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
[ | |
{ | |
"adult": false, | |
"backdrop_path": "/v6lRzOActebITc9rizhNAdwQR1O.jpg", | |
"belongs_to_collection": { | |
"id": 10, | |
"name": "Star Wars Collection", | |
"poster_path": "/iTQHKziZy9pAAY4hHEDCGPaOvFC.jpg", | |
"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg" | |
}, |
All notable changes to this project will be documented in this file.
Generated by auto-changelog
.
17 August 2017
This file contains 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
# Generate keys if you haven't done so already | |
ssh-keygen -t rsa | |
# Append key to file on remote server | |
cat ~/.ssh/id_rsa.pub | ssh user@host 'mkdir -p .ssh && cat >> .ssh/authorized_keys' |
This file contains 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
mkdir DIR_NAME | |
cd DIR_NAME | |
git init --bare | |
echo -e '#!/bin/sh\nGIT_WORK_TREE=/var/sites/SITE_PATH/public_html/DIR_NAME git checkout -f' > hooks/post-receive | |
chmod +x hooks/post-receive | |
cd .. |
This file contains 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 load($path){ | |
return json_decode(uncompress(file_get_contents($path))); | |
} | |
function save($data, $path){ | |
$fh = fopen($path, 'w'); | |
fwrite($fh, compress(json_encode($data))); | |
fclose($fh); | |
} | |
function compress($string){ | |
return gzdeflate($string, 9); |
This file contains 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 parseParams(string){ | |
var obj = {}; | |
string.replace(/[?&]?([^=]+)=([^&]*)/g, function(m,k,v) { obj[k] = v; }); | |
return obj; | |
} | |
var url = parseParams(location.search); |
NewerOlder