In order to use remote Docker host, as a prerequisite you need SSH enabled (required login using SSH keys).
Go to C:\Users\YOUR_USERNAME\.ssh and copy content of id_rsa.pub file
| /*** | |
| * Shoutouts: | |
| * | |
| * Bytecode origin https://www.reddit.com/r/ethereum/comments/6ic49q/any_assembly_programmers_willing_to_write_a/dj5ceuw/ | |
| * Modified version of Vitalik's https://www.reddit.com/r/ethereum/comments/6c1jui/delegatecall_forwarders_how_to_save_5098_on/ | |
| * Credits to Jorge Izquierdo (@izqui) for coming up with this design here: https://gist.github.com/izqui/7f904443e6d19c1ab52ec7f5ad46b3a8 | |
| * Credits to Stefan George (@Georgi87) for inspiration for many of the improvements from Gnosis Safe: https://github.com/gnosis/gnosis-safe-contracts | |
| * | |
| * This version has many improvements over the original @izqui's library like using REVERT instead of THROWing on failed calls. | |
| * It also implements the awesome design pattern for initializing code as seen in Gnosis Safe Factory: https://github.com/gnosis/gnosis-safe-contracts/blob/master/contracts/ProxyFactory.sol |
| For Android: | |
| Manually change it in android/app/src/main/java/com/PROJECT_NAME/MainActivity.java: | |
| package MY.APP.ID; | |
| In android/app/src/main/java/com/PROJECT_NAME/MainApplication.java: | |
| package MY.APP.ID; | |
| In android/app/src/main/AndroidManifest.xml: | |
| package="MY.APP.ID" |
| import React from 'react'; | |
| import styled from 'styled-components'; | |
| const Spinner = () => ( | |
| <StyledSpinner viewBox="0 0 50 50"> | |
| <circle | |
| className="path" | |
| cx="25" | |
| cy="25" | |
| r="20" |
A quick guide on how to setup Node.js development environment.
nvm allows installing several versions of Node.js to the same system. Sometimes applications require a certain versions of Node.js to work. Having the flexibility of using specific versions can help.