-
Switch Java versions on Mac OS X
Note: At the time of writing, the OS in question is Mac OS X High Sierra 10.13.6. Mac OS X contains a rudimentary amount of developer tools underneath the shiny user interface. These packaged tools get outdated very fast, and developers are left scrambling to get the updated tools installed. Java, as a matter of…
-
PADate.class
I am close to my wits’ end (for now), so I decided to run PADate.class for fun through a Java decompiler: import java.util.GregorianCalendar; public class PADate { private GregorianCalendar gc; public PADate() { this.gc = new GregorianCalendar(); this.gc.set(11, 0); this.gc.set(13, 0); this.gc.set(14, 0); } public PADate(int paramInt1, int paramInt2, int paramInt3) { this.gc = new…