Archive for the ‘English’ Category

Schottencaches

Sunday, September 6th, 2009

Bei den Schotten zu Cachen ist schon was besonderes. Aber Geiz kann man Ihnen nicht vorwerfen, in einigen Gegenden (zum Beispiel nordöstlich von Edonburgh) liegt Dose an Dose. (Nur an der Grösse hat man hier gespart – es sind hier viele Nanos dabei.) In anderen Gegenden (z.B. Skye oder der äußerste Nordosten) ist allerdings weniger los.

Earthcache bei einer Hängebrücke (GC1WM3G)

Landestypisch sind hier die “Distillery Caches”, die bei vielen der äußerst zahlreich vertretenen Whiskey-Distillerien liegen.

Ebenfalls typisch und sehr empfehlenswert sind die “Monster Drive” Caches – eine Serie von Caches rund um das berühmte Loch Ness. Das Monster sieht man hier zwar auch nicht, bekommt aber eine tolle Route mit gut zu findenden Caches geboten.

Ans links fahren hat man sich dabei übrigens schnell gewöhnt, auch mit einem Schaltwagen. Nicht gewöhnen kann man sich aber an das britische Essen. Gerade wenn man gerne italienisch ißt, empfiehlt es sich (und das ist mein voller Ernst) ein Gläschen mit italienischer Kräutermischung dabei zu haben, denn nicht selten ist das Essen bar jeder Würzung…

Solving substitution ciphers [English]

Sunday, September 21st, 2008

Version 1.00 of my CodeBreaker software is out. With this software you can decode texts where the letters have been substituted with other letters. In the easiest case, it’s just ROT13, but this can go up to random assignments (A=R, B=X, C=A, etc), which is called “Substitution cipher”.

And that’s how it’s done:

Everything is based on the frequency of letters. If a (coded) letter occurs very often in the text, then it will probably represent a (not coded) letter that used very frequently in normal texts.

To us the program, simply enter the encrypted text into the upper edit box. The program will count which letter is used how often and show a “ranking”: In form of one word with 26 letters. The most frequent letter (usually E or R in not coded text) will be the first letter of the word, followed by the second most frequent, etc.

Analyze letter frequencies and substitute characters

Analyze letter frequencies and substitute characters

The line below contains a “reference word”. Here you can simply enter what you think might be the key or use one of the predefined rankings (for German and English texts and numbers written as text).

Both lines form the “translation table”. Any letter in the upper line is replace by the corresponding letter in the lower line. This way the encoded text will be translated into the (hopefully) not encrypted text. Smaller corrections for letters that are used less frequently are always necessary, however.

Tips:

  • Usually it makes sense to concentrate on the first words. Due to the coordinates you can often guess them.
  • Furthermore parts are interesting where the same letter occurs twice in a row or with little distance (Example: The word “seven” contains the letter “e” twice). The human eye is good at recognizing such things and it helps you make an educated guess.
  • If you have a suspicion or an unencrypted reference text, you can write that in the upper edit box, then copy the resulting ranking word from the upper into the lower line and finally enter the encrypted text in the upper edit box. If the encrypted and the reference text are similar, you should get a good result.

You can get the download here: CodeBreaker.exe