ntopng

Install ntopng on Rocky Linux 8

This guide will take you through how to install ntopng on Rocky Linux 8. ntopng is a high performance web-based network traffic monitoring application. It

Install PHP 7.4 on Ubuntu 20.04

In this guide, we are going to learn how to install PHP 7.4 on Ubuntu 20.04. PHP is a recursive acronym for Hypertext Preprocessor and

How to Set Up Your Own Proxy

How to Set Up Your Own Proxy

Protecting your privacy online is becoming a necessity rather than an option. Websites and advertising networks are using more intrusive methods to track your activities

Best GUI Tools for MySQL on Linux

Best GUI Tools for MySQL on Linux

The extensive data ecosystem includes MySQL as one of its most popular technologies. It is a Relational Data Base Management System (RDBMS) developed by Oracle

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