“Power Supply” is a poem written in the basic language of digital communication – a representation of the power supply for the reproduction of a version of the content that can be read and printed with a computer. This linguistic transformation is only one —ultimately very rudimentary—of many possibilities of reproduction.
How to read this picture? Well, it’s a process of three steps: Counting and separating, converting to decimal values, assigning the decimal values and reading the symbols/characters from an ASCII table.
Counting and separatings/span>
The text must be divided into groups of eight bits each, and each of these binary groups stands for a letter or a control character. However, only two characters are used to structure the form: the line feed and the carriage return (sounds like an antiquated typewriter).
The “calculation” is not complicated at all. The desired decimal number corresponds to the sum of the binary numbers times their power of 2. For the first group, this looks like this:
2^7 2^6 2^5 2^4 2^3 2^2 2^1 2^0
0 + 64 + 32 + 0 + 0 + 0 + 0 + 1 = 97