Skip to content

Instantly share code, notes, and snippets.

View Ranzeplay's full-sized avatar
🥰
Struggling to learn math and computer science

Jeb Feng Ranzeplay

🥰
Struggling to learn math and computer science
View GitHub Profile
@comp500
comp500 / fabricserversidemods.md
Last active September 3, 2024 03:23
Useful Fabric server side mods
@MattPD
MattPD / analysis.draft.md
Last active November 15, 2025 08:43
Program Analysis Resources (WIP draft)
@Galigator
Galigator / java.util.logging.Logger to org.slf4j.Logger
Created April 20, 2016 17:31
A simple function to convert a standard java util Logger into a non standard one (slf4j).
public static org.slf4j.Logger toSlf4j(final Logger logger)
{
return new org.slf4j.Logger()
{
@Override
public String getName()
{
return logger.getName();
}