Skip to content

Instantly share code, notes, and snippets.

View joshuaaguilar20's full-sized avatar
🎯
Focusing

Joshua Aguilar joshuaaguilar20

🎯
Focusing
View GitHub Profile
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
//String Literal Teaching and While Loops/Switch Statement
//string literals
@joshuaaguilar20
joshuaaguilar20 / push.js
Created January 18, 2019 23:47
mitchNotes
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
@joshuaaguilar20
joshuaaguilar20 / session1.txt
Created January 14, 2019 21:17
Josh Mitch Teaching session number 1
Data Types
Variables
Loops
// Data Types
// string = "this is a string"
// boolean = true false //logic
// int = 5;
// object = {};
// Array = [];
@joshuaaguilar20
joshuaaguilar20 / notes.txt
Created January 8, 2019 03:02
mondaynotes
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)
@joshuaaguilar20
joshuaaguilar20 / notes.txt
Created January 4, 2019 20:50
Concerns-MarianRamon
Concepts- Lectures
Colt Steele Web Developer Bootcamp - Udemy
https://www.udemy.com/the-web-developer-bootcamp/
Triva Game.
Crystal Game. (missing wins and losses)
Write 5 Arrays of Objects
Assignments
testing Env.
https://repl.it/@joshuaaguilar20/Plus-Minus
@joshuaaguilar20
joshuaaguilar20 / questionFlow.js
Created January 2, 2019 21:15
questionAnswerFlow
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
@joshuaaguilar20
joshuaaguilar20 / timer.js
Created December 30, 2018 19:51
Marian Question Project Dec. 30th
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*
@joshuaaguilar20
joshuaaguilar20 / math.js
Created December 30, 2018 01:08
Math Object Notes for Marian
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));