
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. |
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
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
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
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
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random | |
Dev Docs | |
Jquery Documentation | |
https://api.jquery.com/ | |
function getRandomInt(max) { | |
return Math.floor(Math.random() * Math.floor(max)); |
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
1.5 Hour Session | |
10:00 | |
1). Start Button To Start Quiz* | |
2) We want the Timer To Start* | |
3). We want show 4 Answers and one Question. * | |
4). if user selects right answer show Correct | |
5) if user selects wrong answer show Wrong | |
-Play Some Sound* |
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
1) Question + 1 | |
will change the question to the next from one to two three | |
1) right answer, but we do not have the wrong answers to insert? | |
1.2 HR session |
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
Write 5 Arrays of Objects | |
Assignments | |
testing Env. | |
https://repl.it/@joshuaaguilar20/Plus-Minus | |
OlderNewer