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? ;)
One can also convert them to hex for even more obfuscation:
''.join([hex(ord(c))[2:] for c in n]) '3231343936333538373736383531323334393533393834373136323332313637353839343439353
23831363733383736343339323531363832333934373135393537313238343336313433373536393
238'
Gpoing back to the original:
from textwrap import wrap; ''.join([chr(int(n, 16)) for n in wrap(''.join([hex(ord(c))[2:] for c in n]), 2)]) '214963587768512349539847162321675894495281673876439251682394715957128436143756928'
For a bit more clarity, I realized it became a little bit murky:
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'
Keeping a link to a game "someone" (ahem, fake address anyone?) in your
inbox wouldn't be too suspicious:
--------------------------------------------------------------------------------
Email received: 2024-06-20@16:23:18 GMT
From: Mr. Alan L. Terego <
[email protected]>
To: cri-cri <
[email protected]>
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
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)