SSayaminsayam-blogs.hashnode.dev·Apr 1, 2023 · 2 min readGitHub ActionsGitHub Actions - GitHub actions is a CICD ( Continous Integration / Continous Deployment ) platform for automating build, test and deploy processes, with GitHub actions pull and push requests can be easily validated and verified. Let us understand Gi...00
SSayaminsayam-blogs.hashnode.dev·Mar 12, 2023 · 3 min readAll About Docker and Containers!Prerequisite - Before jumping to the article, create a personal docker hub account because it will be needed in later sections. Install Docker in WSL (Windows Subsystem for Linux) Ubuntu. Docker Desktop. Topics covered in this section are listed...00
SSayaminsayam-blogs.hashnode.dev·Dec 19, 2022 · 1 min readMicroservices vs Monolithic ArchitectureMicroservices can be defined as when an application is divided into multiple modules or services which work independently. Whereas on the other hand monolithic architecture is defined as when application services are working as a single unit in a sin...00
SSayaminsayam-blogs.hashnode.dev·Oct 7, 2022 · 2 min readWhat is Stack ?Stack A stack is a linear data structure, where "linear" refers to the order in which the items are arranged. The two operations that can be performed on a stack data structure are push and pop. Push operation adds an element to the top of the stack...00
SSayaminsayam-blogs.hashnode.dev·Sep 18, 2022 · 1 min readUseful Linux CommandsDirectory Operations pwd -> displays current working directory. mkdir -> make a new directory. cd directory_name -> move into that directory. ls -> list contents of current directory. ll -> list contents of current directory with detailed info. rm -...00