Skip to content

Instantly share code, notes, and snippets.

View NahuLD's full-sized avatar
:shipit:

Nahuel Dolores NahuLD

:shipit:
View GitHub Profile
anal
analannie
analsex
anus
areola
argie
aroused
arse
arsehole
assbagger
@NahuLD
NahuLD / .ignore
Last active August 1, 2023 17:10
Restic backup script (S3 compatible Wasabi)
# Empty
# MUST BE LOCATED IN /etc/restic
@NahuLD
NahuLD / MessageProvider.java
Created February 7, 2020 23:07
Useful plugin message provider for Bukkit!
import com.google.common.io.ByteArrayDataOutput;
import com.google.common.io.ByteStreams;
import org.bukkit.Bukkit;
import org.bukkit.plugin.Plugin;
public class MessageProvider {
@SuppressWarnings("UnstableApiUsage")
private ByteArrayDataOutput output = ByteStreams.newDataOutput();
@NahuLD
NahuLD / player-list.txt
Created August 26, 2019 01:50
Scrapped Minecraft player list (player name, unique id), with 1k entries.
Acucanu,e7a9f4d6-2c5f-4971-aa57-3db8cfe99575
aestqetic,91135673-1403-4695-8a8b-ee684a9d89df
AmberRains,98b636f4-9a6b-44d5-bb61-36b9f4b101d2
Amorah,038ba37e-8ac8-4570-9f85-1f67a8898ec4
anxiuos,f1459f89-2c6f-4ff2-8eab-f80a38ffa3d0
ARDADEGERLINAS,e5801818-e9df-4cc1-8223-37dbc413dca3
Avatar_Blue,12d8a340-ea74-4d50-8587-51265eeb6010
Bambooe,76e6418f-4daf-4ee4-a5a9-3c158653a17a
Blqckk,b4d5899f-6407-4213-8ca9-ee4cfa3d1be9
Condenses,4df24faa-7ee4-4fd9-ab6d-65750f56bde5
@NahuLD
NahuLD / RandomCollection.java
Last active August 28, 2019 16:21
Simple class to get random items from a collection. Recommended for chances.
package $package;
import java.util.TreeMap;
import java.util.NavigableMap;
import java.util.Random;
import java.util.concurrent.ThreadLocalRandom;
public final class RandomCollection<E> {
private final NavigableMap<Double, E> map = new TreeMap<>();