RSS Amplifier

Mountain Of Code · Dec 19, 2025

Wanderer: A Visual Hash Generator

0
Sign in to vote or save

This page cannot be shown here. You can still read it on the original site — the toolbar below keeps your place in the directory.

Have you ever wondered how the 'randomart' you see when creating an SSH key is generated? Turns out it uses the brilliantly named drunken bishop algorithm . Seeing this inspired me to create my own version: "Wanderer". Wanderer works by converting each character of the given string into octal (0-7), then mapping each octal character into a step in a direction. Each of these steps is then followed…

Have you ever wondered how the 'randomart' you see when creating an SSH key is generated? Turns out it uses the brilliantly named drunken bishop algorithm. Seeing this inspired me to create my own version: "Wanderer".

Wanderer works by converting each character of the given string into octal (0-7), then mapping each octal character into a step in a direction. Each of these steps is then followed in order, leaving behind a coloured trail/heatmap of visited cells.

Enter some text, update the direction-map (hint: you can leave blanks) and click Generate:

If you're curious about how exactly the image is generated and streamed to the browser, you can take a peek at the source code and have a read of this post.

Read on /wanderer

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.

    Reading · Mountain Of Code · RSS Amplifier