This guide will help you understand kotlin's syntax.
Note that this guide does not cover any multiplatform aspects, but rather, the JVM platform. This guide also assumes that you have good knowledge of Java.
TODO:
#!/bin/bash | |
REGISTRATION_TOKEN="..." # Deprecated but eh | |
GITLAB_URL="https://gitlab.com" | |
container=$(docker run -d --restart always \ | |
-v /srv/gitlab/runners/etc:/etc/gitlab-runner \ | |
-v /var/run/docker.sock:/var/run/docker.sock \ | |
gitlab/gitlab-runner:latest) | |
echo "Created container $container" |
#!/bin/bash | |
# MCSR Reset Script for Linux | |
# made by radsteve.sh#8033 | |
delay="0.020" # Delay between key presses | |
mcwindow=$(xdotool search --class minecraft) # Window ID from minecraft | |
mcwindowname=$(xdotool getwindowname "$mcwindow") # Window name from minecraft | |
mode="ssg" # Options: ssg and rsg | |
ssgseed="3294725893620991126" # If the seed contains a - please remove it. If not, remove line 51. |
; Script by Radsteve | |
; Forked from Specnr's MoveWorlds-Script | |
#SingleInstance, Force | |
SendMode Input | |
SetWorkingDir, %A_ScriptDir% | |
global count := 0 | |
global McDirectories := [] | |
global rawPIDs := [] | |
global instances := 0 |