Ophir LOJKINE
Ophir LOJKINE
The last commit was made more than a year ago, pull requests are never merged, and no one answers to open issues. Is this project dead ? If so, it...
In the implementation of the jaro distance, there is a useless loop on all the characters of both strings : https://github.com/dguo/strsim-rs/blob/master/src/lib.rs#L62-L63 `string.chars().count()` runs in `O(n)` on the length of `string`
## Basic Information **Name:** Sanipasse **Category:** Health **URL:** https://sanipasse.fr ## Description Sanipasse is a privacy-preserving open-source alternative to the french government's health pass checker. ## Why I am making the...
After a recent update, localforage started throwing the following error: ``` Uncaught (in promise) TypeError: t.ready is not a function ``` I use localforage as an asynchronous module, required dynamically...
The [documentation for warp::filters::cors](https://docs.rs/warp/0.3.1/warp/filters/cors/index.html) mentions an `Origin` struct and an `IntoOrigin` trait, but does not seem to contain any information about what they are, what they are implemented on, and...
I feel like today, providing a custom, limited webworker API, based on message-passing instead of promises is not the best choice, and is not useful to many. On the contrary,...
It is considered good practice to only throw the Error object itself or an object using the Error object as base objects for user-defined exceptions. The fundamental benefit of Error...
The typescript types DecodeContinuouslyCallback exported by @zxing/library and @zxing/browser are not compatible : ``` Error: Argument of type 'import("node_modules/@zxing/library/esm/browser/DecodeContinuouslyCallback").DecodeContinuouslyCallback' is not assignable to parameter of type 'import("node_modules/@zxing/browser/esm/common/DecodeContinuouslyCallback").DecodeContinuouslyCallback'. Types of parameters...
It has pending issues and pull requests, but no activity for several months. Is this project dead ? Should we avoid to use it in production ?
I would expect ```python reference = ureg.Quantity("10 megawatt") ureg.Quantity("100 megawatt").m_as(reference) ``` to either throw an error, or return `10`. However, it returns `100`, which is a little bit surprising (and...