Justin Keller

Results 121 comments of 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. ![Screenshot 2022-11-16 at 6 22 03 PM](https://user-images.githubusercontent.com/523312/202323711-50c3af75-d409-4fc9-957c-4f2334e64ec0.png) 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...

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)....