Justin Keller
Justin Keller
```bash MacBook-Pro β ~ pip3 install b2 ``` Seems to have worked. But what is this sorcery π ? Is it running Apple Silicon native now? ```bash MacBook-Pro β ~...
@ppolewicz got it. But when I download the release from https://github.com/Backblaze/B2_Command_Line_Tool/releases/download/v3.2.0/b2-darwin and `chmod +x` it and run file on that I see: ``` MacBook-Pro β bin file /usr/local/bin/b2 /usr/local/bin/b2: Mach-O...
Since you are running everything via supervisord in a single container root might be required. Itβs perhaps worth the effort to split the dependency services (NGINX, MongoDB, Redis) out into...
@jerry-goodman oh wow crazy. I'll try this tonight. What user is supervisord running under now?
@jerry-goodman just updated the application in my Portainer cluster and used the `beta` image tag.  The pod comes up, but fails to start....
The function `sendAsBinary()` seems to have been removed from Chrome.
I think you can do something like: ``` if(!XMLHttpRequest.prototype.sendAsBinary){ XMLHttpRequest.prototype.sendAsBinary = function(datastr) { function byteValue(x) { return x.charCodeAt(0) & 0xff; } var ords = Array.prototype.map.call(datastr, byteValue); var ui8a = new...
Any update on this?
Even implementing: ``` javascript XMLHttpRequest.prototype.sendAsBinary = function(datastr) { function byteValue(x) { return x.charCodeAt(0) & 0xff; } var ords = Array.prototype.map.call(datastr, byteValue); var ui8a = new Uint8Array(ords); this.send(ui8a.buffer); } ``` Does...
@havenS This code is already implemented https://github.com/weixiyen/jquery-filedrop/blob/master/jquery.filedrop.js#L537 but does not seem to work. I am still getting: ``` Uncaught TypeError: Object # has no method 'sendAsBinary' ``` With Chrome (32.0.1700.107)....