Viewing profile — simon_renoult
simon_renoult
HN member- Joined
- Fri, Oct 11, 2013, 3:22 PM UTC
- HN karma
- 6
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About simon_renoult
No profile information was provided.
Recent public activity
- story
-
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,…
-
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...
-
comment
Comment #7317683
I didn't know HN was about success.
-
comment
Comment #7051139
Why using : function doFoo(bar) { bar = (bar !== undefined) ? bar : "default_value"; } Over : function doFoo(bar) { bar = bar || "default_value"; } Coercion avoidance ?
- comment
-
comment
Comment #6782129
Plus - sadly - expensive.