Install MariaDB 11.x on Linux

Install MariaDB 10.8 on Ubuntu 20.04

Follow through this guide to learn how to install MariaDB 10.8 on Ubuntu 20.04. MariaDB 10.8.2 is the current RC release version of MariaDB. Install

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

Install phpLDAPadmin on Rocky Linux 8

Install phpLDAPadmin on CentOS 8

In this guide, we are going to learn how to install phpLDAPadmin on CentOS 8. phpLDAPadmin is web application written in PHP for administering LDAP

Where to Sell CS:GO Skins in 2023

Where to Sell CS:GO Skins in 2023

You’ve probably heard of people making thousands of dollars from selling CS:GO skins and thought to yourself, “Hey! I could do that”. Well, bucko, it

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