Dmitry Iv.
Dmitry Iv.
React hooks are enclosed - only component itself can trigger own update. Hooks don't subscribe component to external events. The only subscription, triggering component rerendering is `props`. _unihooks_ (as well...
Multivalue/combining hooks are logically different types of data source. * [ ] useElements (vs useElement) * [ ] useFormFields * [ ] useProperties * [ ] useAttributes * [ ]...
Too often it is more useful to have in-place reducers/modifiers, rather than abstract actions. Something like ```js let [store, { set, load, ... }] = useStore(initialState, actions) ``` But then...
For now only preact hooks pass.
https://github.com/contra/react-responsive
```js let [ value, pull ] = useReadableStream() let [ , push ] = useWritableStream() ```
Hi! In the [latest spec](https://webaudio.github.io/web-audio-api/#h-attributes-17) the _AudioProcessEvent_ has attributes `inputs` and `outputs`. In this implementation, [there is](https://github.com/mohayonao/audio-worker-node/blob/master/lib/audio-process-builder.js#L44) redefined `inputBuffer` and `outputBuffer` properties of `AudioProcessingEvent`. Would it be better if `AudioProcessEvent`...
From https://github.com/takenobu-hs/WebAssembly-illustrated there's * [ ] test suite * [ ] wasm-as * [ ] wat2wasm * [ ] wasm -d (spec)
We're doing `npx ttag update ./i18n/en-CA.po ./src` command. In OSX that generates forward slashes: ```po #: src/constants.js:10 ``` In windows that generates back slashes: ```po #: src\constants.js:10 ``` That creates...
If we have `` tag already with href attribute, the popover treats that as reference to content instead of some url.