Install NetBeans IDE

Install NetBeans IDE on Debian 11

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

install wine ubuntu/debian

Install Wine on Ubuntu 22.04

Follow this tutorial to learn how to install Wine on Ubuntu 22.04.  Wine is a free and open-source software which provides the ability to run Microsoft

install processwire cms ubuntu

Install ProcessWire on Ubuntu 22.04

Follow through this guide to install ProcessWire on Ubuntu 22.04. ProcessWire is an opensource PHP based content management system and framework. Install ProcessWire on Ubuntu

Install phpMyAdmin on Ubuntu 20.04

Install phpMyAdmin on Ubuntu 20.04

In this guide, we are going to learn how to install phpMyAdmin on Ubuntu 20.04. phpMyAdmin is a free and opensource application written in PHP

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