benbro
benbro
The jquery and three.js file names have changed in the newThreeJS branch https://github.com/biochem-fan/GLmol/blob/newThreeJS/src/viewer.html#L166 ColorConverter.js need to be added. The color converter UI in the viewer covers everything else with a...
Hi, Is there a chance you'll contribute this lang file to the gtksourceview project? A bug can be submitted here: https://bugzilla.gnome.org/page.cgi?id=browse.html&product=gtksourceview
Is it possible to update cow_mimetypes.erl to include JavaScript modules mimetype? It is included here: https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types ```erlang all_ext() -> {, , []}; web_ext() -> {, , []}; ```
Is it possible to parse the json and jsob types? Currenty pgo returns the column as binary. OTP 27 will have a json module so it might make sense. ```sql...
Uncaught SyntaxError: The requested module 'https://cdn.jsdelivr.net/npm/@mediapipe/tasks-vision' does not provide an export named 'default' (at index.js:2:8) Fix: ```javascript import * as vision from "https://cdn.jsdelivr.net/npm/@mediapipe/tasks-vision"; ``` https://github.com/google-ai-edge/mediapipe-samples/blob/main/tutorials/background_segmenter/code/index.js#L2
The [vm.args](https://github.com/erlang/rebar3/blob/main/apps/rebar/priv/templates/vm.args) template set ```+K true``` which was removed in [otp 21](https://www.erlang.org/blog/io-polling/). Is ```+A30``` better than then default ```+A10```?
I'm getting the following in Chrome 129 console when using the Canvas 2D backend in the [demo](https://volcomix.github.io/virtual-background/): ``` Canvas2D: Multiple readback operations using getImageData are faster with the willReadFrequently attribute...
Will it be better to replace zlib:inflate/2 with [zlib:safeinflate/2 ](https://www.erlang.org/doc/apps/erts/zlib.html#safeInflate/2) to prevent zlib-bomb as mentioned [here](https://github.com/ninenines/cowboy/issues/946#issuecomment-348746981)? https://github.com/ninenines/cowlib/blob/master/src/cow_ws.erl#L546 and few other places. Is there a benchmark for cowboy WebScokets with and...
I'm not able to call appup generate and to upgrade a release. Steps to reproduce: erlang/otp: 27.0.1 rebar3 version: 3.23.0 rebar3_appup_plugin version: 2.4.6 1. Create a project. ```erlang rebar3 new...
I'm getting a warning when loading a model with faster_whisper.utils.download_model in v1.1.0 ```python from faster_whisper.utils import download_model download_model('tiny','/tiny') ``` ``` /usr/local/lib/python3.11/dist-packages/huggingface_hub/file_download.py:834: UserWarning: `local_dir_use_symlinks` parameter is deprecated and will be ignored....