James

Results 18 comments of James

You can specify the port forward multiple times when launching the client. You may also consider using a socks proxy

@tlaverdure Do you have any plans to upgrade to socket.io v3 or v4?

> > > Is there no way to doing this through php so I don’t have to log in to cpannel every time I make a change? You can [programmatically...

The error states that you're missing required packages from your system. You can install them with: ```bash sudo apt install -y libxml2-dev libxslt1-dev ```

Maybe give https://github.com/jonnnnyw/php-phantomjs a try, it's a headless webkit browser

This is a really nice addition

> Hmm, what if you just plugged in the RN components in overrides for all the common HTML tags? I've done just this and it works exactly as expected.

If you look through the source you can see that the cache image name is as follows: ```javascript const url = new URL(source.uri, null, true); const type = url.pathname.replace(/.*\.(.*)/, '$1');...

`AndroidInstallStatus` is exported from the library as `IAUInstallStatus`. So you can use `IAUInstallStatus.DOWNLOADED` instead. ```js console.log(AndroidInstallStatus?.DOWNLOADED, IAUInstallStatus.DOWNLOADED); ``` ![image](https://user-images.githubusercontent.com/2078364/218772658-fe20aead-0761-4ead-9d06-3b5c2d92fa9c.png)