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 test() { | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 pympler import summary, muppy | |
import psutil | |
# source: http://www.mobify.com/blog/sqlalchemy-memory-magic/ | |
def get_virtual_memory_usage_kb(): # pragma: no cover | |
""" | |
The process's current virtual memory size in Kb, as a float. | |
""" |
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
import argpase | |
import fileinput | |
if __name__ == '__main__': | |
parser = ArgumentParser() | |
parser.add_argument('--dummy', help='dummy argument') | |
parser.add_argument('files', metavar='FILE', nargs='*', help='files to read, if empty, stdin is used') | |
args = parser.parse_args() | |
# If you would call fileinput.input() without files it would try to process all arguments. |
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
class Range(object): | |
"""Represents an integer range""" | |
regex = re.compile(r'(?P<low>\d+|-\d+)?\.\.(?P<high>\d+|-\d+)') | |
def __init__(self, low, high): | |
self.low = low | |
self.high = high |
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
// ==UserScript== | |
// @name SCP Foundation reading helper | |
// @namespace http://hrnz.net/ | |
// @version 0.1 | |
// @description Adds simple buttons to SCP page to allow easy paging. | |
// @author Martin Thurau <[email protected]> | |
// @match http://www.scp-wiki.net/scp-* | |
// @grant unsafeWindow | |
// @grant GM_addStyle | |
// @grant GM_setValue |
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
#!/bin/sh | |
FOLDER=android/bin | |
IN_APK_NAME=App-release-unsigned.apk | |
OUT_APK_NAME=App-release-signed-aligned.apk | |
KEYSTORE=release-key.keystore | |
KEYSTORE_ALIAS=app_release | |
echo ">>> Signing $OUT_APK_NAME..." |
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
class func_and_method_decorator(object): | |
'''A clased based decorator that takes parameters and works on plain functions | |
and instance methods''' | |
def __init__(self, *args, **kwargs): | |
'''The init function is called when a module where the decorator is used | |
is imported. It gets passed all parameters that are given to decorator | |
definition. I.e. | |
@func_and_method_decorator(foo='bar') |
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
forbidden_starts = filter(bool, | |
''' | |
000 | |
00100 | |
0010100 | |
00101011 | |
001011 | |
00110 | |
00111000 | |
0011101 |
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
import SimpleHTTPServer | |
import SocketServer | |
class H(SimpleHTTPServer.SimpleHTTPRequestHandler): | |
def do_GET(self): | |
print self.headers | |
httpd = SocketServer.TCPServer(("", 8090), H) | |
httpd.server_forever() |
NewerOlder