Gunnar Oledal
                                            Gunnar Oledal
                                        
                                    @kriswiner It's still not clear how one should treat the pins. I want to solder my USFS to a teensy while being able to use the mentioned pins (SDM, SCM,...
I have now with rather high confidence verified that I cannot use the pins at the same time as other peripherals (in my use cases I need to connect the...
Yes. I have. Veeery interesting indeed! So yes. I have a slight hunch from the articles how the functions in the pd might be used. But I would still feel...
Thanks! Much clearer now! So. My understanding is that one could use the predict_frequency until the BACF says it's ready? Something like this: ``` static float trackedFrequency = 0.f; bool...
I personally second getting rid of ParseResponse. I don't see the purpose of it. I almost always end up creating a future from my queries or save-calls. Like this: ```dart...
Hello @vincent-leonardo. Is your alternative bluetooth implementation still valid? I actually stumble upon the problem you describe here https://github.com/hybridgroup/cylon/issues/310#issue-102175336. I succeed in connecting approximately every 3rd try. The other times...
I actually ended up copy/pasting your adapter code and the edits in loader.js for a quick and dirty test. Unfortunately the problem persists, with the connection failing ever so often....
I too was really confused by the session-option in the documentation. @jaredhanson is it possible to merge this into the main-library? Or is it perhaps recommended to adopt the usage...
Same here. Looking in the source code I can't see anywhere where the session-option is actually used 🤔 https://github.com/jaredhanson/passport-local/blob/4d9fbefeba48164c43d5bde4e48ff57c2c37d372/lib/strategy.js#L42-L56
Also stumbled upon this issue with `doublePrecison('columnName').array()` generating the following sql `"columnName" "double precision[]"`, In my case i can simply use `real` instead of `doublePrecision` as a workaround.