In a stroke of genius, the guy(s) over at http://linuxnotes.blogspot.com/ posted the key on a webpage with (almost all of) the key in its web address. Why didn't they include the 56-88-c0 on the end? I don't know. But what this means is that the takedown notice sent to Google, a matter of public record and posted on chillingeffects.org, itself contains almost all of the key by referring to this page.
Related Posts
Livejournal makes me sad…
LJ, please drop the ActiveX controls and support a decent browser like FireFox! I try to avoid Internet Exploder… In other news, Karaoke Revolution 2! Yes, I'm not afraid to admit I am a sometime fan of Britney Spears. Well, what's not to like? Current Music: MMORadio (a bit), my…
Do-notation can be misleading
Consider the following function: oddness :: Maybe Int oddness = do let a = Just 1 :: Maybe Int b >= \b -> return b And recall the definition of (>>=) for Maybe: instance Monad Maybe where (Just x) >>= k = k x Nothing >>= _ = Nothing So…