Taylor Hurt
Taylor Hurt
regarding how to handle the error, is this error merely transient? ie. can we simply keep retrying to create UUID until we do not get an error?
I was initially confused by the wording in the README > **the required keyword is back for proto3**, under the guise of msg_exists It made me think that `msg_exists` works...
Hi @raine Regarding bullet point 3: I could not load `ramda-cli` or `ramda` with `require` so I already went out looking for the answer. The story goes: To use global...
yea how am i supposed to facebook stalk when there are no updates
After reading the summary/introduction, the full picture of where Sanctuary extends beyond Ramda is not entirely clear. Does it add new functions or just replace existing Ramda functions with type...
Here is a very simple comparison between Ramda/Sanctuary function names. It is at least helpful for me to visualize some of the differences b/w the two libraries, so thought I...
True--comparing just by function name is like comparing apples-to-oranges in some cases. It looks like the `either` function is one example. http://ramdajs.com/0.21.0/docs/#either https://github.com/sanctuary-js/sanctuary#either--a-c---b-c---eitherab---c
Or consider `liftA2`: ``` javascript var liftA2 = function(f, functor1, functor2) { return functor1.map(f).ap(functor2) } // -- the .ap in liftA2 changes the type from Container to Maybe liftA2(add, Container.of(2),...
Thanks @safareli -- this is what I suspected. I think there should be more explanation in the book on this topic of type checking. I would add something like this:...
I think I have encountered a similar problem with colon character `:` in password