- Go here. You must use ANSI Shadow font.
- Type your text and copy it.
- Save it as text file or pass the clipboard directly to script.
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
#Requires -RunAsAdministrator | |
Write-Output "Removing previous instances of winget..." | |
Get-AppxPackage -allUsers *desktopappinstaller* | Remove-AppxPackage | |
Get-AppxPackage -allUsers *winget* | Remove-AppxPackage | |
Write-Output "Getting information on latest winget release..." |
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
from requests import Session | |
from bs4 import BeautifulSoup | |
UA = ( | |
"Mozilla/5.0 (Linux; cli) pyrequests/0.1 " | |
"(python, like Gecko, like KHTML, like wget, like CURL) myscrapper/1.0" | |
) | |
req = Session() | |
req.headers.update({"User-Agent": UA}) |
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 | |
import sys | |
import re | |
import argparse | |
from io import BytesIO | |
from random import random | |
from time import sleep | |
from functools import lru_cache |
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 | |
import sys | |
import re | |
import os | |
import argparse | |
from tempfile import NamedTemporaryFile | |
from subprocess import run | |
from shutil import which |
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 bash | |
# shellcheck disable=SC1117 | |
# Script that uploads files to random pomf-like sites | |
# It can take multiple files as arguments | |
#DED: | |
# https://mixtape.moe/upload.php | |
# https://citron.pw | |
# http://www.shanatan.moe/upload.php ?? |
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 | |
""" | |
Save image from clipboard to file | |
""" | |
import sys | |
import glob | |
import argparse |
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 | |
import sys | |
import re | |
class fileSort: | |
def __init__(self): | |
self.delim = "\n" | |
self.string_list = list() |
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 bash | |
if [[ $# != 1 ]]; then | |
echo "Usage: get_south_park <page link>" | |
exit 0 | |
fi | |
TD="$(mktemp -d)" | |
clear_on_exit() { |
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 bash | |
#shellcheck disable=SC2155,SC1117 | |
# Wraps curl with a custom-drawn progress bar. Use it just like curl: | |
# | |
# $ curlbar -O http://example.com/file.tar.gz | |
# $ curlbar http://example.com/file.tar.gz > file.tar.gz | |
# | |
# All arguments to the program are passed directly to curl. Define your | |
# custom progress bar in the `print_progress` function. | |
# |