Blog

Thoughts on development, infrastructure, and the tools I use.

82 posts tagged "tutorial"

Deploying a FastAPI app to Kubernetes with health probes

Health probes can be configured in Kubernetes deployments to monitor if our pods are working as expected and are ready to receive traffic.

Switching a Zebra printer to Thermal Transfer Mode with ZPL

Configure the print method of your Zebra printer using ZPL commands. Set Direct Thermal or Thermal Transfer, and persist the change between boots.

Configure static IP address on Netplan

Every server needs a static IP address to work as expected. On Ubuntu, you have to use Netplan to configure a static IP address.

Convert VirtualBox VDI disk to VMware VMDK disk

Using a utility from QEMU you can convert a VM drive to another disk format, so you can boot it using another hypervisor.

Backup S3 buckets using rclone

Backing up our files is a crucial task that we don't consider until it's too late. Using rclone, we can make a backup of all our data stored in S3 buckets.

Add an NFS mount point to an Ubuntu Server

Learn how to add an NFS mount point to an Ubuntu server to access your files stored in a remote location.

Remove local and local-lvm from Proxmox

When using Proxmox you might want to remove local and local-lvm storage, follow these steps to be able to claim that space back.

Registry CRUD actions on Windows Group Policy

Windows Group Policy provides four actions for interacting with the computer registry. Learn the difference between them!

Disabling Fast Boot via Windows Registry

Windows, by default, enters a deep hibernation when shutting off. You can disable it by modifying the computer registry.

Testing Laravel middleware with Pest

Learn how to test a Laravel middleware using Pest without too much effort.

Trust any proxy in Laravel

Configure Laravel to trust any proxy when placed behind a load balancer.