Jack Wilsdon

Results 61 comments of Jack Wilsdon

I can understand that, although I'm not a big fan of how the JS is currently transpiled in the browser at runtime. What are your thoughts on either maybe moving...

Shifting away from JSX isn't ideal to be honest - I wouldn't actually recommend doing it. You end up with JSX like this; ```JSX This is the title ``` Turning...

Yeah, I was imagining it starting up normally if there's not 20 images available and making the URL field mandatory - it eases setup as I had to go and...

Looks like the only supported schemas are `ftp`, `tcp`, `udp`, `ws`, `wss`, `http` and `https`.

> What's the base .babelrc that cra uses? Sadly this is embedded in CRA's webpack config, so it is a bit of a pain to extract. For example, [CRA v3.1.2](https://github.com/facebook/create-react-app/blob/v3.1.2/packages/react-scripts/config/webpack.config.js)...

I think a good implementation of this would be the first example I gave (with a slight alteration): ``` # No mirroring https://ppic.now.sh/example.png?mirror= # Mirroring along the X axis (default)...

I can't see anywhere in our commit history where we spelt downloads like that, weird! Try running `docker pull progrium/busybox` to get the latest copy of the Docker image and...

I can reproduce this with a long password (64 characters long).

[~I've managed to find a JS implementation of the login details encryption, which might provide a good starting point.~](https://github.com/dweinstein/node-google-play/blob/e1d66c2f7f65afd8c373e65be59848de8b660be3/lib/login.js) Oops, that implementation suffers the same issue too!

Just spent the last 30 minutes reverse-engineering the original Java source from Android from 2014, and it seems that it also has the 80 character combined limitation! I did some...