Live data from Hacker News

Viewing profile — billybolero

billybolero

HN member
Joined
Fri, Mar 27, 2015, 8:29 AM UTC
HN karma
19
Public activity
5 items

About billybolero

No profile information was provided.

Recent public activity

  1. comment
    Comment #9531067

    Progressive enhancement work well for simple stuff. Like progressively enhancing a form post, or a "like" button which just sends an Ajax request. But as the complexity grows, prog…

  2. comment
    Comment #9530909

    I read another blog about someone who tested that (don't have the url, but it was easy to find), and their conclusion was that the crawler won't wait for any Ajax request to finish…

  3. comment
    Comment #9530683

    I mostly agree, but at the same time, the rise of native apps has raised the bar of what people expect in terms of UX. Take Hacker News and Reddit, primarily content based sites an…

  4. comment
    Comment #9517482

    Because that singleton will serve multiple requests on the server, requests from different users. Singletons are more okay on the client because you know you'll only serve one user…

  5. comment
    Comment #9275205

    Yes, that's an ES2015 (formerly known as ES6) feature called destructuring. It's just one of the great features of ES2015. You can use ES6 today by transpiling to ES5 with https://…