Optimizing images revisited

One of the most important workflows for our food recipe blog (JamilGhar) is image optimization. My wife uploads images to our GitHub repository and, when prodded, I run a bash script that decreases image sizes and removes extraneous information from the files. The script is a constant work in progress and I have a few posts (1,2) about it on here. Lately, I have been considering downloading the repository on a Raspberry Pi and running the script as a scheduled job....

September 27, 2021 · 3 min · Shariq Jamil

Copying or Migrating a WordPress Site

When my dad opened a new branch for his business, he opted for a new WordPress site which would be a copy of the site for the original location but with specific updated references like branch name, addresses and, phone numbers. He uses GoDaddy as his host but this guide would apply to most web hosting solutions. Copying WordPress files When migrating or copying your WordPress files, you will first need to navigate to your host’s File Manager or File Navigator....

August 9, 2021 · 3 min · Shariq Jamil

Refactoring/Find-&-Replace on a WordPress site

I help my dad maintain a WordPress site for his business. He recently opened a new location and needed a new WordPress site created for it. The only differences between the two sites are the branch name (ex. ‘Los Angeles’ instead of ‘San Diego’) and phone number (‘111-222-3333’ instead of ‘222-333-4444’). The site is not stored in version control so downloading the source code, using an IDE to run find/replace and pushing updates wasn’t a straight-forward option....

August 9, 2021 · 2 min · Shariq Jamil

Smarter image optimization

This blog has been a nice source of motivation to continue improving my code and development processes. In my previous post, I discussed the process of writing a Bash script to resize and optimize images for publishing to our family’s recipe blog. I mentioned that one improvement I could make is to automate the process of identifying which files needed to be resized. The original script I place large images into the “optimize” directory which are then backed up and processed when I run the following script....

March 31, 2021 · 3 min · Shariq Jamil

Optimizing Images for the Web

When we first started adding photos of food to JamilGhar, we did not think about image size. The average image we posted to the blog was between 2 and 8 megabytes and the resolution was over 3000 x 3000 pixels. The image below is an example. For most blogs, images should be less than 1000 pixels in the longest direction and preferably less than 100 kB. Featured or “hero” images can be up to 500 kB if used sparingly....

March 29, 2021 · 4 min · Shariq Jamil