Raffaele Mancuso

Results 141 issues of Raffaele Mancuso

Allow either portable build or local build, and clearly document the two.

Python 3.12 [remove support for distutils](https://docs.python.org/3.12/whatsnew/3.12.html#distutils). Thus this package does not work with Python 3.12: ``` Traceback (most recent call last): File "/home/USERNAME/.pyenv/versions/argostranslate/bin/argos-translate", line 3, in from argostranslate import cli...

I don't understand [this line](https://github.com/fangfufu/Linux-Fake-Background-Webcam/blob/6aa175443a6498bfd977e6472a1696911ba821fb/v4l2loopback-install.sh#L26). The [docs says](https://github.com/umlaeute/v4l2loopback#load-the-module-at-boot) that: > One can only add one option per line.

### What happened? Linux AppImage for [v2.0.0-rc.0](https://github.com/LinwoodDev/Butterfly/releases/tag/v2.0.0-rc.0) crashes: I use Arch Linux ``` ➜ ./linwood-butterfly-linux.AppImage (butterfly:173411): Gtk-WARNING **: 14:18:42.412: Theme parsing error: gtk.css:3376:25: 'font-feature-settings' is not a valid property name...

bug
good first issue
help wanted

I think `icc` doesn't work for `glmmTMB` as well: ``` r$> m2 icc(m2) [1] NA ```

waiting for response :love_letter:
reprex :bar_chart:

The [docs provide the following example](https://maartengr.github.io/PolyFuzz/tutorial/quickstart/quickstart/#getting-started): ``` from polyfuzz import PolyFuzz from_list = ["apple", "apples", "appl", "recal", "house", "similarity"] to_list = ["apple", "apples", "mouse"] model = PolyFuzz("TF-IDF").match(from_list, to_list) ``` which...

In some documented examples a `model_id` paramater is passed to the constructor of PolyFuzz, but PolyFuzz's constructor don't take such parameter For instance, [the example here](https://maartengr.github.io/PolyFuzz/api/polyfuzz/#polyfuzz.polyfuzz.PolyFuzz.match) ``` import polyfuzz as...

Some examples, for example [this one](https://maartengr.github.io/PolyFuzz/api/polyfuzz/#polyfuzz.polyfuzz.PolyFuzz.match), use a `PolyFuzz.get_all_matches` function which doesn't seem to exist.