Taylor Hurt
Taylor Hurt
I enjoyed the length & pacing of ch 1-7. I felt like I could mostly complete them in one sitting. I am currently in ch 8 and I think it...
> you should know that applicatives are "closed under composition", meaning _ap will never change container types_ on us(yet another reason to favor over monads) ``` javascript Container.prototype.ap = function(other_container)...
Background: i'm not interested in documenting standard class methods of React components, such as the constructor and lifecycle methods. So i have not been commenting these in my source. The...
example invocation ``` devd -A0.0.0.0 ./ ``` example request from a different host ``` curl http://172.17.0.2:8000/index.html ``` this causes a 301 response. I expected it to return a 200 response...
Hi @raine -- I read through the readme. Really liked your examples. Some comments: 1. I think it is important to say that you have to use quotes `''` for...
https://gist.github.com/raine/d12d0ec3e72b2945510b Thanks for the tutorial! A few things: - After installing ramda-cli, I have command `ramda`, not `R`. I see that `alias R='ramda'` is in the readme but it could...
Hi, I have only tried setting this up on android for starters and I have hit a road block. The initial blurring works fine so I'm confident I have setup...
Consider providing more info on the error type and error messages that could occur. I just peeked in the source, it looks like all promise rejections are using the generic...
This will make it much easier for unit tests because then your users do not have to create and maintain their own mocks. Let me know if you would be...
when using`sqlparser.ParseStrictDDL` I receive an error ``` syntax error at position 290 near 'foreign' ``` when parsing valid mySQL: ```SQL CREATE TABLE `comments` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,...