Abhinandan Udupa

Results 31 comments of Abhinandan Udupa

## Community Bonding Period [20th May, 2022 to June 12th, 2022] - status update - LLVM coding style has to be followed - [.clang-format](https://github.com/WasmEdge/WasmEdge/blob/master/.clang-format) and [.clang-tidy](https://github.com/WasmEdge/WasmEdge/blob/master/.clang-tidy) - Use `GDB`to trace...

## Proposal: Use `Microsoft CRT` (UCRT) instead of the `win32 API` ### Introduction The Universal C Runtime Library (UCRT) supports most of the C standard library required for C++ conformance....

> 1. `We will be able to port the logic for *nix like OSes to Windows easily.`. However, not all of the libc functions are implemented in CRT. If you...

### List of functions used in the Linux implementation which are available in the windows Universal C Runtime: - `_open()` [`open()` equivalent] - missing flags: `O_DIRECTORY`, (`O_SYNC`, `O_DSYNC`, `O_RSYNC`), `O_NONBLOCK`,...

#### Possible Performance Issues with `Universal CRT` Unfortunately, I have not found any information regarding the performance of the library in comparison to the `win32 API`. I really tried hard...

## Implementation Status ### Host Functions: Function-wise Summary | Function | Status | Comment | | --------------------- | --------------------- | ------------------------------------------------------------------------- | | `open` | complete | some flags may...

Can you please assign this to me?

I have a few questions to ask: > The goal of this task is to create a WasmEdge HTTP server that performs SSR for yew, as an alternative to the...

I have gone through the example for SSR in the [`yew` repository](https://github.com/yewstack/yew/tree/master/examples/simple_ssr) and learnt that - The [`App` component](https://github.com/yewstack/yew/blob/31594245ef9a4e56768d820956229cfd3d7d2e49/examples/simple_ssr/src/lib.rs#L83) in `lib.rs` returns a html component which is used in the...