Skip to content

Instantly share code, notes, and snippets.

@mooman219
Created May 16, 2013 02:56
Show Gist options
  • Save mooman219/5589071 to your computer and use it in GitHub Desktop.
Save mooman219/5589071 to your computer and use it in GitHub Desktop.
/** 160 Length **/public final static String[] bigList = {"§ΰ","§α","§β","§γ","§δ","§ε","§ζ","§η","§θ","§ι","§κ","§λ","§μ","§ν","§ξ","§ο","§π","§ρ","§ς","§σ","§τ","§υ","§φ","§χ","§ψ","§ω","§ϊ","§ϋ","§ό","§ύ","§ώ","§Ϗ","§ϐ","§ϑ","§ϒ","§ϓ","§ϔ","§ϕ","§ϖ","§ϗ","§Ϙ","§ϙ","§Ϛ","§ϛ","§Ϝ","§ϝ","§Ϟ","§ϟ","§Ϡ","§ϡ","§Ϣ","§ϣ","§Ϥ","§ϥ","§Ϧ","§ϧ","§Ϩ","§ϩ","§Ϫ","§ϫ","§Ϭ","§ϭ","§Ϯ","§ϯ","§ϰ","§ϱ","§ϲ","§ϳ","§ϴ","§ϵ","§϶","§Ϸ","§ϸ","§Ϲ","§Ϻ","§ϻ","§ϼ","§Ͻ","§Ͼ","§Ͽ","§Ѐ","§Ё","§Ђ","§Ѓ","§Є","§Ѕ","§І","§Ї","§Ј","§Љ","§Њ","§Ћ","§Ќ","§Ѝ","§Ў","§Џ","§А","§Б","§В","§Г","§Д","§Е","§Ж","§З","§И","§Й","§К","§Л","§М","§Н","§О","§П","§Р","§С","§Т","§У","§Ф","§Х","§Ц","§Ч","§Ш","§Щ","§Ъ","§Ы","§Ь","§Э","§Ю","§Я","§а","§б","§в","§г","§д","§е","§ж","§з","§и","§й","§к","§л","§м","§н","§о","§п","§р","§с","§т","§у","§ф","§х","§ц","§ч","§ш","§щ","§ъ","§ы","§ь","§э","§ю","§я"};
private int index = 0;
public String nextUnique() {
index = index > 25600 ? 0 : index + 1;
return bigList[MathHelper.floor((index / 160D) % bigList.length)] + bigList[index % bigList.length];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment