chmod +x skin-convert.sh
./skin-convert.sh skin.png
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 mcstatus import JavaServer | |
import discord | |
import asyncio | |
import re | |
IP = '' | |
TOKEN = '' | |
server = JavaServer.lookup(IP) | |
client = discord.Client(intents=discord.Intents.default()) |
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
// ==UserScript== | |
// @name simple minecraft.wiki redirect | |
// @namespace https://gist.github.com/7f4704f8f189c4f08307a6eccc9be621 | |
// @match https://minecraft.fandom.com/wiki/* | |
// @match https://minecraft-archive.fandom.com/wiki/* | |
// @icon https://minecraft.wiki/favicon.ico | |
// @grant none | |
// @version 0.1 | |
// @description Simple redirect script to the new wiki. | |
// ==/UserScript== |