[deleted]
Merry Christmas to HN
21–30 of 122 posts
Re: Merry Christmas to HN
#22Merry Christmas all!
Re: Merry Christmas to HN
#23All I want for Christmas is the three lines of CSS it would take to make HN responsive. If that's not possible, I'll take world peace instead.
[deleted]
Re: Merry Christmas to HN
#24Merry Christmas, everyone!
Re: Merry Christmas to HN
#25Merry Christmas to you as well
Re: Merry Christmas to HN
#26 map (\x -> chr (x + 32)) [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]Re: Merry Christmas to HN
#27map (\x -> chr (x + 32)) [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]
explain :)
Re: Merry Christmas to HN
#28[deleted]
Re: Merry Christmas to HN
#29Re: Merry Christmas to HN
#30map (\x -> chr (x + 32)) [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]
explain :)
Copy-paste in your browser console -
// Merry Christmas
console.log(
[45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]
.map(function(i) { return i + 32; })
.map(function(i) { return String.fromCharCode(i); })
.join("")
);