frontendwebdev.hashnode.devHiding photos in the system (Ubuntu)Encrypted Folder with EncFS (password protected & mounts like normal folder) STEP 1 : iNITIALIZATION 1. Install EncFS Copy Copy sudo apt update sudo apt install encfs 2. Create two folders Copy Copy mkdir ~/PrivateEncrypted # actual encrypted data...Dec 25, 2025·1 min read
frontendwebdev.hashnode.devStyling with Tailwind CSSIn this blog we are going to explore tailwind CSS, which is very useful for styling the websites. 🔷 What is Tailwind CSS? Tailwind CSS is a utility-first CSS framework that helps you build custom designs quickly and efficiently. Instead of writing c...Dec 25, 2025·2 min read
devops-prereq.hashnode.devExploring Basics of Ansible🌐 What is Ansible? Ansible is an open-source IT automation tool developed by Red Hat. It is used to automate configuration management, application deployment, infrastructure provisioning, orchestration, and more. 💡 Why Ansible? Imagine you manage 1...Dec 25, 2025·7 min read
devops-prereq.hashnode.devAnsible ad hoc CommandsIn Ansible, ad-hoc commands are one-liners you run directly in the terminal to perform quick tasks on your managed nodes — without writing a full playbook. 🧪 Syntax of an Ad-Hoc Command: ansible <host-pattern> -m <module-name> -a "<module-options>" ...Dec 25, 2025·14 min read
devops-prereq.hashnode.devLet's build the below vpc from scratch!!Building this consists of 3 phases VPC, AUTO SCALING GROUP for ec2 servers , a JUMP HOST to manage them, and finally LOAD BALANCER to allow traffic. STEP-1 : VPC Go to vpc section in aws console and start creating with below configurations leaving re...Dec 25, 2025·3 min read