30-03-2022, 11:10 PM
Voynich text as Base20
EMS suggested to report failed experiments.
After 5 days of work, this fell on its face, so here it is.
Decoding vms text as Base20 ran into a leading zeroes problem.
Idea as follows:
:: Decode text as Base20
-eva has 26 chars (TT only uses 22-Fail 1)
-assume 6 lowest frequency eva chars represent something else, like planets, constellations, stars, whatever
-leaves 20 letters, map those letters onto the 'symbols' for a Base20 number system (vigesimal)
-convert newly created Base20 num into a decimal number
Now you have a nice set of decimal numbers that you can do what you want with ( indices in a look-up table == unnecessary-Fail 2).
:: Encode text as Base20
-take some normal text, strip puntuation etc
-allocate each unique word a random number in decimal ( this step is for easy computation (and i had an indexing idea but...)
-convert that number to base20
-convert the base20 number into eva
ie map Base20 symbols onto the commonest 20 eva symbols
:: Result
Courtesy of project gutenberg : A Scandal in Bohemia by A.conan-doyle
plaintext:
to sherlock holmes she is always the woman i have
seldom heard him mention her under any other name in
his eyes she eclipses and predominates the whole of her
sex it was not that he felt any emotion akin
to love for irene adler all emotions and that one
particularly were abhorrent to his cold precise but admirably balanced
mind he was i take it the most perfect reasoning
and observing machine that the world has seen but as
encoded:
ap oqsgcki oinflyx oie ook frn aled aktkcr esk hhy
adq as rypp tdkg triqya oe hod i omm hy
ha iednsk oie yc olxc odt aled dshg oq triqya
e yets yoci ar ce fm qm hod ydglhy parfgm
ap dhtn ony aye ocr ykl ond olxc ce nkaspk
oysf osc tok ap ha hfcn ya oqc hr gnl
hm fm yoci esk yf yets aled hr eoyh n
olxc rmi hkii ce aled he ohtpxhe hg oqc ae
Conclusion::
idk.
EMS suggested to report failed experiments.
After 5 days of work, this fell on its face, so here it is.
Decoding vms text as Base20 ran into a leading zeroes problem.
Idea as follows:
:: Decode text as Base20
-eva has 26 chars (TT only uses 22-Fail 1)
-assume 6 lowest frequency eva chars represent something else, like planets, constellations, stars, whatever
-leaves 20 letters, map those letters onto the 'symbols' for a Base20 number system (vigesimal)
-convert newly created Base20 num into a decimal number
Now you have a nice set of decimal numbers that you can do what you want with ( indices in a look-up table == unnecessary-Fail 2).
Code:
Vord Base20 Decimal
dain 647d 49753
qokeedy e081163 897288523
okey 0813 3223
:: Encode text as Base20
-take some normal text, strip puntuation etc
-allocate each unique word a random number in decimal ( this step is for easy computation (and i had an indexing idea but...)
-convert that number to base20
-convert the base20 number into eva
ie map Base20 symbols onto the commonest 20 eva symbols
:: Result
Courtesy of project gutenberg : A Scandal in Bohemia by A.conan-doyle
plaintext:
to sherlock holmes she is always the woman i have
seldom heard him mention her under any other name in
his eyes she eclipses and predominates the whole of her
sex it was not that he felt any emotion akin
to love for irene adler all emotions and that one
particularly were abhorrent to his cold precise but admirably balanced
mind he was i take it the most perfect reasoning
and observing machine that the world has seen but as
encoded:
ap oqsgcki oinflyx oie ook frn aled aktkcr esk hhy
adq as rypp tdkg triqya oe hod i omm hy
ha iednsk oie yc olxc odt aled dshg oq triqya
e yets yoci ar ce fm qm hod ydglhy parfgm
ap dhtn ony aye ocr ykl ond olxc ce nkaspk
oysf osc tok ap ha hfcn ya oqc hr gnl
hm fm yoci esk yf yets aled hr eoyh n
olxc rmi hkii ce aled he ohtpxhe hg oqc ae
Conclusion::
idk.
