Skip to content

Instantly share code, notes, and snippets.

View iAtog's full-sized avatar
🏠
Working from home

Ricardo Guerrero iAtog

🏠
Working from home
View GitHub Profile
@iAtog
iAtog / YamlFile.java
Created November 21, 2024 12:32
A file to create YML files super easy
import org.bukkit.configuration.InvalidConfigurationException;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.plugin.Plugin;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
public class YamlFile extends YamlConfiguration {
private final String fileName;
@iAtog
iAtog / config.json
Last active July 4, 2021 19:26
Create discord rich presences with buttons
{
"details": "Wow step-brother",
"state": "Liquid",
"small_image": "discord",
"small_text": "Discord!",
"large_image": "uhoh",
"large_text": "text",
"buttons": {
"one": ["Button 1", "https://google.com/"],
"two": ["Button 2", "https://google.com/"]