Random walk: About

This is just the description bit. For reasons beyond comprehension, but something to do with child/parent HTML element sizes, the walk has to be viewed in a full browser window. So please visit and walk freely.
Just be aware that this is computationally intensive, and it may take a good few seconds to fully render. We generate a large object model within the graphing library we use. You may also be presented with a slow web page warning. Ignore it, or press âWaitâ. It probably wonât work though if youâre browsing on a retro Apollo flight computer rebuild.
Our walk consists of 333,335 individual steps, in one of eight compass directions over a 2D plane (drunks do not just wander in lines at right angles). And we use the following right shift (>>
) trick to reduce our byte wise entropy consumption by 50%:-
// More bandwidth efficient technique for entropy consumption.
for (int i = OFFSET;
i < (OFFSET + NO_VALUES);
i++) {
int compass;
JsonArray newPoint;
compass = Byte.toUnsignedInt(entropy[i]) & 0b111; // 3 lsbits.
newPoint = createRoutePoint(compass);
route.add(newPoint);
compass = Byte.toUnsignedInt(entropy[i]) >> 5; // Other 3 msbits.
newPoint = createRoutePoint(compass);
route.add(newPoint);
}
We use an eight point compass like:-
// Returns a JSON array consisting of a single point.
private JsonArray createRoutePoint(int compass) {
switch (compass) {
case 0 ->
x += 1;
case 1 ->
x -= 1;
case 2 ->
y += 1;
case 3 ->
y -= 1;
case 4 -> {
x += 1;
y += 1;
}
case 5 -> {
x += 1;
y -= 1;
}
case 6 -> {
x -= 1;
y += 1;
}
case 7 -> {
x -= 1;
y -= 1;
}
}
JsonArray pointCoords = new JsonArray();
pointCoords.add(x);
pointCoords.add(y);
return pointCoords;
}
Yes, diagonal steps are
And dwell on this: These walks are built from
Or

Notes:-
[1] It is mathematically impossible to accurately measure the Kolmogorov complexity of a set. So we hardly ever see what Kolmogorov complexity looks like. Until now. In the case of our walks, we do not need to measure their complexity a posteriori. We know their complexity because we construct them with a fixed amount of truly random (and hence very much incompressible) entropy. Therefore we know that approximately one million bits of entropy looks like this.