Misc - Pong for TI-84 (ti-basic)
Introduction In this tutorial, I’ll guide you through the process of creating a simple Pong game for the TI-84 calculator using TI-BASIC. Pong is a classic arcade game that involves two paddles an...
Introduction In this tutorial, I’ll guide you through the process of creating a simple Pong game for the TI-84 calculator using TI-BASIC. Pong is a classic arcade game that involves two paddles an...
Introduction Checkmk is a powerful open-source monitoring solution that allows you to keep track of the health and performance of your IT infrastructure. In this guide, we’ll explore advanced conf...
Steps These are the steps to increase the disk size of the VMs in Proxmox Add new disk in Proxmox VE UI Partition the new disk Create a new physical device (using pvcreate) Extend the ex...
Installation Install Certbot’s Apache package with apt: sudo apt install certbot Configuration Now use Certbot to obtain the SSL certificate: sudo certbot --apache -d your_domain -d www.your_...
Why? When installing proxmox from iso its give a lot storage to pve-data which is a volume-storage and not a lot for pve-root, and pve-root it’s where your filesystem is mounted. Check current st...
Introduction These are the steps to remove a node from an existing Proxmox cluster. Warning: This tutorial may only be used if you want to delete permanently a node from an existing Proxmox cl...
Introduction Proxmox Virtual Environment (Proxmox VE) is a powerful open-source platform for virtualization that combines two virtualization technologies: KVM (Kernel-based Virtual Machine) for vi...
Installation Lets start by creating MySQL user and a database for WordPress: mysql -u root -p mysql> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; mysql> ...
Installation Use apt to install phpMyAdmin and additional complimentary packages: sudo apt update sudo apt install phpmyadmin php-mbstring php-gettext This will ask you a few questions in order...
Installation Use apt to install PHP. In addition, include some helper packages this time so that PHP code can run under the Apache server and talk to your MySQL database: sudo apt install php lib...