Skip to content

Instantly share code, notes, and snippets.

View lyricalpaws's full-sized avatar
🦊
° ☾ ☆ ¸. ¸ ★ :.  . • ○ ° ★

Nebula lyricalpaws

🦊
° ☾ ☆ ¸. ¸ ★ :.  . • ○ ° ★
View GitHub Profile
@lyricalpaws
lyricalpaws / fuck.py
Created September 25, 2024 00:51
Grabs all of Marques Brownlee's shitty scam app (panels.art)'s wallpapers
import requests
import os
import time
from urllib.parse import urlparse
def downloadImage(url, filePath):
try:
response = requests.get(url)
if response.status_code == 200:
with open(filePath, 'wb') as f:
### Keybase proof
I hereby claim:
* I am lyricalpaws on github.
* I am lyricalpaws (https://keybase.io/lyricalpaws) on keybase.
* I have a public key whose fingerprint is 2AA7 745C AC2F 14C2 DB45 854D 729C 16E3 F1CF 7713
To claim this, I am signing this object:
@lyricalpaws
lyricalpaws / passwd.py
Created October 8, 2018 22:00
An actually decent password generator made in python.
# Importing modules for the program.
import random
import sys
# Setting the characters that the generator can use when making passwords.
chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-!?$'
# Asks user how long each password should be, and requires an input.
length = input("Password length?\n> ")
@lyricalpaws
lyricalpaws / Random String
Created March 20, 2018 13:57
Creates a random string of letters and numbers in JavaScript!
Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);