Viewing profile — nickfargo
nickfargo
HN member- Joined
- Tue, Mar 29, 2011, 1:52 PM UTC
- HN karma
- 26
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About nickfargo
Recent public activity
-
comment
Comment #15207706
The term is not merely a recent appropriation. Parametric polymorphism is a concept from functional programming and formal type theory, with application far beyond just JavaScript.…
-
comment
Comment #14414405
That's interesting, because I find #() rather less easy to parse compared to (comp) or (partial) for otherwise equivalent expressions. At a glance I know that (comp f g h) and its …
-
comment
Comment #13999164
This is a different notion of polymorphism, yes. Suggested reading: http://mrale.ph/blog/2015/01/11/whats-up-with-monomorphism.h...
-
comment
Comment #12126966
> just use a closure! Of course, but that means allocating a closure object per method per instance . When people say they want private variables, they mean they want them availabl…
-
comment
Comment #8884283
ls -l /usr/local/bin/node lrwxr-xr-x 1 502 staff 4 Jan 13 20:10 /usr/local/bin/node -> iojs Is this necessary?
-
comment
Comment #8816672
A generator is an iterator created and returned by a generator function .
-
comment
Comment #7870946
Faster read: http://en.wikipedia.org/wiki/Chimera_(genetics)#Humans
-
comment
Comment #7400531
People whose opinions of you really matter know that the green boxes don't.
-
comment
Comment #7399995
Referencing C10k implies yes . Threads cost.
-
comment
Comment #7322738
The "looks more pleasant?" test can be valid only between cljs/Om and the CoffeeScript from which the generated JS was compiled. By presenting Coffee's not-quite-idiomatic JS outpu…
-
comment
Comment #7145981
Pretty big rush to judgement. Slice off a copy of the arguments if you need them, but pall = -> console.log line for line in arguments; return would have done just fine there. One …
-
comment
Comment #7140827
And moreover, describe 'syntax after upgrading', -> it 'should be even meatier', -> expect parentheses.required .toBe false Very tidy.
-
comment
Comment #5741358
I have understood “performant” to suggest a soundness of design that causes something to be “fast”. In the context of algorithms, certainly the distinction is blurred, but in other…