Results 109 issues of Simonas Kazlauskas

I was testing out jellyfin's photo viewer on the TV. Every 10 photos (in automatic slideshow as activated by pressing the shuffle button) or so the clock screensaver would activate...

When viewing a photo slideshow, the app ran out of memory in 30 minutes or so of perusing the feature. The TV then said that it was going to restart...

This exception is meant to indicate that the request should be retried shortly, essentially, and at least some of the devices I own seem to be busy bees. Thus my...

bug

### Describe the Bug `walrus` will fail to parse some of the valid spec-tests. In particular I found it to fail when parsing some modules in the [unreached-valid.wast](https://github.com/WebAssembly/spec/blob/main/test/core/unreached-valid.wast#L54) test: ```...

bug

Consider a situation like this: 1. Stake 5 near with some pool; 2. Unstake 1 near, and wait for the token to be released, so that it is available to...

Currently rustup is scarily sequential. It could easily download more stuff while installing the previously downloaded stuff.

enhancement
help wanted
performance

***Describe the bug*** ``` #near delete-key $ACCOUNT --access-key "ed25519:banana" near delete-key delete access key Options: --help Show help [boolean] --version Show version number [boolean] --nodeUrl, --node_url NEAR node URL [string]...

bug
T-dev-tools

Currently we reuse memory maps that we allocate for storing compiled machine code for the contracts. This has been found to work great and improves the performance by a great...

A-contract-runtime
T-contract-runtime

The Compiled Contract Cache introduced in https://github.com/near/nearcore/pull/10791 is reading files off disk using the plain old `read(2)` call. Although the profile looks much better than with the RocksDB-based cache, the...

A-contract-runtime
T-contract-runtime

Today if you look at the [`instantiate`](https://github.com/near/nearcore/blob/60ce4fb99c8d15b1c1a3fea50c67044e2660a8c4/runtime/near-vm/vm/src/artifact.rs#L18-L25) method, it takes `Arc` as the self receiver. This means that e.g. the cache of Artifacts must store `Arc`s of the Artifacts as...

A-contract-runtime
T-contract-runtime