Skip to content

Instantly share code, notes, and snippets.

View Skillkiller's full-sized avatar
🐢

Sebastian Espei Skillkiller

🐢
View GitHub Profile
@Skillkiller
Skillkiller / Armor.md
Created September 10, 2024 01:44
Vanilla Minecraft 1.21 Verzauberungen

Rüstung

Name Englisch Name Deutsch Max Level
Protection Schutz 4
Fire Protection Feuerschutz 4
Blast Protection Explosionsschutz 4
Projectile Protection Projektilschutz 4
Thorns Dornen 3
Respiration Atmung 3
Aqua Affinity Wasserarbeiter 1
## Configuration file for a typical Tor user
## Last updated 9 October 2013 for Tor 0.2.5.2-alpha.
## (may or may not work for much older or much newer versions of Tor.)
##
## Lines that begin with "## " try to explain what's going on. Lines
## that begin with just "#" are disabled commands: you can enable them
## by removing the "#" symbol.
##
## See 'man tor', or https://www.torproject.org/docs/tor-manual.html,
## for more options you can use in this file.
@Skillkiller
Skillkiller / prnt.sc Url Format.txt
Last active January 31, 2020 02:08
prnt.sc Url Format
Die prnt.sc URL haben immer einen festen Aufbau: prnt.sc/[6Zeichen]
Die niedrigste Zeichen-Anordnung ist 6 mal a also aaaaaa. Danach wird immer für jedes Bild das Zahlen/Zeichensystem inkrementiert.
Das Zahlen/Zeichen System hat folgenden Aufbau:
0123456789abcdefghijklmnopqrstuvwxyz
Daher ergeben sich immer nachfolgende und vorhergehende ID.
Beispiel: qqwxju
Vorhergehend: qqwxjt
Nachfolgend: qqwxjv
@Skillkiller
Skillkiller / Status.java
Created March 24, 2019 20:34
Java Klasse zum Abfragen von Server Description, Online Spieler und Maximale Spieleranzahl
@Getter
public class Status {
private int port;
private String host;
private int players;
private int maxPlayers;
private String description;
public Status( String host, int port ) throws IOException {