06 Mar, 2026
The Terraform workflow forms the foundation of Infrastructure as Code (IaC) practices, enabling DevOps engineers and cloud professionals to define, provision, and manage infrastructure across multiple cloud providers efficiently. Understanding…
How to Create EC2 Instance Using Terraform Create EC2 instance using Terraform is one of the most efficient ways to automate cloud resource provisioning in Amazon Web Services (AWS). Instead…
HashiCorp is Configuration Language HashiCorp Configuration Language, often abbreviated as HCL, is a powerful and human-readable configuration language designed by HashiCorp to manage infrastructure as code (IaC). It forms the…
Ultimate Guide: Connect with Remote Desktop Using CLI Securely Connect with Remote Desktop Using CLI Command with Username and Password Remote desktop access has become a fundamental aspect of IT…
Comparison with Terraform VS Ansible Terraform VS Ansible is one of the most debated topics in DevOps automation and infrastructure management. Both tools are industry leaders, widely adopted for automating…

ubuntu cp omitting directory

Couple of things here: 1. Don’t use “sudo”. you don’t need it, you already have the permissions to write stuff in your own home directory. 2. You can easily view hidden files and directories in the graphical file manager by selecting View/Show Hidden Files from the menu. Or by pressing Ctrl-H. 3. You need to […]

Share your Love
1 min read

How to set the env variable for PHP?

You May use set keyword for set the path set path=%path%;c:/wamp/bin/php/php5.3.0 if all the path are set in path variables If you want to see all path list. you can use set %path% you need to append your php path behind this path. This is how you can set environment variable. Share your Love     

Share your Love
1 min read

jQuery UI Virtual Keyboard Plugin Example

 Here is jQuery UI virtual keyboard plugin.  This plugin will provide features like 1) An on-screen virtual keyboard embedded within the browser window which will popup when a specified entry field is focused.2) The user can then type and preview their input before Accepting or Canceling.3) Add custom keyboard layouts easily.4) Add up to four […]

Share your Love
1 min read

How to Add javascript in Joomla

There are three ways to add javascript Inline JavaScript 1: <?php 2: $document = JFactory::getDocument(); 3: $document->addScriptDeclaration(‘ 4: window.event(“domready”, function() { 5: alert(“An inline JavaScript Declaration”); 6: }); 7: ‘); 8: ?> External JavaScript There are two ways to include a JavaScript file 1: <?php 2: $document = JFactory::getDocument(); 3: $document->addScript(‘/media/system/js/sample.js’); 4: ?> The second […]

Share your Love
1 min read