Skip to content

Instantly share code, notes, and snippets.

View Intelliractive's full-sized avatar

Intelliractive

View GitHub Profile
@Intelliractive
Intelliractive / day 1 part 1.sc
Last active December 2, 2023 10:54
Advent of Code 2023
import scala.collection.mutable.ListBuffer
import scala.io.StdIn.*
val alphabet = "abcdefghijklmnopqrstuvwxyz"
println("==↓input↓==\n")
// read input until it's blank
val lines = new ListBuffer[String]
@Intelliractive
Intelliractive / Countdown.java
Created November 6, 2023 06:22
Bukkit API Timers and Counters
import org.bukkit.Bukkit;
import org.bukkit.scheduler.BukkitTask;
public class Countdown {
private int seconds;
private BukkitTask task;
public Countdown(int seconds) {
this.seconds = seconds;