Last active
September 18, 2016 12:33
-
-
Save Coding-Enthusiast/feeb2200b6201c94fec1bd5b704a2b67 to your computer and use it in GitHub Desktop.
Guess My Bitcoin, creating the keyArray using C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theKey[0] = new PKeyChar('5');//5 | |
theKey[1] = new PKeyChar('J');//Steve Jobs | |
theKey[2] = new PKeyChar('k');//kevlar | |
theKey[3] = new PKeyChar(new char[] { 'P', '3' });//Pi, 3.14 | |
theKey[4] = new PKeyChar('A');//Atari | |
theKey[5] = new PKeyChar('p');//parachute | |
theKey[6] = new PKeyChar('j');//Jet, F16, Mig | |
theKey[7] = new PKeyChar('w');//wing from the previous pic | |
theKey[8] = new PKeyChar('G');//Gutenberg | |
theKey[9] = new PKeyChar('Y');//Yo-Yo | |
theKey[10] = new PKeyChar('e');//mc2=e | |
theKey[11] = new PKeyChar('i');//iron | |
theKey[12] = new PKeyChar('p');//puzzle piece | |
theKey[13] = new PKeyChar('3');//1836 | |
theKey[14] = new PKeyChar('s');//scissors | |
theKey[15] = new PKeyChar(new char[] { 'X', 'R' });//X-ray, radiography | |
theKey[16] = new PKeyChar('Y');//Yale Jr. | |
theKey[17] = new PKeyChar(new char[] { 'r', 's' });//radar, sonar | |
theKey[18] = new PKeyChar(new char[] { 'A', 'S' });//Aspirin, Salicin, Henri Leroux | |
theKey[19] = new PKeyChar(new char[] { 'E', 'P' });//Eiffle tower, Paris | |
theKey[20] = new PKeyChar('N');//Alfred Nobel | |
theKey[21] = new PKeyChar(new char[] { 'i', 's', 'h' });//ice skating, hockey | |
theKey[22] = new PKeyChar('X');//XX | |
theKey[23] = new PKeyChar('Y');//XY | |
theKey[24] = new PKeyChar('i');//igloo | |
theKey[25] = new PKeyChar(new char[] { 'f', 'm' });//film, movie | |
theKey[26] = new PKeyChar('G');//Galilei | |
theKey[27] = new PKeyChar('X');//Xerox logo | |
theKey[28] = new PKeyChar('Q');//Question mark or U+003F or 0x3F hexadecimal or 63 ASCII, can be Wildcard | |
theKey[29] = new PKeyChar('K');//naKamoto | |
theKey[30] = new PKeyChar(new char[] { 'E', 'V', 'C', 'W' });//e-cigarrete, vaporizer, whistle | |
theKey[31] = new PKeyChar('H');//satosHi | |
theKey[32] = new PKeyChar(new char[] { 'g', 'p' });//gramaphone, phonograph | |
theKey[33] = new PKeyChar('z');//zip | |
theKey[34] = new PKeyChar('X');//X(alphabet) | |
theKey[35] = new PKeyChar(The58Char.ToCharArray());//new char[] { 'P', 'V', 'f' }, Pfizer, Viagra | |
theKey[36] = new PKeyChar('9');//1996 | |
theKey[37] = new PKeyChar('b');//b in braille | |
theKey[38] = new PKeyChar('W');//Wi-Fi | |
theKey[39] = new PKeyChar('W');//Windows 8, 2012 | |
theKey[40] = new PKeyChar(new char[] { '2', 'K', The58Char[35] });//36=24(hex),Kr(Element),36th in base58CharArray | |
theKey[41] = new PKeyChar('N');//DNA | |
theKey[42] = new PKeyChar('B');//miniclip game called Bubble Trouble | |
theKey[43] = new PKeyChar('E');//Einstein | |
theKey[44] = new PKeyChar('X');//MMIX=roman number 2009 | |
theKey[45] = new PKeyChar('E');//Etch-a-Sketch | |
theKey[46] = new PKeyChar('G');//Gameboy | |
theKey[47] = new PKeyChar(new char[] { '3', 'X', The58Char[53] });//54=36(hex),Xe(Element),54th in base58CharArray | |
theKey[48] = new PKeyChar(new char[] { 'm', '6' });//LED,lamp,1960s | |
theKey[49] = new PKeyChar('T');//Tesla Motors | |
theKey[50] = new PKeyChar('M');//mouse |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment