John Chang

Results 15 comments of John Chang

> I just wanted to comment here that this PR has been very useful to me so far; it's extremely nice to be able to stick with the proven, known,...

I'm surprised that this isn't already defined somewhere: ``` from connexion import ProblemException from werkzeug.exceptions import NotFound import http.client class NotFoundProblem(ProblemException, NotFound): def __init__(self, **kwargs): assert self.code # silence type...

Balena support provided the following workaround: > Hello John, > > RasPi Zero's are definitely the devices that are the most susceptible ones to this issue. > > I assume...

+1 That said, here's a way to do it with a "normal" .env file, i.e. without the explicit `--env` on each line: cat .env | xargs -I@ echo "--env @"...

Well, hmm, I suppose I could… but yes :) (unless I'm thinking about it wrong): 1. As the version invariably isn't incremented until build time, this means that the act...

This is what I do (for text files): ``` echo "cat /PATH/TO/FILENAME; exit;" | balena ssh DEVICE_UUID | tail -n +4 > FILENAME ``` The `tail -n +4` part cuts...

Relating workaround https://github.com/necolas/react-native-web/issues/548

Does this cover building Balena CLI releases for Apple Silicon or should I open a new issue? (Basically there are no macOS-arm64 builds on https://github.com/balena-io/balena-cli/releases… but `brew install balena-cli` seems...

The packages mentioned aren't required.

This is fantastic. I had tried overriding `width` and `maxWidth` but not setting it to `none`! I can confirm that your fix works!