Skip to content

Instantly share code, notes, and snippets.

View JuniorWolfgamingDE's full-sized avatar
🐱
mewo

JuniorWMG JuniorWolfgamingDE

🐱
mewo
View GitHub Profile
@JuniorWolfgamingDE
JuniorWolfgamingDE / modpermissions.md
Last active October 17, 2025 09:25
TheTrollMods: Modrinth modpack move permissions list

Modliste für Modrinth Release

Eine Liste der Mods vom TrollMods Modpack, kategorisiert.

All Rights Reserved

  • "[Backport] 1.13 Bubble Columns for 1.12" von xFrah || Erlaubnis erhalten!
  • "Block Armor" von 2piradians
  • "Chunk-Pregenerator" von Speiger
  • "DiscordCraft" von dierke9
  • "Drones" von vadis365
  • "Entity Culling" von meldexun
@atomkirk
atomkirk / stop-all-docker.md
Created February 9, 2021 14:25
Stop all Docker containers

I will often run this command to make sure all my docker containers are stopped and removed before running docker-compose up. Sometimes when you restart your system, old containers will start back up automatically in the background.

docker stop $(docker ps -aq) && docker rm $(docker ps -aq)
@mfd
mfd / 06.png
Last active January 28, 2026 15:55
Gilroy font
06.png
@WesJD
WesJD / Properties.java
Last active October 13, 2024 16:17
Simple class for changing Minecraft server properties easily.
public class Properties {
public static void savePropertiesFile() {
((DedicatedServer) MinecraftServer.getServer()).propertyManager.savePropertiesFile();
}
public static void setServerProperty(ServerProperty property, Object value) {
((DedicatedServer) MinecraftServer.getServer()).propertyManager.setProperty(property.getPropertyName(), value);
}