Touch Typing
Can you see the answer?

Looking closely at the letters, some are found to be blurry on each line.

These blurred letters can be represented as a 1, with non blurred letters represented by a 0, giving an 8 bit string for each line that can be converted to ascii characters
asdfjkl;
01010001
Q
asdfjkl;
01010111
W
asdfjkl;
01011010
Z
asdfjkl;
01000101
E
asdfjkl;
01010100
T
asdfjkl;
01000010
B
asdfjkl;
01010101
U
asdfjkl;
01001011
K
asdfjkl;
01001111
O
asdfjkl;
01001100
L
asdfjkl;
00111011
;
asdfjkl;
00101110
.
Highlighting each of these letters on a keyboard and using the hint of "touch-typing" each of these letters can be identified as pips of a braille character when splitting the keyboard up into 2x3 pieces.


Decoding this final code as braille (https://www.dcode.fr/braille-alphabet) gives the answer MAKER.
Last updated