Chris Patuzzo

Results 15 comments of Chris Patuzzo

I don't have any time to contribute but I'd just like to say thank you to @PhilRunninger for doing a wonderful job over the years. I still use NERDTree every...

I'd find this very useful. I have some code that copies records from one table to another and a way to set all translations in one go would be helpful....

I wondered the same thing. I'm building for WASM which doesn't support concurrency so my systems are executed serially. I haven't yet seen any performance problems as a result of...

Slightly unrelated, but I noticed the low pass filter produces Infinity/NaN values if the frequency is set to (just below) half the sampling rate of the source, or higher. This...

@dvtkrlbs: I don't think rodio will automatically re-create the OutputStream when the default system device is changed, that's probably something you'd have to check for and do yourself, perhaps by...

Here's a functional component that wraps react-draggable and applies the (second) fix above. You should be able to use it as a drop in replacement for react-draggable. ```jsx import {...

Sorry to necro this issue. Yes, that's right @tybenz, it only scores ``, `` and their parents and grand parents. Today I opened a pull request to allow you to...

You can work around this issue by creating a Python package as follows: **Directory structure:** ``` mlflow_cors/ mlflow_cors/ __init__.py setup.py ``` **__init__.py:** ```python from mlflow.server import app from flask import...

Hello, I think I ran into the same problem with this example: ```rust lazy_static::lazy_static! { static ref FOO: [usize; 2] = [0, FOO[0]]; } fn main() { println!("{}", FOO[0]); }...

Hey @mkrasnitski, `game-loop` version `1.1.0` is now updated to use version `0.29.x` of winit. I hope that helps, thanks.