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,

Install and Setup DVWA on Debian 10

Want to shape your skills on web application security? Well how about you play around with Damn Vulnerable Web Application? Follow through this guide to

Install GVM 21.4 on Kali Linux

Install GVM 21.4 on Ubuntu 20.04

In this guide, you will learn how to install GVM 21.4 on Ubuntu 20.04. Greenbone Vulnerability Management (GVM), previously known as OpenVAS, is a network security scanner

Install phpMyAdmin on Debian 12

Install phpMyAdmin on Debian 12

In this guide, we are going to learn how to install phpMyAdmin on Debian 12. phpMyAdmin is a free and opensource application written in PHP

Install MariaDB 10.3 on Fedora 30

Welcome to our guide on how to install MariaDB 10.3 on Fedora 30. MariaDB is an open-source relational database which comes as an enhanced drop-in

Screenshot from 2021 01 13 22 50 51 1

Install VirtualBox 6.1 on Fedora 33

In this tutorial, you will learn how to install VirtualBox 6.1 on Fedora 33. VirtualBox 6.1 is available for installation in most Linux platforms package

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); }); }); }); });