Skip to content

Instantly share code, notes, and snippets.

@nolte
nolte / minecraft-server.md
Last active October 15, 2018 20:45
minecraft server

Server Side Bukkit Plugins

Plugin Type Beschreibung DB config 1.13.1
vault util Dependency für i-conomy no yes
worldedit building Male dir die Welt wie sie dir gefällt. no yes (betabuild)
craftbook building Nützliche Scripte z.B. Teleporter usw... no yes (feature-build
worldguard building Regionen der Welt unter Schutz stellen. yes yes (betabuild)
multiverse util Einfach Weltübergreifende Portle erstellen. no yes
@nolte
nolte / minecraft-server-regions.md
Last active October 25, 2018 17:22
Der Minecraft Server und seine Bereiche

Minecraft Welten

Allways Daylight

/gamerule doDaylightCycle false

World

Die Echte Spielwelt

@nolte
nolte / minecraft-client.md
Last active October 14, 2018 13:01
Minecraft Client Config
@nolte
nolte / commandlist.md
Last active February 18, 2018 12:17
Docker Maintenance Commands

Docker Commands

How to get bash

docker exec -i -t 665b4a1e17b6 /bin/bash #by ID
or
docker exec -i -t loving_heisenberg /bin/bash #by Name
@nolte
nolte / eclipse.md
Last active April 9, 2017 10:59
Eclipse Plugins and configuration
@nolte
nolte / jenkins-note.md
Last active June 23, 2017 18:30
jenkins-scripts

Remove Projects

import hudson.model.*

jobsToDelete = ["gen-docker"]

deleteChildren(Hudson.instance.items)

def deleteChildren(items) {
// setup Maven
import jenkins.model.*
import com.cloudbees.plugins.credentials.*
import com.cloudbees.plugins.credentials.common.*
import com.cloudbees.plugins.credentials.domains.*
import com.cloudbees.jenkins.plugins.sshcredentials.impl.*
import hudson.plugins.sshslaves.*;
import hudson.markup.RawHtmlMarkupFormatter
import hudson.slaves.EnvironmentVariablesNodeProperty
@nolte
nolte / jenkins-list-extension.groovy
Created June 22, 2017 19:23
List all installed Jenkins Extension
import jenkins.model.*;
import hudson.ExtensionFinder;
List<ExtensionFinder> finders = Jenkins.instance.getExtensionList(ExtensionFinder.class);
for (finder in finders) {
println(">>> " + finder);
if (finder instanceof hudson.ExtensionFinder.GuiceFinder) {
println(finder.annotations.size());
for (key in finder.annotations.keySet()) {
@nolte
nolte / dockerhub_deploy.sh
Last active September 21, 2017 17:34
TravisCI deploy image to Dockerhub
#!/bin/bash
set -o errexit
DOCKER_USERNAME=$1
DOCKER_PASSWORD=$2
DOCKER_TAG_LOCAL=$3
DOCKER_CONTAINER_NAME=$4
VERSION=$5
@nolte
nolte / readme.md
Last active June 16, 2018 13:33
LanParty