View image_paths.txt
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
LO1/FRAME_1005/FRAME_1005_H1.PNG | |
LO1/FRAME_1005/FRAME_1005_H2.PNG | |
LO1/FRAME_1005/FRAME_1005_H3.PNG | |
LO1/FRAME_1005/FRAME_1005_M.PNG | |
LO1/FRAME_1006/FRAME_1006_M.PNG | |
LO1/FRAME_1007/FRAME_1007_M.PNG | |
LO1/FRAME_1009/FRAME_1009_M.PNG | |
LO1/FRAME_1010/FRAME_1010_M.PNG | |
LO1/FRAME_1012/FRAME_1012_M.PNG | |
LO1/FRAME_1013/FRAME_1013_H1.PNG |
View WSJ_Unlock_Bookmarklet.js
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
javascript:window.location.href='https://m.facebook.com/l.php?u='+encodeURIComponent(window.location.href); |
View nested_keys.js
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
var level3 = (((test || {}).level1 || {}).level2 || {}).level3; | |
alert( level3 ); |
View timespent.py
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
from bs4 import BeautifulSoup | |
import urllib2 | |
user_id = {{USER_ID_HERE}} | |
ratings_url = "http://www.imdb.com/user/" + user_id + "/ratings" | |
total_runtime = 0 | |
def get_ratings_page(url): | |
print("fetching: " + url) | |
response = urllib2.urlopen(url) |
View index.html
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
<div id="errors" style=" | |
background: #c00; | |
color: #fff; | |
display: none; | |
margin: -20px -20px 20px; | |
padding: 20px; | |
white-space: pre-wrap; | |
"></div> | |
<div id="container"></div> | |
<script> |