Skip to content

Instantly share code, notes, and snippets.

View betterclient's full-sized avatar
🤓
nerd

BetterClient betterclient

🤓
nerd
  • Turkey
  • 04:55 (UTC +03:00)
View GitHub Profile
@betterclient
betterclient / claspath shortened.map
Last active December 9, 2024 16:24
java standard library data
C java/io/PrintStream
E java/io/FilterOutputStream
F autoFlush Z 0
F trouble Z 0
F formatter Ljava/util/Formatter; 0
F textOut Ljava/io/BufferedWriter; 0
F charOut Ljava/io/OutputStreamWriter; 0
F closing Z 0
M requireNonNull (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; 1
M toCharset (Ljava/lang/String;)Ljava/nio/charset/Charset; 1
@betterclient
betterclient / Reflect.java
Created April 21, 2023 09:40
Reflection Utility (Uses ASM)
import org.objectweb.asm.ClassReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.Enumeration;