Notes

White list an email in Gmail

This is a short guide to white list an email address which keeps going into spam. Note: This is not a fool proof guide, as the spam technology from Gmail does change and there are other factors which might need to be taken into consideration…

Various methods to improve rsync speeds

rsync is a command line tool to transfer data between a source and a destination. A destination or source can be remote. Avoid the following: Use the following in the command: $ rsync -avAXEWSlHh /source /destination --no-compress --info=progress2 --dry-run Test using --dry-run, then remove this…

Run wget in the background to download large files

wget is a powerful command to copy files from one server to another. However when downloading large files the following commands will help you continue your work or allow you to shutdown the command window and return at a later stage. Example $ wget -bqc…

Integrating Zaraz - a Privacy focused Tag manager

Zaraz was acquired by CloudFlare and integrated as a Free tool on all projects (This may or may not change). What exactly is Zaraz is best described below... Cloudflare Zaraz gives you complete control over third-party tools and services for your website, and allows you…

Optimizing PHP-FPM: A Step-by-Step Guide

PHP-FPM is a FastCGI process manager that is used to handle high traffic on web servers. However, sometimes this service can cause high load on servers itself. In this article, we will discuss the best practices for tuning PHP-FPM to handle high traffic. PHP-FPM is…