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
| <?php | |
| header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); | |
| header("Cache-Control: post-check=0, pre-check=0", false); | |
| header("Pragma: no-cache"); | |
| ob_end_flush(); | |
| $pid = getmypid(); | |
| $secs = 10; | |
| $cmd = "kill -3 $pid"; |
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
| from collections import Counter | |
| class Santa: | |
| def __init__(self): | |
| self.position = [0,0] | |
| self.path = [tuple(self.position)] | |
| def move(self, char): |
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/python | |
| import sys | |
| import itertools | |
| import binascii | |
| import StringIO | |
| from Crypto.Hash import SHA, MD5 | |
| from Crypto.Cipher import AES, ARC4 | |
| from Crypto import Random | |
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
| from datetime import datetime | |
| from os import path | |
| import sys | |
| import shutil | |
| from PIL import Image | |
| __author__ = 'Darien Hager' | |
| class SteamScreenImport: |
OlderNewer