Nicolas Clavaud
Nicolas Clavaud
Looks like `libbluetooth-dev` is needed: ``` sudo apt-get install libbluetooth-dev ```
Mapping allows an empty string, though. For the record, I solved the very same problem by: - setting the secret to an empty string for non-confidential clients (javascript or mobile...
> Regarding this issue, the implementation of public clients is not easy ; According to [RFC6749 (section 2.3.1)](https://tools.ietf.org/html/rfc6749#section-2.3.1), the `client_secret`, when omitted, should be considered an empty string: ``` client_secret...
From what I read [here](https://github.com/processing/processing-android/blob/b5167c8e1dba76810fd6aa3bb814358606bb93ef/core/src/processing/core/PApplet.java#L5160-L5162), it would save to internal storage only if there is no absolute filename specified. So you should be able to call `save()` with an absolute...
Actually the `keytool` executable is available at `/usr/bin/keytool` on my machine. ``` $ whereis keytool keytool: /usr/bin/keytool /usr/share/man/man1/keytool.1.gz ``` I could alias it, and managed to build the example application...
We've been processing a few jobs and came up with this layout which is pretty useful in our case: - pending (started and ready to start) - scheduled (to be...
Does the fix in #95 solve this issue as well?
@causaly-mark I think this is because the per-method packages are not maintained/released anymore. See this other, similar issue about another method package: https://github.com/lodash/lodash/issues/5808 and https://lodash.com/per-method-packages for the official documentation discouraging...
As this page states, use of the per-method packages is discouraged: https://lodash.com/per-method-packages so I guess we should instead encourage library authors to migrate to the main lodash package.
Just noticed a related PR (sorry): #40