Setup OpenVPN Server on CentOS 8

In this guide, we are going to learn how to install and easily setup OpenVPN Server on CentOS 8. OpenVPN is a robust and highly

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

Install phpMyAdmin with Nginx on Fedora 30

This guide will take you through how to install phpMyAdmin with Nginx on Fedora 30. As you already know, phpMyAdmin enables administration of MySQL/MariaDB operations

Install Thunderbird mail client on Ubuntu 22.04/Ubuntu 20.04

Install Thunderbird on Ubuntu 24.04

This guide provides a step by step tutorial on how to install Thunderbird on Ubuntu 24.04. Thunderbird is a free and opensource cross-platform email, chat,

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