BSoD to Watson: The Reliability Journeyhardcoresoftware.learningbyshipping.com 3 pointsjeffmh4 years ago1 commentSaveHideCopy link On HNComments−cokernel_hacker4yI particularly liked the "Windows" vs "Sindogs" issue. My immediate hunch was that the characters differed by a single bit so I ran a bit of python: >>> [ord(x) ^ ord(y) for (x, y) in zip("windows", "sindogs")] [4, 0, 0, 0, 0, 16, 0] Sure enough...
Comments
I particularly liked the "Windows" vs "Sindogs" issue. My immediate hunch was that the characters differed by a single bit so I ran a bit of python:
Sure enough...