Skip to content

Instantly share code, notes, and snippets.

from pathlib import Path
import shutil
import argparse
DEFAULT_TYPES = 'SMs,SKMs,AnimSeqs,AnimComps,AnimMonts'
def main(in_path, out_path, internal_name, types):
in_path = Path(in_path)
out_path = Path(out_path)
@florensie
florensie / minecraft@.service
Last active November 7, 2020 21:45
Minecraft systemd unit
[Unit]
Description=Minecraft Server: %i
After=network.target
[Service]
WorkingDirectory=/home/florens/%i
User=florens
Group=florens
@florensie
florensie / random_map.py
Created September 6, 2019 15:08
blops quick random map
import random
import keyboard
import time
MAPS = [
'la',
'dockside',
'carrier',
'drone',
'express',
@florensie
florensie / uwuwize.py
Created September 1, 2019 19:23
Uwuwize Minecraft
import json
# Load
path = input('File path: ')
f = open(path)
lang = json.load(f)
f.close()
# Replace
for i in lang: