Install NetBeans IDE

Install NetBeans IDE on Ubuntu 22.04

In this tutorial, you will learn how to install NetBeans IDE on Ubuntu 22.04. NetBeans IDE is a free and open source extensible Java IDE (Integrated Development Environment)

install nodejs on ubuntu

Install Nodejs on Debian 11

In this tutorial, you will learn how to install Nodejs on Debian 11. Nodejs is a JavaScript runtime built on Chrome’s V8 JavaScript engine and is designed to build

gvm

Install GVM 21.04 on Debian 11/Debian 10

In this guide, you will learn how to install GVM 21.04 on Debian 11/Debian 10. Greenbone Vulnerability Management (GVM), previously known as OpenVAS, is a network security scanner which

Install Mantis Bug Tracker on Debian 10

Welcome to our tutorial on how to installing Mantis Bug Tracker. Mantis Bug Tracker (MantisBT), is a popular free web-based bug tracking system. It is written

Install MongoDB on Ubuntu 20.04

Install MongoDB on Ubuntu 20.04

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

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