Install and Setup LEMP Stack on

Install LEMP Stack on Ubuntu 22.04

Welcome to our tutorial on how to install LEMP stack on Ubuntu 22.04.  LEMP Stack is a group of open source tools commonly used for developing

Install Signal Messenger on Ubuntu 20.04

Install Signal Messenger on Ubuntu 20.04

Follow through this guide to learn how to install Signal messenger on Ubuntu 20.04. Signal is a cross-platform centralized encrypted messaging service developed by the

Process ModSecurity Logs using Wazuh

Process ModSecurity Logs using Wazuh

This guide will take you through how to process ModSecurity logs using Wazuh. ModSecurity WAF can be integrated with Wazuh in order to process the

Install NetBeans IDE on Debian 10

In this tutorial, we will cover how to install NetBeans IDE on Debian 10. NetBeans IDE is a free and open source extensible Java IDE (Integrated

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