Dmitri Zaitsev

Results 59 issues of Dmitri Zaitsev

I find this example from https://github.com/MostlyAdequate/mostly-adequate-guide/blob/master/ch09.md confusingly indented: ```js // querySelector :: Selector -> IO DOM querySelector('input.username') .chain(({ value: uname }) => querySelector('input.email') .chain(({ value: email }) => IO.of(`Welcome ${uname}...

I am referring to the README section https://github.com/googleapis/google-api-nodejs-client#api-reference > This library has a full set of [API Reference Documentation](https://googleapis.dev/nodejs/googleapis/latest/index.html). This documentation is auto-generated, and the location may change. Following that...

type: question

The tests seem to throw many errors: ```sh > [email protected] test /Users/dmitrizaitsev/Repos/hyperscript > set -e; for t in test/*.js; do node $t; done TAP version 13 # simple ok 1...

I've got this error when writing [this answer](https://stackoverflow.com/questions/45786580/ramda-chain-usage/50345438#50345438): ```js // Define our own uncurried append const appendCustom = (a, b) => R.append(a, b) R.chain(appendCustom, R.head)([1, 2]); ``` It is almost...

proposal
1.0 discussion

Is this intentional? ```js all(x=>xx

1.0 discussion

The [doc states](http://ramdajs.com/docs/#map): > Dispatches to the map method of the second argument, if present. However, if the property `'fantasy-land/map'` is also present, it seems to "highjack" the `map`: ```js...

The [FL Applicative spec](https://github.com/fantasyland/fantasy-land#applicative) includes [the `of` method](https://github.com/fantasyland/fantasy-land#of-method) but it does not seem to be available on `creed`: ```sh > creed.of(1) TypeError: creed.of is not a function ``` Any reason...

The following solves the exercise 3: ```js var t = require('tap') var fancify = require(process.argv[2]) t.is(fancify('Hello'), `~*~Hello~*~`) t.is(fancify('Hello', true), `~*~HELLO~*~`) t.is(fancify('Hello', false, '!'), `~!~Hello~!~`) ``` That feels simpler (e.g. no...

There is an unexpected bug in how the option `{start: true}` is working. I am using this file: ``` js https://github.com/dmitriz/gulp-automation/blob/gulp-lr-start/Gulpfile.js ``` When I first run `gulp`, I get this...

Here are examples of my name appearing twice: https://dissem.in/search/?authors=zaitsev%2C+dmitri https://dissem.in/p/6547794/lie-group-structures-on-automorphism-groups-of-real-analytic-cr-manifolds

bug