peerreynders

Results 7 comments of peerreynders

Just for Reference: [February 2020](https://twitter.com/WebReflection/status/1230809189271908352) Andrea Giammarchi @WebReflection posted a [workaround](https://gist.github.com/WebReflection/35ca0e2ef2fb929143ea725f55bc0d63#user-content-handleevent--react) for using [EventListener.handleEvent](https://developer.mozilla.org/en-US/docs/Web/API/EventListener/handleEvent) in React.

Workaround for **Listing 5.4 & 5.5 The request quote stream** (p.142) ```JavaScript /** * RxJS in Action * Listing 5.4 * Note: make sure you have turned on CORS sharing...

One possible workaround: ```javascript // file: .eleventy.js // const eleventyNavigationPlugin = require('@11ty/eleventy-navigation'); const dir = { input: 'src', includes: '_includes', output: 'dist', }; module.exports = function(config) { // i.e. from...

In reference to the react exercise, I wonder whether the following tests would be taking too many liberties with the [canonical problem specification](https://github.com/exercism/problem-specifications/blob/master/exercises/react/canonical-data.json): react.test.ts ```typescript import { createInput, createComputed, createCallback...

I was giving it a go. I've got the tests and the example implementation and was in the process of double checking the tests against the [problem specification](https://github.com/exercism/problem-specifications/blob/master/exercises/react/canonical-data.json). That is...

Depending on the language being used establishing value equality in the presence of generics (parameterized types) can be tricky. It's not a problem with languages like Rust with [`std::cmp::PartialEq`](https://doc.rust-lang.org/std/cmp/trait.PartialEq.html) (or...

> I don't know if that's how it's supposed to be done Going by the node documentation I'd assume something like this: ```JS // file: index.mjs import { parse, posix,...