Live data from Hacker News

Viewing profile — simon_renoult

simon_renoult

HN member
Joined
Fri, Oct 11, 2013, 3:22 PM UTC
HN karma
6
Public activity
7 items

About simon_renoult

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #11673835

    I'm a nodejs developer. I use its package manager `npm` on a daily basis. `nodejs` packaging philosophy enforces you to break every lib into smaller modules in order to have small,…

  3. comment
    Comment #7931769

    "require('./user/auth')(User);" is a simple call to the "./user/auth" module with User as a parameter. Check https://github.com/NodeBB/NodeBB/blob/master/src/user/auth.j...

  4. comment
    Comment #7317683

    I didn't know HN was about success.

  5. comment
    Comment #7051139

    Why using : function doFoo(bar) { bar = (bar !== undefined) ? bar : "default_value"; } Over : function doFoo(bar) { bar = bar || "default_value"; } Coercion avoidance ?

  6. comment
  7. comment
    Comment #6782129

    Plus - sadly - expensive.