Asa Zernik

Results 8 issues of Asa Zernik

e.g. with editDistance of 3 and query of "beans", both "beans" and "bran" match with the same score. Search relevance decaying with edit distance would make this feature much more...

Preventing unnecessary re-renders is the name of the game. Users will only see gains if they pass in a pure/memoized component, but if they do it's a big difference.

Almost all of the execution time of `registerField()` is spent in `toPath()`, specifically on the string-splitting. As this is modeled after lodash, I looked at [their implementation](https://github.com/lodash/lodash/blob/4ea8c2ec249be046a0f4ae32539d652194caf74f/.internal/stringToPath.js). Being lodash, they...

NB: Offline evolutions are those without a running application. Currently DefaultSlickApi has two dependencies that are hard to satisfy in a non-application context: `environment: Environment` and `lifecycle: ApplicationLifecycle`. `environment` is...

status:backlog

Many SQL implementations have an operator that is like `=`, but treats null as a normal value, i.e. equal to itself and not equal to other values. There is a...

There's a bit of a bug in the slicing logic - specifically, the `step` passed through the slice refers to something different from the `_step` in the xrange. See the...

Example output: ``` Categories: ``` In HTML, `` is a singleton tag: it can't contain any content, and if it doesn't have the closing '/' it's still a complete tag...

bug

The following sequence of calls results in a sample rate of 384000000: ``` bladerf_enable_feature(dev, BLADERF_FEATURE_OVERSAMPLE, true); bladerf_rational_rate actual, desired; desired.integer = 96000000; desired.num = 0; desired.den = 1; bladerf_set_rational_sample_rate(dev, BLADERF_TX_CHANNEL,...