This is an open source project, so everyone commenting with suggestions can just open up a PR: https://github.com/javierbyte/emoji-to-scale
Show HN: Emoji to Scale
31–40 of 130 posts
Re: Show HN: Emoji to Scale
#32Re: Show HN: Emoji to Scale
#33/s
Re: Show HN: Emoji to Scale
#34Goat: 45cm Duck: 50cm Might as well say “shuffled emojis with random data attached”
Re: Show HN: Emoji to Scale
#35Re: Show HN: Emoji to Scale
#36Re: Show HN: Emoji to Scale
#37Re: Show HN: Emoji to Scale
#38Re: Show HN: Emoji to Scale
#39Neat concept. As someone not very up-to-date in Web UI techniques, I was curious as to how the array was being advanced on scroll. Unfortunately, it looks like the answer is basically polling. The code constantly calls window.requestAnimationFrame(), checking window.pageYOffset. This means that the page is constantly doing work, even at idle. Surely the more correct way is to install an onscroll handler or something,…
The correct way would be a mix of those two strategies: an onscroll handler that schedules an update through requestAnimationFrame (ensuring that it only gets scheduled once until the next frame update actually executes).
Re: Show HN: Emoji to Scale
#40It's really laggy by the time you get to Tokyo Tower. My computer is hot.