SYshubham yadavinshubhamyadav.hashnode.dev路Jul 14, 2022 路 5 min readJWT (JSON Web Token)What JWT is used for? A JWT is used for authorisation, authorisation is making sure that the user that sends a request to your server is the same user that actually logged in during the authentication process. it's authorizing that a user is an acces...00
SYshubham yadavinshubhamyadav.hashnode.dev路Feb 8, 2022 路 6 min readKubernetes Overview.kubernetes Kubernetes is a container orchestration tool, developed by Google in 2014. in simple terms, it manages containers from docker containers or from other technology. Kubernetes basically helps you manage containerized applications made up of ...00
SYshubham yadavinshubhamyadav.hashnode.dev路Jan 6, 2022 路 3 min readLinux Commands馃惂Types of shells Bourne shell (sh shell) C shell (csh shell) Z shell (zsh shell) Bourne again shell (bash shell) linux commands basic commands echo - print a string ls - list files in a directory cd - change directory pwd - print working directory ...00
SYshubham yadavinshubhamyadav.hashnode.dev路Jan 6, 2022 路 4 min readDocker Overview馃惓What is Docker? Docker is a tool for running applications in an isolated environment. It is similar to Virtual Machine but it's much faster and does not require a lot of memory and an entire operating system to operate. The cool thing about docker i...01V
SYshubham yadavinshubhamyadav.hashnode.dev路Jul 18, 2021 路 3 min readDocker Commands 馃惓docker images commands Shows the help for the docker images command. docker images --help pulls an image from a registry. docker pull [image] ` Pulls an image from a registry and tag it. docker pull [image]:[tag] Lists all images in the local reg...00