Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 05:38, 23 November 2010โ€Ž Han84 (Talk | contribs)โ€Ž . . (232 bytes) (+232)โ€Ž . . (New page: <source lang="java"> public static String convertLongToIp(long num) { return ((num >> 24) & 0xFF) + "." + ((num >> 16) & 0xFF) + "." + ((num >> 8) & 0xFF) + "." + (num & 0xFF); }...)

Alumni Liaison

Basic linear algebra uncovers and clarifies very important geometry and algebra.

Dr. Paul Garrett