Payload:
<?xml version="1.0" encoding="utf-8"?>
<tx>
<cmd id="1">GetAllZoneStereo</cmd>
</tx>
| pyobjc |
| shortcuts-production | |
| shortcuts | |
| workflow | |
| workflow000000 | |
| workflow1B9AF7 | |
| workflow7B72E9 | |
| workflow49E845 | |
| workflow55DAE1 | |
| workflow3871DE | |
| workflow19BD03 |
| import sqlite3 | |
| def search_in_all_tables(db_path, text): | |
| conn = sqlite3.connect(db_path) | |
| cursor = conn.cursor() | |
| cursor.execute("SELECT name FROM sqlite_master WHERE type='table'") | |
| tables = [t[0] for t in cursor.fetchall()] | |
| results = [] | |
| for table in tables: |
| function decompressString(memoryOffset) | |
| -- this is 0x0300064C in IWRAM and is updated when you change languages | |
| local englishOffset = 0x0804BFD8 | |
| local position = memory.read_u8(memoryOffset) | |
| local totalString = "" | |
| local cap = 0 | |
| local bitCounter = 0 | |
| while cap < 9000 do |
| from ebooklib import epub | |
| import io | |
| from PIL import Image | |
| from bs4 import BeautifulSoup | |
| # Open the EPUB file | |
| book = epub.read_epub('frugal.epub') | |
| image_alts = {} | |
| raw_images = {} |
| import datetime, requests, re, urllib | |
| from StringIO import StringIO | |
| from PIL import Image | |
| import pytesseract | |
| from cgi import escape | |
| import json | |
| base_url = "http://www.gocomics.com/pearlsbeforeswine/" | |
| start_date = datetime.datetime(2002, 1, 7) | |
| headers = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36"} |
| #!/bin/bash | |
| recepients=( | |
| "recipient@website.com" | |
| ) | |
| sender="sender@website.com" | |
| senderName="Sender Name" | |
| # error handling |
| __author__ = "Alex Beals" | |
| import sqlite3, markovify, codecs, warnings, os | |
| # Handle errors from running on Python 2.7 (emoji support) | |
| warnings.simplefilter("ignore") | |
| print("Connecting to chat database...") | |
| # Extract all of my texts from the 'db' file |
| # Name: Alex Beals | |
| # Description: Turn an array of contact data into a single vCard for easy import | |
| # Returns a string created from a first and last name, and an optional phone number and email address | |
| def createContact(firstname, lastname, phone="", email=""): | |
| contact = "BEGIN:VCARD\r\n" | |
| contact += "VERSION:2.1\r\n" | |
| contact += "N;LANGUAGE=en-us:" + str(lastname) + ";" + str(firstname) + "\r\n" | |
| contact += "FN:" + str(firstname) + " " + str(lastname) + "\r\n" | |
| if (phone != ""): |