Kenji Imamula
Kenji Imamula
It may not be easy to create `push-manifest.json` as Angular currently probably does not analyze which resources are required in each path in build time. An alternative solution would be:...
I have created a library based on the above idea, though I have not tested it thoroughly. https://github.com/kimamula/ngx-server-push
The runtime of Google Cloud Functions is Node v6.11.5, which [does not support async/await](http://node.green/#ES2017-features-async-functions). https://cloud.google.com/functions/docs/writing/#the_cloud_functions_runtime A possible workaround is using [babel-register](https://babeljs.io/docs/usage/babel-register/) to transpile async/await on runtime, though I think keras-js...
I found that keras-js does not even support the latest LTS (Node v8.x). https://github.com/transcranial/keras-js/blob/df999159284abc5de0b92bc0f801375c08bf9008/.babelrc.js#L4 Is there any reason for that?
IMO it is difficult to predict that a method like `model.predict()` has side effects and cannot be run in parallel. Actually I have been struggling to find out why my...
What about always enabling the behavior I implemented behind `disallowFocusOnDisabledDates`?
The behavior I implemented here prevents the issue described in #1320 from happening.
@gpbl reverted #1451 and removed `disallowFocusOnDisabledDates` and `disallowFocusOnDisabledNavigation` props
@gpbl FYI, @react-aria/datepicker behaves similarly to what I implemented here when `minValue` and/or `maxValue` is set. https://react-spectrum.adobe.com/react-aria/useDatePicker.html#minimum-and-maximum-values
@gpbl is it possible to estimate when you will be able to take a look at this? Thanks!