Simon Warta
Simon Warta
Do I understand correctly this ticket is done by introducing WasmSlice in Wasmer 3.x?
protocolbuffers/protobuf#1348 was merged. Can this be closed, @paambaati?
It seems like the `GOARCH` in https://github.com/cosmos/cosmos-sdk/blob/v0.46.0/Makefile#L128 is broken and is always set to the first part "arm64". If I create the following debugging target ```make my-debug-target: @echo Find string...
Is the build target `make build-linux` aiming to do cross compilation? If yes, we should have `make build-linux-arm64` and `make build-linux-amd64` separately and avoid detecting it from the build machine....
Thank you Marko! However, there is clearly a bug in the Makefile as pointed out in https://github.com/cosmos/cosmos-sdk/issues/12798#issuecomment-1203568035 and https://github.com/cosmos/cosmos-sdk/pull/10279#issuecomment-1203568749. Was that addressed somewhere?
IMO there are two solid ways to approach this: 1. Build for the current host. Then both `GOOS` and `GOARCH` can be removed entirely. 2. Cross-build for a specific target....
@kaukas you look for this kind of concat, right?  (from https://medium.com/@jshvarts/read-marble-diagrams-like-a-pro-3d72934d3ef5) I need this functionality too to concatenate an event history with updates where the event history query might...
I'm implementing a version of buffering concat right now for my project. This is a test case that shows the difference between the two versions of concat: ```ts it("buffers asynchonous...
What I find confusing in the quoted paragraph as well as in > Once you call start with a listener, the Producer will start generating events and it will send...
In https://github.com/CosmWasm/cosmwasm/pull/1071 you find a const implementation of `from_be_bytes`/`from_le_bytes` for inspiration. Getting something similar in uint directly would be 🎖