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 logging | |
logger = logging.getLogger(__name__) | |
import argparse | |
import os.path | |
import requests | |
import shutil |
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 argparse | |
import re | |
from zipfile import ZipFile | |
def get_id_by_tag(text: str): | |
i1 = text.find('unique-identifier="') | |
i2 = text.find('"', i1 + 19) | |
id_start = text.find(">", text.find(text[i1 + 19:i2], i2)) + 1 | |
return text[id_start:text.find("<", id_start)] |
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 python3 | |
""" | |
Simple example script for running notebooks and reporting exceptions. | |
Usage: `run-ipynb.py foo.ipynb [bar.ipynb [...]]` | |
Each cell is submitted to the kernel, and checked for errors. | |
""" | |
import os |
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 python3 | |
## If you see messages like this on your kubelet journal: | |
## | |
## Mar 25 22:36:44 ip-10-0-3-67.ec2.internal dockerd-current[28612]: time="2018-03-25T22:36:44.419126265Z" level=error msg="Handler for GET /v1.24/containers/60532fa8184bdf41e52788194faa1253f1168e3ad4f54f7c159192fe66c4bb1d/json returned error: No such container: 60532fa8184bdf41e52788194faa1253f1168e3ad4f54f7c159192fe66c4bb1d" | |
## | |
## use this script to remove dockershim container files from /var/lib/dockershim/sandbox | |
import os, glob, subprocess |
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
// ==UserScript== | |
// @name Torn Bootlegging Auto Collector | |
// @namespace https://github.com/AliMirlou | |
// @version 0.5 | |
// @description Adds and copies DVDs and collects from Online Store. | |
// @author Piastasa & Xerac | |
// @match https://www.torn.com/loader.php?sid=crimes | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=torn.com | |
// @downloadURL https://gist.github.com/AliMirlou/32a2972419e2f8b3bdba6384cbb8aaf9/raw/torn-bootlegging-auto-collector.user.js | |
// @updateURL https://gist.github.com/AliMirlou/32a2972419e2f8b3bdba6384cbb8aaf9/raw/torn-bootlegging-auto-collector.user.js |