Difference between production build install & development build installProduction Build Install: When you run a production build install, it installs only the necessary dependencies required for your application to run in a production environment. It skips installing development-specific packages, such as testing fram...May 17, 2023·1 min read
Difference between sync and copyBoth "sync" and "cp" are commands in Unix-like operating systems that can be used to copy files from one location to another, but they have some differences: "cp" (short for "copy") is a command that simply copies files from one location to another....May 9, 2023·1 min read
Shared Libraries in jenkins.In Jenkins, a shared library is a way to store commonly used code(reusable code), such as scripts or functions, that can be used by different Jenkins pipelines. Instead of writing the same code again and again in multiple pipelines, you can create a...May 8, 2023·1 min read
TLS and SSL in very simple wordsSSL (Secure Sockets Layer) and TLS (Transport Layer Security) are both protocols designed to provide secure communication over the internet. SSL was the predecessor to TLS, and both protocols use encryption to protect data during transmission. The m...May 5, 2023·2 min read
How's git clone work even i haven't install it in my ubuntu?When you use the git clone command on your Ubuntu machine, you are actually using a pre-installed version of Git that is bundled with your operating system. This means that you do not need to install Git separately in order to use it. Ubuntu, like ma...May 4, 2023·2 min read
AWS VPC: Implied router, Route table and Internet gateway.Implied Router & Route Table: It is a central routing function. It connects different az together and connects the vpc to an internet gateway. You can have up to 200 route tables per vpc. You can use up to 50 route entries per route table. Each ...May 2, 2023·2 min read