PinnedLinux OS & File System For BeginnersWhy Linux? Linux is used by beginners as well as advanced programmers due to its scalability, ease of maintenance and it is user-friendly. Some of the other advantages are listed below: Security: Linux is more secure than many other operating system...Apr 15, 2024·8 min read
Docker - Diving deep inside a containerSo you’d be living under a rock if you have never heard of “Docker” and “containerization”. This blog aims to cover the inside of the hood components of a Docker container. This is a little more advanced than the Docker 101 getting started for beginn...Jun 21, 2025·9 min read
Guide to Install Jenkins Server LocallyIf you’ve ever searched “How to install Jenkins” online, you’ve probably noticed a pattern: most results either point straight to the official documentation or dive into containerized setups using Docker or Kubernetes. While these are powerful method...Jun 17, 2025·5 min read
Insertion SortWhat is Insertion Sort? We use Insertion Sort when we need to sort an array of let's say "n" numbers given in a random order to a sorted order. for e.g.{3,5,4,2,1} ~ {1,2,3,4,5} We may find the operation of selection sort and insertion sort to be mor...Apr 13, 2024·4 min read