Tom Crockett

Results 56 comments of Tom Crockett

I'm using Yarn, and fixed this by [forcing resolution](https://yarnpkg.com/lang/en/docs/package-json/#toc-resolutions) in my `package.json`: ``` "resolutions": { "**/react": "16.7.0-alpha.2", "**/react-dom": "16.7.0-alpha.2" }, ```

Hi Lukiano, since monads require abstracting over type constructors I don't believe this library can be typed in a straightforward way until TypeScript gets support for higher-kinded types; see [this...

I'm not planning to as I don't personally use Scala any more, but I would certainly accept a PR with attendant testcases!

:+1: Great idea! It makes sense that monad syntax should basically boil down to a kind of idiom brackets when you're only using the power of Applicatives. And it's quite...

While we're at it, might as well also only require `Functor` when we only need to use `map`.

I saw that, very cool. On somewhat tangential note I'd love to see Haskell's `do`-notation enhanced with inline unwrapping of effects; it'd be awesome if within a `do` block you...

For users of CSS Modules it seems like ignoring the warnings (as described [here](https://github.com/webpack-contrib/mini-css-extract-plugin/issues/250#issuecomment-447346852)) is a safe workaround.

This appears to afflict Chrome worse than Firefox. Adding this code seems to fix it ```js componentDidMount() { document.getElementById('main').addEventListener('scroll', scrollSpy.update) } ``` I'm surprised this is necessary though since I'm...

An update: after some research, I found these links - https://bugs.chromium.org/p/chromium/issues/detail?id=570845 - https://stackoverflow.com/questions/47524205/random-high-content-download-time-in-chrome/47684257#47684257 - https://github.com/TryGhost/Ghost/issues/7934#issuecomment-349795002 from which I obtained a workaround by doing the following at the top level of...

There's no way to represent implement such a type AFAIK.