How to Reduce Server Response Times (TTFB) on Wordpress for Improved SEO

Server response time (TTFB) is an important factor in SEO and should not be overlooked. Site owners need to understand what TTFB is, why it’s important, and how to measure and improve it. In this article, we’ll discuss how to reduce server response times on Wordpress for improved SEO. What is Server Response Time (TTFB)? Server response time (TTFB) is the amount of time it takes for a web server to respond to a user’s request....

February 28, 2023 · 5 min · chart

Install python 3.8 on Ubuntu

Sometimes you need a particular version of python, in this guide we will go over how to install python 3.8 on Ubuntu or any other specific version of Python on Ununtu. First install the prerequisites sudo apt update sudo apt install software-properties-common Add the official source for python to your sources list sudo add-apt-repository ppa:deadsnakes/ppa Run the python 3.8 install command sudo apt install python3.8 Verify python 3.8 is installed...

December 7, 2022 · 1 min · chart

ModuleNotFoundError: No module named 'distutils.cmd' [Fix ✔️]

How to resolve ModuleNotFoundError: No module named ‘distutils.cmd’ Check which version of python you are using Run python –version Check if pip can find dist tools for you version of python Python 3.9 example: python3.9 -m pip --version Install dist tools for your version of python Example for python 3.9 on Ubuntu/Debian: sudo apt install python3.9-distutils I got this error today with AWS SAM: ModuleNotFoundError: No module named ‘distutils.cmd’, here is how I fixed it....

October 11, 2022 · 2 min · chart

Optimizing Ubuntu Battery Life for 50%+ battery life gains🔋

Linux battery life on laptops is known not to be great. Due to the need to test on so many types of hardware, it isn’t feasible for distros to be optimized for it out of the box. Here are my notes on what I’ve done to optimize Ubuntu battery life on my laptop, while some of the install commands will be specific to Ubuntu / Debian derived distros, the tips will work on any distro....

October 6, 2022 · 7 min · chart

[✅Solved] release upgrade aborted: failed to downgrade packages

When trying to upgrade a Pop_OS machine with sudo pop-upgrade release upgrade I ran into the following error: Release upgrade status: release upgrade aborted: failed to downgrade packages Fix release upgrade aborted: failed to downgrade packages In order to fix the failed to downgrade packages error you’re going to have to upgrade manually by switching all the package sources to the newest version. Update apt sources Update all the apt sources manually by editing /etc/apt/sources....

August 16, 2022 · 1 min · chart

Quick bash script for testing URL status code

Here is a quick script I have written in Bash to get URL status codes. An application in a container I have been working was failing to retrieve a file from somewhere on the internet. I needed to determine if the issue was with the container(possibly networking related) or the application. I threw together this little reusable script utilizing curl.

December 17, 2020 · 1 min · chart