Skip to content

Instantly share code, notes, and snippets.

View catter1's full-sized avatar
🏖️

catter1 catter1

🏖️
View GitHub Profile
@catter1
catter1 / regions_unexplored.md
Last active April 13, 2024 15:11
Regions Unexplored Complete Biome List

Regions Unexplored - Biome List

While the wiki is being created, this is a complete list of all 71 Regions Unexplored biomes as of v0.5.5. Each listing contains the biome name, id, description, and two images. One image is taken without shaders (Vanilla), and the other with Complementary Unbound shaders with default configuration.

As a note, I do not consider myself an amazing photographer. Enjoy the screenshots there are! I hope this list and descriptions are of help to you.

Overworld

@catter1
catter1 / discord_update.sh
Created February 13, 2023 23:35
A script to update Discord when an update arrives. Written specifically for my machine.
#!/bin/bash
cd ~/Downloads
wget -q -O discord_download_$(date +%F).tar.gz "https://discord.com/api/download?platform=linux&format=tar.gz"
sudo tar -xzf discord_download_$(date +%F).tar.gz -C /opt
sudo ln -sf /opt/Discord/Discord /usr/bin/Discord
@catter1
catter1 / image_magick.py
Created March 15, 2022 21:29
Image Standardizer
import sys
from wand.image import Image
sys.argv.pop(0)
if len(sys.argv) < 1:
print("Please provide at least 1 image file path as an argument.")
sys.exit()
HEIGHT = 1008
WIDTH = 1792