This file contains hidden or 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
For JavaScript: | |
JavaScript Essential Training: https://www.linkedin.com/learning/javascript-essential-training-3/welcome | |
javaScript Good parts: https://frontendmasters.com/courses/good-parts-javascript-web/ | |
Deep javaScript Foundation: https://frontendmasters.com/courses/deep-javascript-v3/ | |
Back-end Node.js Development: | |
Node.js Essential Training: https://www.linkedin.com/learning/node-js-essential-training-3/learn-the-node-js-fundamentals | |
Advance Node.js: https://www.linkedin.com/learning/advanced-node-js/welcome | |
Front-end: |
This file contains hidden or 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
Funtions: | |
Writing Functions: | |
Normal function: | |
get_name() { | |
echo "John" | |
} | |
echo "You are $(get_name)" |
This file contains hidden or 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
Dockerizing Any Application Using Dockerfile - Full Step by Step Process to make docker image: | |
What is the Dockerfile? | |
Dockerfiles are instructions. They contains all of the commands used to build an image. | |
Docker images consist of read-only layers. | |
Each represents a Dockerfile instruction. | |
Layers are stacked. | |
Each layer is a result of the changes from the previous layer. | |
Images are built using the docker image build command. |
This file contains hidden or 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
Basic Linux Shell Scripting: | |
What is Shell? | |
The shell executes a program in response to its prompt. When you give a command, the shell searches for the program, and then executes it. For example, when you give the command ls, the shell searches for the utility/program named ls, and then runs it in the shell. The arguments and the options that you provide with the utilities can impact the result that you get. The shell is also known as a CLI, or command line interface. | |
Types of shells: | |
Primaryly there is two types of shell: | |
Bourne shell − If you are using a Bourne-type shell, the $ character is the default prompt. | |
It has sub categories: Bourne shell (sh), Korn shell (ksh), Bourne Again shell (bash), POSIX shell (sh) |
This file contains hidden or 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
Linux Series part 2: File & Folder Permission Management: | |
To see file list, their crrent permission level and much more, you can run: | |
ls -la -lh -lt | |
(To know more on ls commands check tutorial: https://www.youtube.com/watch?v=h6sDtGN5hYs) | |
chmod <specification> filename : Change the file permissions. Specifications = u user/owner, g group, o other, + add permission, - remove, r read, w write,x execute. | |
chmod -R <specification> dir-name: Change the permissions of a directory recursively. To change permission of a directory and everything within that directory, use this command. |
This file contains hidden or 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
I will keep updating the list whenever I come accross excellent Devops related courses. | |
DevOps: | |
Beginner level: | |
DevOps Essentials (Free): https://linuxacademy.com/cp/modules/view/id/192 | |
DevSecOps Essentials (Free): https://linuxacademy.com/cp/modules/view/id/266 | |
DevOps Foundation: https://www.linkedin.com/learning/devops-foundations/welcome | |
DevOps Advance Topics: |
This file contains hidden or 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
{ | |
"__inputs": [ | |
{ | |
"name": "DS_PROMETHEUS", | |
"label": "Prometheus", | |
"description": "", | |
"type": "datasource", | |
"pluginId": "prometheus", | |
"pluginName": "Prometheus" | |
} |
This file contains hidden or 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
Course url: https://linuxacademy.com/containers/training/course/name/docker-deep-dive-part-1 | |
==================== All Docker Command While Learning Docker ========================= | |
Get a list of all of the Docker commands: | |
docker -h | |
====== Attaching to Container , run in background , name it ========== | |
Create a container and attach to it: |