The Impact of a Slow Website

Often I engage with clients and they have strong views on the design of the website, and wanting to put content that slows the website for little to no real value. Slow Websites have real negative impacts that have been researched and recorded. This is a basic outline for my clients. Short Story Your website … Read more

Create React App – Google Workbox Override without ejecting

https://karannagupta.com/using-custom-workbox-service-workers-with-create-react-app/ This article began my journey of overriding CRA’s workbox configuration without ejecting. https://developers.google.com/web/tools/workbox/guides/advanced-recipes https://developers.google.com/web/tools/workbox/modules/workbox-google-analytics Nice overview of caching strategies https://web.dev/reliable/runtime-caching-with-workbox Used this to Setup the different Routes https://developers.google.com/web/tools/workbox/guides/common-recipes

Set Featured Image Automatically using ACF

Create a category image using ACF, field  = category_image This function will automatically (on saving the post or updating) look for the FIRST category assigned to it Then it will lookup that categories image and assign as a Featured Image to the Post

Useful Web Design Links

Found the following links useful https://www.heropatterns.com/ A collection of repeatable SVG background patterns for you to use on your web projects https://www.kisspng.com/ – collection of PNG Files https://simpleicons.org/ – FREE SVG icons for popular brands https://iconsvg.xyz/?ref=producthunt?ref=mdbootstrap.com https://cssgradient.io/gradient-backgrounds/ – Gradient backgrounds

Delete a Folder via Command Line Interface

DEL /F/Q/S *.* > NUL /F — forces the deletion of read-only files. /Q — enables quiet mode. You are not ask if it is ok to delete files (if you don’t use this, you are asked for any file in the folder). /S — runs the command on all files in any folder under the selected structure. … Read more