hagbard celine wrote:0/0 = 0
0/1 = 1
0/2 = 2
0/5 = 5
0/6 = 6
1/4 = 5
1/5 = 6
1/6 = 7
2/4 = 6
2/5 = 7
3/3 = 6
3/4 = 7
3/6 = 9
which if we were to turn this into hex...
we would have to use 5 6 or 7 to get a valid letter...
so we have 55 6666 777
for the second number we can use 0129 and i suppse we could use up a 5 6 7 also...
so we have
50 P
51 Q
52 R
55 U
56 V
57 W
59 Y
60 `
61 a
62 b
65 e
66 f
67 g
69 i
70 p
71 q
72 r
75 u
76 v
77 w
79 y
plus using ccf from the drop:
5C \
5F _
6C l
6F o
7C |
7F DEL
Others:
20 = space
21 = !
25 = %
26 = &
27 = '
29 = )
2C = ,
2F = /
8 letters. two 5's four 6's three 7's two C's one F one 0 one 1 one 2 one 9
I'm not sure if I think the strategy of adding up the digits on the dice and forming 8 character ascii out of that (plus the ccf) is right. However, here are my thoughts on it just in case.
Let's assume that letters are really all we are going to use. The C's and F can only go after a 6, which gives us l, l, o. and 556777 left for first digits. the 5's and 7's are the same letters but just lowercase or uppercase. the 0 must go with one of them giving us a P/p. The 1 probably goes with the 6 because 'a' is a lot better to have than Q/q. The 2 becomes an R/r, the 9 becomes a Y/y, and the last letter is either a W/w or U/u. We can figure out capitalization later, but we can anagram lloparyw or lloparyu.
In case I'm wrong and the 1 is a Q/q. Well then we probably want a u (75). so now we have a 6 and a 5/7 (depending on the case of the Q/q and P/p) left for the leftmost digit and 2 and 9 for the right. which is either b and Y/y or i and R/r. So in this case we can anagram llopquby or llopquir.
If I'm wrong about the u going wit the Q/q, then we could have W/w instead. So we can anagram llopqbyw or llopqirw. And also instead of a 5 or 7 going on the right of another 5 or 7, they could go on the right of the 6 so we can anagram llopqyre or llopqyrg. Finally the 6 could go on the right so we can anagram llopqyrv.
The final case I will consider is that 20, a space, is a useful character (although rare in passwords). so after llo and space, we have 556777 for first digits and just 19 for sure on the right. if the 1 goes with the 6 we've got 'a' and Y/y and either 2 W/w's, 2 U/u's, or 1 of each. (there are some restrictions on case but that isn't important yet. So we can anagram lloayww, lloayuu, or lloaywu knowing we need to find at least 2 words. If the 9 goes with the 6 we've got 'i' and Q/q and again the same combinations of W/w's and U/u's (although now u's are more likely), so we can anagram lloiquw, lloiquu, or lloiqww. If 5 goes with the 6 we get Q/q, Y/y, e, and either W, w, or u. so we can anagram lloqyeu or lloqyew. If 7 goes with 6 we get Q/q, Y/y, g, and either W/w or U/u. So we can anagram lloqygu and lloqygw. Finally if the 6 is on the right we have Q/q, Y/y, V/v, and W/w or U/u. So we can anagram lloqyvu or lloqyvw.
Summary of possible letter combination (required caps in parens):
lloparyw (2 of PRYW)
lloparyu (1 of PRYU)
llopquby (1 of PQY)
llopquir (1 of PQR)
llopqbyw (2 of PQYW)
llopqirw (2 of PQRW)
llopqyre (1 of QYR)
llopqyrg (2 of QYR)
llopqyrv (2 of QYRV)
with a space:
lloayww (2 of YWW)
lloayuu (none)
lloaywu (1 of YW)
lloiquw (1 of QW)
lloiquu (none)
lloiqww (2 of QWW)
lloqyeu (none)
lloqyew (1 of YW)
lloqygu (1 of QY)
lloqygw (2 of QYW)
lloqyvu (1 of QY)
lloqyvw (2 of YQW)
I did the math and there are 1,229,760 total possible combinations based on this (ignoring the fact that a capital is likely to be the first letter and other things that would cause a human to regect certain combinations). Obviously if you felt like just plugging these 21 lines into an anagram solver it might make things much easier. A lot of them probably have no anagrams. I tried a few but lost patience so if someone else wants to give it a try, go ahead. Just for the hell of it I wrote a brute force checker that will check all 1.2 million in about 16 hours.