Viewing profile — fryan
fryan
HN member- Joined
- Mon, Oct 24, 2016, 3:58 PM UTC
- HN karma
- 5
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About fryan
No profile information was provided.
Recent public activity
-
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.
-
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…
-
comment
Comment #12781297
Is the denial of service attack on DNS servers still going on? Major sites are still much slower than last week.
-
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…
-
comment
Comment #12780049
I agree that object destructuring makes the code far less readable. Array destructuring however is easy for anyone to grok.
-
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/