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
======================= | |
1.4Mb 2xSDS | |
Y-E Data 6130S or 6331S | |
======================= | |
600 RPM (Normal) 720 RPM * | |
------------------- ------------- | |
ET '' ET '' | |
PC '' PC '' | |
IT '' IT '' |
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/env python | |
flashVer = "WIN 10,3,183,7" | |
from HTMLParser import HTMLParser | |
from pyamf.remoting.client import RemotingService | |
import urllib2, sys | |
from time import time | |
# first we need to define a very basic html parser to get two meta properties |
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/env python | |
import sqlite3, sys, fnmatch, os, platform | |
def verify_database_file(path): | |
connection = None | |
sys.stdout.write('Checking database @ "{0}".\n'.format(path)) | |
try: | |
connection = sqlite3.connect(path, isolation_level="EXCLUSIVE") | |
except Exception, e: | |
sys.stderr.write('Unable to connect to database.\n') |
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
def stathax(path): | |
if "Windows" == platform.system(): | |
return os.stat(u'\\\\?\\%s' % path) | |
else: | |
return os.stat(path) | |
def openhax(path, mode): | |
if "Windows" == platform.system(): | |
return open(u'\\\\?\\%s' % path, mode) | |
else: |
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/env python | |
from HTMLParser import HTMLParser | |
import urllib2, re | |
pdfre = re.compile(r"^pdf/1[89][0-9][0-9]-[0-9]{2}-[0-9]{2}\.pdf$") | |
journalpage = re.compile(r"^/scientificamerican/journal/v([1-9]|[1-9][0-9]|10[01])/") | |
class SAParser(HTMLParser): | |
def __init__(self, linkcallback): |
NewerOlder