Skip to content

Instantly share code, notes, and snippets.

View DanielEnglisch's full-sized avatar

Daniel Englisch DanielEnglisch

  • Austira
View GitHub Profile
@Jikoo
Jikoo / Experience.java
Last active August 30, 2023 14:42
A utility for managing experience with Bukkit.
package com.github.jikoo.planarwrappers.util;
import org.bukkit.entity.Player;
/**
* A utility for managing player experience.
*/
public final class Experience {
/**
@james-d
james-d / CalendarView.java
Last active May 28, 2023 07:14
Simple demo of creating a appointment-calendar like view (similar to the default calendar view in Google Calendar), in JavaFX 8. Just manages selection of time slots in the grid.
package calendarview;
import java.time.DayOfWeek;
import java.time.Duration;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.List;