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
Docker Basic | |
Sudo Docker run --ImageName | |
Sudo Docker Ps (shows all current running docker containers) | |
` Also Gets Container Id. | |
Docker ps --all | |
docker create fileName |
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
//String Literal Teaching and While Loops/Switch Statement | |
//string literals | |
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
var names = ["josh", "bree", "mitch", "mohommad", "john", "jr", | |
"nacy", "donald","player3" | |
]; | |
//loop through names and print mohommad | |
function find(group, name){ | |
//checks everyname in List |
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
Data Types | |
Variables | |
Loops | |
// Data Types | |
// string = "this is a string" | |
// boolean = true false //logic | |
// int = 5; | |
// object = {}; | |
// Array = []; |
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
JSON = BIG Object | |
LINK- https://repl.it/@joshuaaguilar20/IndeliblePessimisticProfessionals | |
Example API call. | |
Go WebSite and reuqest data. | |
Request URL Get 200 Todos- | |
-get (asking for information) |
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
Concepts- Lectures | |
Colt Steele Web Developer Bootcamp - Udemy | |
https://www.udemy.com/the-web-developer-bootcamp/ | |
Triva Game. | |
Crystal Game. (missing wins and losses) | |
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 | |
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
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
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)); |