Notes

Resources for Mautic Open Source Marketing Automation

This article will provide links to different resources to enhance your Mautic integrations. A short info about the tool is also provided. Should you require assistance with any Mautic setup and or troubleshooting, do not hesitate to get in touch. Mautic enables brands to integrate…

Transforming text using CSS text-transform

The CSS property text-transform is very useful when it comes to standardising the look of headings and various other elements from inconsistencies when content has been added to a website. The rule below will capitalize (title-case) all words in the sentence. <p>Lorem ipsum dolor sit…

Image srcset & sizes with Cloudflare Images

There are various ways to handle responsive images, one of the more time consuming ways is to add images usingĀ srcset andĀ sizes. This method has the advantage that you then serve the right image size based on the device resolution. The downside is that you are…

How to check for disk errors on Linux

Keeping your disks healthy is the number one method to prevent data loss. The commands below will assist with ensuring this does not happen. As always, taking backups, or at least having backups available is important to ensure your data is kept secure. You can…

htaccess for WordPress - Speed Optimization

It always seems there is an overkill to optimize a WordPress site with way too many plugins. This often results in a site loosing speed rather than gaining speed. Often the most simple and elegant solution is to take advantage of server technology, which already…

Moodle CLI Commands for Administrators

Command Line Interface (CLI) commands are invaluable for Moodle administrators, particularly for those with experience in Linux environments. CLI commands simplify tasks such as upgrades, maintenance, configuration, and troubleshooting. This guide provides the latest information and examples for Moodle CLI commands, targeting Moodle administrators with…

Mobile device detection using PHP and USER-Agent

When designing responsive websites, the main focus is using the template framework which has been chosen for the site, eg bootstrap to create views for different devices. This works to a certain extent but also creates a lot of code bloat which may load unnecessarily.