Cri-Cri
2024-06-20 15:17:57 UTC
A new idea to solve the problem with a secret (well, now not so secret)
code scheme, one that you don't have to keep hiding. Here we can hide it
in plain sight. :)
Go here, It's a Sudoku game:
(bring out the link glue)
https://www.chiark.greenend.org.uk/~sgtatham/puzzles/js/
solo.html#3x3:2b9_6i2a4c9_8c6b2_1c8b4b2a1b3b6c2_5b8c4_7c5a1i5_6b8
You can get a link to the game and challenge your friends, or enemies, to
solve it. But that's not my point. Instead, look at the digits. Pick each
digit from top to bottom throughout the game plan, assemble them into a
long string:
29962846214621832585415678
You can even click on Solve to get even more digits, 81 in total:
214963587768512349539847162321675894495281673876439251682394715957128436143756928
Similar to what "Data" did on Star Trek TNG when he locked the main
computer, which brings up the fair question: was that string of numbers in
the script? ;)
23831363733383736343339323531363832333934373135393537313238343336313433373536393
238'
'214963587768512349539847162321675894495281673876439251682394715957128436143756928'
Keeping a link to a game "someone" (ahem, fake address anyone?) in your
inbox wouldn't be too suspicious:
--------------------------------------------------------------------------------
Email received: 2024-06-***@16:23:18 GMT
From: Mr. Alan L. Terego <al-***@ptro-mail.url>
To: cri-cri <c-r-***@ptro-mail.url>
Subject: Here's my challenge for you :)
Body:
Hi,
Just thought you might enjoy this little challenge Sudoku game. It's quite
easy to solve, actually. I solved it in a couple of minutes.
https://www.chiark.greenend.org.uk/~sgtatham/puzzles/js/
solo.html#3x3:2b9_6i2a4c9_8c6b2_1c8b4b2a1b3b6c2_5b8c4_7c5a1i5_6b8
How did you do? Let me know. :)
Regards,
Alan.
--------------------------------------------------------------------------------
Simon has several other games on that site as well. Maybe not all of them
lend themselves to picking a random-ish key, but well, anyway.
For the observant curious-minded:
"ptro" is the (written) sound you'd make to bring a Swedish horse to a
halt. The opposite (written) sound is "mpah-mpah." Now you know. ;)
code scheme, one that you don't have to keep hiding. Here we can hide it
in plain sight. :)
Go here, It's a Sudoku game:
(bring out the link glue)
https://www.chiark.greenend.org.uk/~sgtatham/puzzles/js/
solo.html#3x3:2b9_6i2a4c9_8c6b2_1c8b4b2a1b3b6c2_5b8c4_7c5a1i5_6b8
You can get a link to the game and challenge your friends, or enemies, to
solve it. But that's not my point. Instead, look at the digits. Pick each
digit from top to bottom throughout the game plan, assemble them into a
long string:
29962846214621832585415678
You can even click on Solve to get even more digits, 81 in total:
214963587768512349539847162321675894495281673876439251682394715957128436143756928
Similar to what "Data" did on Star Trek TNG when he locked the main
computer, which brings up the fair question: was that string of numbers in
the script? ;)
''.join([hex(ord(c))[2:] for c in n])
'323134393633353837373638353132333439353339383437313632333231363735383934343935323831363733383736343339323531363832333934373135393537313238343336313433373536393
238'
from textwrap import wrap; ''.join([chr(int(n, 16)) for n in
wrap(''.join([hex(ord(c))[2:] for c in n]), 2)])'214963587768512349539847162321675894495281673876439251682394715957128436143756928'
h = ''.join([hex(ord(c))[2:] for c in n])
from textwrap import wrap
''.join([chr(int(n, 16)) for n in wrap(h, 2)])
'214963587768512349539847162321675894495281673876439251682394715957128436143756928'from textwrap import wrap
''.join([chr(int(n, 16)) for n in wrap(h, 2)])
Keeping a link to a game "someone" (ahem, fake address anyone?) in your
inbox wouldn't be too suspicious:
--------------------------------------------------------------------------------
Email received: 2024-06-***@16:23:18 GMT
From: Mr. Alan L. Terego <al-***@ptro-mail.url>
To: cri-cri <c-r-***@ptro-mail.url>
Subject: Here's my challenge for you :)
Body:
Hi,
Just thought you might enjoy this little challenge Sudoku game. It's quite
easy to solve, actually. I solved it in a couple of minutes.
https://www.chiark.greenend.org.uk/~sgtatham/puzzles/js/
solo.html#3x3:2b9_6i2a4c9_8c6b2_1c8b4b2a1b3b6c2_5b8c4_7c5a1i5_6b8
How did you do? Let me know. :)
Regards,
Alan.
--------------------------------------------------------------------------------
Simon has several other games on that site as well. Maybe not all of them
lend themselves to picking a random-ish key, but well, anyway.
For the observant curious-minded:
"ptro" is the (written) sound you'd make to bring a Swedish horse to a
halt. The opposite (written) sound is "mpah-mpah." Now you know. ;)
--
Cri-Cri
Cri-Cri