Dmitri Zaitsev

Results 149 comments of Dmitri Zaitsev

Another more restrictive alternative would be the array of selected/unselected component pairs: ```js const arrayOfSelectableComponents: Array ``` That is more focused to the common use case, where each component's state...

@jayrbolton If I may try to respond to some objections... > I have some major hangups with Turbine, not with the concepts, but more around accessibility. For example, I would...

UPDATE. The RFP blog post above seems to have broken link, so I am posting it here: http://vindum.io/blog/lets-reinvent-frp/ @paldepind > I think that what I meant when I asked about...

> Aside: On Sunday, I worked through all the "professor frisby" videos that @dmitriz linked. I actually did an undergraduate program in computer science years ago that was almost 100%...

> BTW, Doesn't this modification to First make it promotable into a Monoid? No, [the "`First`" is a Semigroup that cannot be promoted to Monoid](https://github.com/dmitriz/functional-examples/blob/master/examples/monoid.js#L28), because you cannot define the...

Ported from discussion with @staltz on Gitter These are basic examples: - counter - hello-world - checkbox - bmi-naive - http-random-user And these are Intermediate: - hello-lastname - bmi-typescript -...

Not a readme (yet) but some of the most (over-)zealous comments I've ever written ;) https://github.com/cyclejs/cyclejs/pull/500

Passing objects is also easier from the Functional Programming perspective, if you want to compose `h` with some pure functions: ```js var link = {tag: 'a', href: 'http://check.it', text: 'Check...

Perhaps it would be good to have the opinions of @paldepind, creator of [Snabbdom](https://github.com/snabbdom/snabbdom) and @staltz, creator of [CycleJS](https://github.com/cyclejs/cyclejs) that uses Snabbdom, who is also a top contributor to Snabbdom?...

To make things tangible, I would like to propose to have (1) a standard "strict API" that libraries have to conform to, and (2) "lax APIs" that allows for more...