This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/anbox/anbox.git | |
cd anbox | |
mkdir build | |
cd build | |
cmake .. | |
make | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nonce = how many times the sender has sent a transaction | |
https://anders.com/blockchain/block.html | |
Epic Learning video great video- | |
error in video 0000 is actually a number and not just for zeros (fyi) | |
blocktime- amount of time it takes to get to this number |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://redux-form.com/7.4.2/examples/syncvalidation/ (link to docs) | |
`must name reducer form. when importing Field must be capitol as it is a Component. | |
1) reduxForm Functions the exact same as connect with redux. ex reduxForm(something)(something) | |
@) have reducer named form: ` | |
3) `When connected correctly the component gets a LOT of new props :) | |
4) see prop list below ` | |
import React from 'react' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`oAuth Flow Notes for React | |
Create Google Developer Account | |
Create Project | |
Get Ouath 2 Credentials | |
Must provide redirect to webite (link to home page example http://localhost:3000 | |
no sub directires* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\s matches any white Space**** | |
\. = anything goes | |
---------------------------------------------------------- | |
Quantifers Modify Char Prior to it | |
*= 0 | |
+=1 | |
?= Matches 0 or 1 of the preceding token, effectively making it optional. |

NewerOlder