Tushar Mathur
Tushar Mathur
The Problem statement > If I want to retrieve an instance of MyCustomClass, I have to first register it with a key name. For that I will have to require...
How about creating an `extends` method that creates an instance of base class and then attaches it to the prototype property of the child class? Note: Need to make sure...
Is there a plan to support multivariate linear regression? Some code - ``` javascript var LinearRegression, MeanError, _; _ = require('lodash'); MeanError = Error LinearRegression = (function() { function LinearRegression()...
I am getting this error — _Fetch API cannot load http://maps.googleapis.com/maps/api/js?key=blahblah&callback=initMap. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access. If an opaque...
I observed that the images are resized on the client size. It seems like its not the best for when you have a list of retina images that you want...
as of now there is no way to do something like this — ``` jsx ``` Can hyperscript support custom attributes as well? This is extremely useful when writing webcomponents....
`Http.request` should return an HttpApp that takes in a `Request` and returns a `Response`. ```scala def request: Http[Any, Throwable, Request, Response] = ??? ``` This implementation should not depend on...
API DSL
## Todos - [x] Customize Response headers, status code, etc. in handler - [ ] Add Error type - [ ] Refine api - [ ] Flesh out Doc type...
The `encode` method on headers is not implemented in the most efficient way. There are too many allocations that can be optimized. **Approach** - Start by creating a `Headers` instance...
> The resulting program has faster startup time and lower runtime memory overhead compared to a JVM https://www.graalvm.org/reference-manual/native-image - [ ] Add documentation about how to get started with GraalVM...