Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
Link [gist.github.com]
The script is triggerd by Shift+A. Be sure to close the script when you done otherwise writing capital "A" is going to be annoying.
"6121 3121 412" completes the sequence.
Had it opened on the phone while I hammered it in via numpad.
Really not a fan of having cheated for this achievement, but I want that 100%, and call me a brainlet, but this achievement standing in the way of that is like signing up for a job as a plumber, but being asked to get quick at sudoku before receiving pay.
Also written as ((number 'right shift by 1') 'exclusive or with' number)
Example: 9 in binary is 1001. 9 >> 1 = 0100, with the remaining 1 dropped.
0100 Xor 1001 = 1101. 1101 is the Grey Code form of 9.
Here's the pattern. In grey code, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, is represented in binary as
0000, 0001, 0011, 0010, 0110, 0111, 0101, 0100, 1100, 1101, 1111.
The pattern is the bit that needs to be flipped to reach the next number.
At 0->1, flip 1 = 0001
At 1->2, flip 2 = 0011
At 2->3, flip 1 = 0010
At 3->4, flip 3 = 0110
At 4->5, flip 1 = 0111
...
Continue for the rest of the pattern until you've counted to 170, and you flip the last 1 bit to result in the Grey Code number 11111111 binary = 256 in base 10.
Thank you very much Apocalipsus, with the macro I made it