I hereby claim:
- I am larsenv on github.
- I am larsenv (https://keybase.io/larsenv) on keybase.
- I have a public key ASA2JdchgEPOhDtpP9rZka1ltBESNXDcbKKlILpbYbRH2wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import sys | |
import subprocess | |
import shutil | |
import urllib2 | |
import time | |
import re | |
import platform |
These are misspellings of Plailect's name. All of these were done by other users.
import sys | |
if len(sys.argv) != 2: | |
print("Usage: python wii-remote-date.py <date string>") | |
sys.exit(1) | |
if len(sys.argv[1]) < 3: | |
print("Invalid string") | |
sys.exit(1) |
import datetime | |
import sys | |
messages = "" | |
if len(sys.argv) != 3: | |
print("Usage: dispisg.py <input> <output>") | |
sys.exit(1) | |
with open(sys.argv[1], "r") as f: |
This tutorial will briefly tell you how to use pisg, a program that takes IRC logs and makes a webpage about statistics of the chat, with Discord.
import subprocess | |
import sys | |
if len(sys.argv) != 3: | |
exit("Usage: name_secrets.py <DOL or ARM binary> <Wii or DS>") | |
if sys.argv[2] != "wii" and sys.argv[2] != "ds": | |
exit("Platform must be specified as Wii or DS.\nUsage: name_secrets.py <DOL or ARM binary> <Wii or DS>") | |
string = subprocess.Popen(["strings", sys.argv[1]], stdout=subprocess.PIPE) |
import json | |
import requests | |
import subprocess | |
home = requests.get("https://content.services.pbskids.org/v2/kidspbsorg/home/").text | |
home = json.loads(home) | |
shows = {} | |
episodes = {} |
#!/usr/bin/python | |
from binascii import hexlify, unhexlify | |
from Crypto.Cipher import AES | |
from struct import pack, unpack | |
from sys import argv, exit | |
import requests | |
import re | |
def modu(dat): | |
wad.write(b'\x00' * ((0x40 - (len(dat) % 0x40)) % 0x40)) |
import json | |
import os | |
import requests | |
import subprocess | |
cities = {} | |
cities["Atlanta"] = [524, 33.7490, -84.3880] | |
cities["Baltimore"] = [512, 39.2904, -76.6122] | |
cities["Boston"] = [506, 42.3601, -71.0589] |