Ratul
Ratul
Thanks for your prompt response. I would like to give it a shot very much. It would be helpful if you could spare some time pointing me in the right...
> I already made a pull request for this exact feature here: #374 . I called the flag`--use-index` but you can easily rename it to anything else > > P.S....
> > --no-explorer sounds explicit in it's intent without breaking any existing setups. > > I don't think it's necessary for this feature to disable the explorer. Automatically loading `index.html`...
Tied up with a GA release. Would need to come back. @Antosser? ________________________________ From: Esteban Borai ***@***.***> Sent: Saturday, February 24, 2024 9:49 AM To: http-server-rs/http-server ***@***.***> Cc: Ratul ***@***.***>;...
With latest Node version: v20.11.0 and following dependencies it runs clean. package.json: "dependencies": { **"wasm-game-of-life": "file:../pkg"** }, "devDependencies": { "copy-webpack-plugin": "^12.0.2", "webpack": "^5.90.1", "webpack-cli": "^5.1.4", "webpack-dev-server": "^4.15.1" } And webpack.config.js...
Another issue under the section "Automatic parameterization of functions" fixed. ```fn print_params(vec: SIMD[*_]): print(vec.type) print(vec.size) ``` Changed to: ```fn print_params(vec: SIMD[*_]): print(vec.dtype) # from type to dtype print(vec.size) ```
Changed title as advised.
Signed-off as suggested.
Please check!
This is well documented behaviour here: **https://docs.modular.com/mojo/stdlib/collections/optional/Optional/#value** - We need to check if the `Optional` is `True` or `False` prior to calling `value()`.