-
Quick Tip: WLAN-SMU for iDevices
The University has recently updated the school network and thus has made WLAN-Student redundant. In this update, the joining to the school network for iDevice is rather painless, unlike the old settings. Anyway, here are the steps. 1. Opening your Wi-Fi Networks setting page and select WLAN-SMU. (I am connected to robertsky at the…
-
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…