Skip to content

Instantly share code, notes, and snippets.

@hfoxy
Last active August 29, 2015 14:04
Show Gist options
  • Save hfoxy/ebb54fae09caae4e92fb to your computer and use it in GitHub Desktop.
Save hfoxy/ebb54fae09caae4e92fb to your computer and use it in GitHub Desktop.
import java.util.Random;
public class Juuuulion {
public static void main(String ... args) {
System.out.println(mT(-229985457)+' '+ mT(-1479096120));
}
public static String mT(int t) {
Random r = new Random(t);
StringBuilder sb = new StringBuilder();
for(int i=0;;i++) {
int n = r.nextInt(27);
if (n == 0) break;
sb.append((char) ('`' + n));
}
return sb.toString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment