Skip to content

Instantly share code, notes, and snippets.

View kangarko's full-sized avatar

Matej kangarko

View GitHub Profile
@kangarko
kangarko / README.md
Last active July 14, 2026 22:24
15-Minute Minecraft Plugin Tutorial For 1.8.8 - 1.21

15-Minute Minecraft Plugin Tutorial For 1.8.8 - 1.21

In this new Minecraft plugin development guide, I'll show you how to make Minecraft plugins for Bukkit, Spigot and Paper.

This guide covers Minecraft plugins for 1.8.8 to 1.21.

We'll be using IntelliJ with a dedicated extension for Minecraft plugin development to make this process fast and easy.

Do you want a complete step-by-step tutorial on developing your own Minecraft plugins? Click here for a full Minecraft plugin development training.

@kangarko
kangarko / vscode-insiders-terminal-313694-fix.py
Created May 1, 2026 09:36
Temporary macOS arm64 VS Code Insiders terminal workaround for microsoft/vscode#313694
from pathlib import Path
import platform
import shutil
import sys
INDEX_REPLACEMENT = """var terminalCtor;
if (process.platform === 'darwin' && process.arch === 'arm64') {
terminalCtor = require('./vscodeDarwinPtyTerminal').DarwinPtyTerminal;
}
else if (process.platform === 'win32') {