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
{ | |
"text/vnd.wap.wmlscript": "Wireless Markup Language Script (WMLScript)", | |
"application/cu-seeme": "CU-SeeMe", | |
"application/vnd.mobius.plc": "Mobius Management Systems - Policy Definition Language File", | |
"application/vnd.dna": "New Moon Liftoff/DNA", | |
"application/mathml+xml": "Mathematical Markup Language", | |
"image/x-cmx": "Corel Metafile Exchange (CMX)", | |
"application/vnd.oasis.opendocument.text": "OpenDocument Text", | |
"application/vnd.ezpix-album": "EZPix Secure Photo Album", | |
"application/xslt+xml": "XML Transformations", |
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
#wrokflow doc | |
{ | |
"_id": "63761a9646ecc443c460069a5006b44b", | |
"_rev": "11-11813e6bff59bf0056bbc545dc2df3e0", | |
"type": "workflow", | |
"background": true, | |
"paginated": false, | |
"zip": true, | |
"steps": [ |
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
import os | |
import hashlib | |
def check_size(path, files): | |
suspects = {} | |
for file in files: | |
size = os.path.getsize(os.path.join(path, file)) | |
if size in suspects: | |
suspects[size].append(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
# coding: utf-8 | |
import re | |
import tornado.ioloop | |
import tornado.web | |
import tornado.httpclient | |
import tornado.options | |
import argparse | |
import signal | |
import HTMLParser | |
import webbrowser |