Skip to content

Instantly share code, notes, and snippets.

View bomberfish's full-sized avatar
:shipit:
ship now or die

Hariz S. bomberfish

:shipit:
ship now or die
View GitHub Profile
@bomberfish
bomberfish / qrcodegen-file.py
Created December 27, 2021 23:46
The QR code generator I made some time ago, except it accepts files.
#importing pip like this will fail in the future, should be replaced.
for n in range(1):
try:
import pip
except ImportError as missing:
print("You don't have pip. Exiting...")
exit()
#install package function
def install(package):
@bomberfish
bomberfish / minecraftskindownloader.sh
Last active November 14, 2021 00:45
Really simple skin downloader that uses minecraftskinstealer.com
#!/bin/bash
name=$0
if [ -z "$1" ]
then
echo "Usage:"
echo $name "[username]"
else
wget https://minecraftskinstealer.com/api/v1/skin/download/skin/$1 -O $1.png
fi
#importing pip like this will fail in the future, should be replaced.
for n in range(1):
try:
import pip
except ImportError as missing:
print("You don't have pip. Exiting...")
exit()
#install package function
def install(package):