postgresql

Install PostgreSQL 13 on Debian 11

Follow through this guide to learn how to install PostgreSQL 13 on Debian 11. PostgreSQL is a fully featured object-relational database management system. It supports

how to install web min on Linux

How to Install Webmin on Ubuntu 24.04

In this tutorial, you will learn how to install Webmin on Ubuntu 24.04. Webmin is a web based control panel that allows system administrators to manage

document.addEventListener("DOMContentLoaded", function() { document.querySelectorAll(".scroll-box").forEach(function(box) { // Make the scroll box relative so button can be positioned inside box.style.position = "relative"; // Create the copy button var button = document.createElement("button"); button.className = "copy-icon-btn"; button.setAttribute("aria-label", "Copy code"); button.innerHTML = ''; // Append the button inside the scroll box box.appendChild(button); // Click event to copy content 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); }); }); }); });