Live data from Hacker News

Viewing profile — fryan

fryan

HN member
Joined
Mon, Oct 24, 2016, 3:58 PM UTC
HN karma
5
Public activity
6 items

About fryan

No profile information was provided.

Recent public activity

  1. comment
    Comment #12783233

    I had to debug code like that the other day. Before you debug it you have to mentally grok wtf is going on. What a mess.

  2. comment
    Comment #12781642

    const foo = {bar: 1} The only thing const about it is the reference `foo` cannot be reassigned: foo = something_else; // error Unlike `const` in C++, `const` in javascript in not v…

  3. comment
    Comment #12781297

    Is the denial of service attack on DNS servers still going on? Major sites are still much slower than last week.

  4. comment
    Comment #12781026

    const Header = ({ children, iconName, iconSize, title }) => { ... }; Once you get used to the destructuring parameter idiom, sure. It also conveys more information. But that statem…

  5. comment
    Comment #12780049

    I agree that object destructuring makes the code far less readable. Array destructuring however is easy for anyone to grok.

  6. comment
    Comment #12780009

    buble is a good alternative - small and fast. Doesn't support all of ES2015, but it does support the examples in the article. https://buble.surge.sh/guide/