Install MongoDB on Debian 10

Install MongoDB on Debian 10

Follow through this tutorial to learn how to install MongoDB on Debian 10. According to mongodb.com, “MongoDB is a general purpose, document-based, distributed database built

Serverless Computing with Linux on AWS Lambda

Serverless Computing with Linux on AWS Lambda

Introduction In today’s rapidly evolving technological landscape, serverless computing has emerged as a game-changer, redefining the way developers build and deploy applications. One of the

Install and Setup LEMP Stack on

Install LEMP Stack on CentOS 8

Just like LAMP Stack, LEMP Stack is a group opensource tools commonly used for developing and deploying web applications. It consists of the Linux Operating System

install nodejs on ubuntu

Install Nodejs on Ubuntu 24.04

In this tutorial, you will learn how to install Nodejs on Ubuntu 24.04. Nodejs is a JavaScript runtime built on Chrome’s V8 JavaScript engine for easily building fast,

document.addEventListener("DOMContentLoaded", function() { document.querySelectorAll(".scroll-box").forEach(function(box) { box.style.position = "relative"; // Needed for absolute positioning of button var button = document.createElement("button"); button.className = "copy-icon-btn"; button.setAttribute("aria-label", "Copy code"); button.innerHTML = ''; box.appendChild(button); button.addEventListener("click", function() { var text = box.innerText; navigator.clipboard.writeText(text).then(function() { button.querySelector("svg").setAttribute("fill", "#4CAF50"); setTimeout(function() { button.querySelector("svg").setAttribute("fill", "white"); }, 1500); }).catch(function(err) { console.error("Copy failed: ", err); }); }); }); });