Day 16 Demystifying Docker: A Beginner's Guide to ContainerizationWelcome to our blog where we dive into the world of Docker, a revolutionary tool transforming the way we build, test, and deploy applications. Whether you're a seasoned developer or just starting your journey into software development, Docker offers ...Feb 14, 2024·3 min read
Day 11 Advance Git & GitHub (Part 2)Git Stash:- Git stash is a handy command that allows you to temporarily save your local changes without committing them. This is useful when you need to switch to a different branch, pull the latest changes, or work on something else without losing y...Feb 6, 2024·3 min read
Day 10 Advance Git & GitHubGit Branch:- A branch is a version of the repository that diverges from the main working project. It is a feature available in most modern version control systems. A Git project can have more than one branch. These branches are a pointer to a snapsho...Feb 5, 2024·5 min read
Day 9 Deep Dive in Git & GitHubWhat is difference Between Main Branch and Master Branch? The "master" branch and the "main" branch are terms used in version control systems, such as Git, to denote the primary branch of development. The meaning and usage of these terms have evolved...Feb 4, 2024·4 min read
Day 8 Basic Git & GitHubWhat is Git? Git is a version control system that allows you to track changes to files and coordinate work on those files among multiple people. It is commonly used for software development, but it can be used to track changes to any set of files. Wi...Feb 3, 2024·6 min read
Day 7 Understanding package manager and systemctlWhat is Package? A package is usually referred to an application but it could be a GUI application, command line tool or a software library (required by other software programs). A package is essentially an archive file containing the binary executab...Feb 2, 2024·5 min read
Day 6 File Permissions and Access Control ListsPermissions in Linux:- Linux is a multi-user operating system, so it has security to prevent people from accessing each other’s confidential files. When you execute a “ls” command, you are not given any information about the security of the files, be...Feb 1, 2024·4 min read