Babak B.

Results 54 comments of Babak B.

@clemmy Interesting, I noticed that while ```javascript (function(){}) ``` is valid javascript ```javascript (do{ function(){} }) ``` is not, but using a named function ```javascript (do{ function foo (){} })...

Solution is to use your project Id directly. Click settings -> general -> expand general settings. The project ID is the second field on top part of this section (at...

@KtorZ Thanks for the description of `Left` and `Right` In the current implementation of `Left`, `chain` doesn't remove the item from the outermost layer. I'll try distill my cloud of...

@KtorZ Thanks for the feedback, I think I understand a little bit more... the type signature was helpful. So let me see if I have it right: ```javascript chain ::...

For reference my current workaround is to connect explicitly using `const boundActions = bindActions(actions,store)` then to do something like the following ```javascript ``` Along with `store.subscribe( () => this.forceUpdate() )`

@Rich-Harris Cool! I think I understand what you're saying. ``` css transform: rotate(45deg); transform: rotate(720deg); transform: matrix(0.707106781186549, 0.707106781186547, -0.707106781186547, 0.707106781186549, 0, 0); ``` are all the same. I was thinking...

Looked into it. The right files are being built but looks like not being uploaded to npm. Using a locally link version for now to get types. For someone who...

Oh, so Script doesn't have "async" as prop (shown in docs with `async` flag)

![image](https://user-images.githubusercontent.com/2024235/49137264-baf35b00-f2a0-11e8-8ea5-c5cb2e361e36.png)

My recent PR enables it to work directly in React Native. https://github.com/mikemintz/rethinkdb-websocket-client/pull/15 To me, this is superior to Meteor's minimongo "database everywhere"--which doesn't work React Native. This works in RN,...