Results 36 issues of Jakob Meier

### Preflight Checklist - [X] I have completed all [Troubleshooting Steps](https://docs.directus.io/getting-started/support/#troubleshooting-steps). - [X] I'm on [the latest version of Directus](https://github.com/directus/directus/releases). - [X] There's [no other issue](https://github.com/directus/directus/issues?q=is%3Aissue) that already describes my...

App
Bug

Deployment costs per byte of code are going to be increased by a factor of ~5 with this change: https://github.com/near/nearcore/pull/6397 Probably this will happen with protocol version 53, which would...

core-contracts

This introduces the ability to replay IO traces on the estimator. Example usage in `runtime/runtime-params-estimator/README.md`. While it is not used for estimations, yet, it is already a subcommand of the...

P-low

Building on top of #7053, instrument our estimations such that they count the DB accesses. Based on that, give a report based on fixed-delay assumptions for DB accesses. This kind...

T-contract-runtime
A-params-estimator

Inside `runtime-params-estimator/src/cost.rs` we have one `Cost` entry for each estimation. Some are for specific runtime parameters. Others do not have such a direct relation but we still want to estimate...

T-contract-runtime
A-params-estimator

Right now, results marked as uncertain are displayed just like any other results in Murphy's [Zulip chat](https://near.zulipchat.com/#narrow/stream/319057-pagoda.2Fcontract-runtime.2Fce). Proposed way to show it: 1. ~When a previously certain results turns uncertain,...

C-good-first-issue
T-contract-runtime
A-params-estimator

## Story As a user, I want to fully understand the gas costs of a transaction, by looking at the explorer. Today, when adding up all tokens burnt and all...

Needs-Validation

### Idea: Allow subscriptions without an activity. ### Current Status With the current API, a subscription can only be created on an activity. This sometimes forces programmers to create a...

enhancement

Right now, nuts only works in a single thread. All data is stored in the thread-local storage object [`NUT`](https://github.com/jakmeier/nuts/blob/master/src/nut.rs). If there are multiple threads (non-web) then there will be multiple...

enhancement

Instead of checking the number of values and their sizes, the caches are now limited by the actual (approximated) memory consumption. This changes what `total_size` in `TrieCacheInner` means, which is...