Live data from Hacker News

Merry Christmas to HN

news.ycombinator.com

81–90 of 122 posts

Re: Merry Christmas to HN

#84
post #32

Earlier quoted context omitted.

Python equivalent for convenience: map(lambda x: chr (x + 32), [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]) Just paste it into a python terminal and run it :)

Python 2/3 compatiblity: "".join(map(lambda x: chr (x + 32), [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]))

Or as a list comprehension if that's your thing:

    "".join([chr(x + 32) for x in [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]])

Re: Merry Christmas to HN

#88
post #45
post #4

This seems as good a place as any to point this out: take a look at the numbers on the frontpage.

At the moment now it's default orange again. Xmas theme turned off?

That was me. I turned it on in the REPL last night, but did it wrong. Leapt out of bed this morning thinking "Doh! I bet it switched off." Which it had.
Post reply on HN