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
____ _ | |
/ __ \| | __ | |
| | | | |/ / | |
| |__| | < | |
\____/|_|\_\ |
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
# HTTP Status Codes | |
import bs4, requests;soup=bs4.BeautifulSoup(requests.get('http://httpstat.us/').text, 'html.parser'); [[soup.find_all('dt')[d].text.strip(),soup.find_all('dd')[d].text.strip()] for d in list(range(0, soup.find_all('dt').__len__()))] | |
# Reddit Hot Posts | |
import requests;[[a['data']['title'], "https://reddit.com" + a['data']['permalink'], a['data']['subreddit_name_prefixed']] for a in requests.get("https://www.reddit.com/.json", headers={'User-agent':'me'}).json()['data']['children']] |
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
# MSFTScraper - Microsoft Bundle ID Locator | |
# By jack (oganessium) | |
# @saucize/@trueyak, github.com/oganessium | |
from bs4 import BeautifulSoup as bs | |
import requests | |
print("=============================") | |
print("MSFTScraper - Microsoft Bundle ID Locator") | |
print("=============================") |
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 requests | |
from bs4 import BeautifulSoup | |
import random | |
def reddit(): | |
sel = input("u for user, b for batch ") | |
if sel.lower()=="u": | |
user = input("input a username: ") | |
if user.startswith("/u/"): | |
user=user[3:] |
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
# PlayScraper - Android Bundle ID Locator | |
# By jack (oganessium) | |
# @saucize/@trueyak, github.com/oganessium | |
from bs4 import BeautifulSoup as bs | |
import requests | |
print("=============================") | |
print("PlayScraper - Android Bundle ID Locator") | |
print("=============================") |
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 os | |
import subprocess | |
import math | |
# This program is severely outdated. | |
# The updated version can be found at github.com/oganessium/pyrespringcreatorGUI | |
"""begin the spaghetti""" | |
if os.name != 'nt': |
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 discord | |
import asyncio | |
from discord.ext import commands | |
from discord.ext.commands import Bot | |
import platform | |
from os import listdir, makedirs, utime, rename, system, remove | |
from os.path import isfile, join, isdir, exists, dirname, realpath | |
import traceback | |
import random | |
from random import randint |
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
<HTA:APPLICATION ID="customheader" | |
applicationname="customheader" | |
border="dialog" | |
maximizebutton="no" | |
minimizebutton="no" | |
singleinstance="no" | |
scroll="no" | |
caption="no" | |
innerborder="no" | |
showintaskbar="yes" |