The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
Java
Anybody who's bored, try running this code and pasting the output here:
Code:
import java.net.NetworkInterface; import java.net.SocketException; import java.util.Enumeration; public class UniqueId { public static void main(String[] args) { try { Enumeration e = NetworkInterface.getNetworkInterfaces(); NetworkInterface n; while (e.hasMoreElements()) { n = (NetworkInterface)e.nextElement(); System.out.println(n.hashCode()); } System.out.println("Getting unique ID..."); } catch (SocketException e) { e.printStackTrace(); } } } The output should be like Code:
2130706433 -1062731612 Getting unique ID... |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|