Paolo Moretti

Results 10 comments of Paolo Moretti

Dive Into JavaScript is now redirecting the broken link to the new page, so it's not completely necessary (there was a server error when I submitted the pull request).

I'm also interested on this. My current workaround is the following, because I can't even import those types from `remark-slate`: ```.ts import { serialize } from "remark-slate"; import type {...

@hwillson thank you for your feedback. --- I switched from `lodash.isequal` to `lodash` because single utility functions can be imported with `lodash/func`: ```.js // the following imports *should* be equivalent,...

I think that the bundle size was never a problem, even in v2 `MockedProvider` and `MockLink` lived in a separate entry point: ```.js import { MockedProvider, MockLink } from 'react-apollo/test-utils';...

Hey Gabriel, thank you for this! There's another PR that it's adding a cookie storage for browsers that do not support `window.localstorage`: https://github.com/marvelapp/react-ab-test/pull/28 Just thinking about what could be the...

I have some experience with Flow, but haven't used TypeScript. I think it would be a great addition, typings can be helpful even when not writing in TypeScript for the...

This is already supported, but not well documented. The third argument of `useExperiment` is `defaultVariantName`: https://github.com/marvelapp/react-ab-test/blob/73fa6b1b40d19431db76a91dfa7d9e90ad1fc14b/src/hook.jsx#L11 Here's an example: https://codesandbox.io/s/react-ab-test-use-experiment-default-variant-g7iip

I created an example here: https://github.com/marvelapp/react-ab-test/tree/master/examples/next with server side rendering in NextJS. The user identifier is just a UUID stored in the current session: https://github.com/marvelapp/react-ab-test/blob/f48b4a50daf32e9facb5ae6d2588a8288d384eea/examples/next/src/pages/index.js#L31-L43 Let me know if that...

This is more advanced, for example, is this case: ![screen shot 2016-07-26 at 2 51 24 pm](https://cloud.githubusercontent.com/assets/1186409/17140460/7925d7c2-5340-11e6-8684-0c5e618db287.png) Cmd + Click on "foo" opens the folder in Finder, and Cmd +...

Here's a temporary solution that I'm using on v.0.6 until it's fixed upstream: https://gist.github.com/moretti/009459d103102b8d7f5535efc5fcd53d In the application, the relevant part using Vidstack is wrapped by the ``. Additionally, each ``...