HN user

squiffy

15 karma
Posts2
Comments7
View on HN

I still think about some scenes in Naked having only seen it once. It's brutal and uncomfortable at many points, and a brilliant film.

I was visiting Dalston, London and thought I recognised a certain house and sure enough it was the (at least exterior) filming location for "the" house in the film. It was characteristic enough to recognise even after one viewing.

This is great, thanks. A small fix I made to stop console warnings was to change:

  x.fillStyle = '#' + ((r >> 8) & 0xffffff).toString(16).padStart(0, 6);
to:
  x.fillStyle = '#' + ((r >> 8) & 0xffffff).toString(16).padStart(6, '0');
as the pad target length is the first parameter of padStart.