Stephen Akinyemi
Stephen Akinyemi
I'm working with a [library](https://github.dev/ipld/libipld/blob/cee752633cf7e06455f1b294f3d120cb639dc9c5/core/src/serde/de.rs) that only supports 128-bit integers for its data format. It is a self describing format which means it implements `deserialize_any`. It mostly works fine with...
This is a [rustup-like](https://rustup.rs/) or [choosenim-like](https://nim-lang.org/install_unix.html) installation process where the user doesn't need to have simple already installed on their system. Just a single command that does all the installation...
[RosettaCode](http://www.rosettacode.org) is a repository where codes implementing tasks in different languages are stored. Simple has no presence there yet. So I think we should fix that. I already created a...
I want to add an array of uint8s (which would map to UInt8Array) to a context's global object. I get `ReferenceError: bytes is not defined` when I try so I'm...
The hints in input boxes need a less proiminent color as they are currently indistinguishable from text typed into the boxes.
I think the library should just be renamed `lazerpay` or `lazerpay-rs`. `lazerpay-rust-sdk` is a mouthful. There is no need for the `...-rust-sdk` namespacing since this rust version is only ever...
Initial implementation to get basic LLVM codegen working for Wasmo. This implements type-safe wrappers around `llvm-sys`. And the reason we are not going with `inkwell` or other type-safe implementation is...
@zeeshanlakhani [pointed out][mention] an opportunity to use `tinyvec` for a stack structure in a review. We use working stacks and other collections in a few places that can be optimized...
Apart from intrinsic memory allocation needed for collections, smart pointers, etc., the library does not depend on a lot of system functions that the OS provides therefore making it a...
We want test our fs components based on their properties instead of the specific scenarios we create for them right now. These scenarios are the edge cases we can think...