Creating a Tone of Voice Document with ChatGPT

Creating a Tone of Voice Document with ChatGPT

If you want to keep a standard tone through out your website and communications then a tone of voice document will help with this. Firstly use this this GPT https://chatgpt.com/g/g-FmzvmSPkI-tone-of-voice-gpt and paste in a copy of an article you would like to analyse...

How to add an email account using IMAP/SMTP on iPhone 14

How to add an email account using IMAP/SMTP on iPhone 14

1. Open Settings Tap the grey Settings app (⚙️). 2. Go to Mail settings Scroll down and tap Mail, then tap Accounts 3. Add a new account Tap Add Account, then tap Other, and select Add Mail Account 4. Enter your basic account info Fill in these fields: Name: the name...

Xcart 4 Error codes

Xcart 4 Error codes

X-Cart 4.1.x Error ID Codes List – Based on X-Cart 4.1.12 Error ID 2 (admin/editor_mode.php):Attempted to access Editor mode without being logged in or in Editor Mode Error ID 3 (admin/editor_mode.php):Attempted to access editor_mode.php without being in Editor Mode...

Installing Docker and Docker Desktop on Linux Mint

Installing Docker and Docker Desktop on Linux Mint

These instructions are merged from https://forums.linuxmint.com/viewtopic.php?t=414617 and https://docs.docker.com/desktop/setup/install/linux/ubuntu/ # Install required packages sudo apt-get update sudo apt-get install ca-certificates curl gnupg # Add Docker's...

How To Open Website On Startup with a Raspberry Pi

How To Open Website On Startup with a Raspberry Pi

The following instructions have been used to startup chrome from https://smarthomepursuits.com/open-website-on-startup-with-raspberry-pi-os/ On your pi you can edit the file ~/.config/lxsession/LXDE-pi/autostart using the following command in terminal sudo leafpad...

Creating a SQL based on the products export CSV in Shopify

Creating a SQL based on the products export CSV in Shopify

I used chatgpt to create this SQL based on the prompt "can you create a SQL create table based on this data" I additionally copied and pasted the header and the first 4 rows of data in the prompt. CREATE TABLE products ( handle VARCHAR(255) NOT NULL PRIMARY KEY, title...

how to increase increase by a percentage and round to the nearest 5p

how to increase increase by a percentage and round to the nearest 5p

select pr.*, round((pr.price * 1.2), 2 ) as 'round_price_2', round( (pr.price * 1.2) / 0.05, 0) * 0.05 as 'new_price_2_05' from xcart_pricing as pr where pr.membershipid = 0 use round( (pr.price * 1.2) / 0.05, 0) * 0.05 to round to the nearest 5p update xcart_pricing...

Driving School Price Comparison using wpDataTables

Driving School Price Comparison using wpDataTables

How to create a searchable and sortable data table in wordpress using wpDataTables Lite Plugin. I have chosen this plugin as the lite version can fetch data from a publicly hosted CSV file. As part of this setup I have created a database table with columns company,...

Reading a CSV and calling ChatGPT and outputting to a New CSV file

Reading a CSV and calling ChatGPT and outputting to a New CSV file

In this example I am going to use python to read a CSV with 1 column headed 'country' and then for each country in the file it will write a new CSV file with the information returned from ChatGPT3 to create a country and description CSV file. file1.csv should be kept...

Adding a HTML Sitemap to a Shopify Store

Adding a HTML Sitemap to a Shopify Store

I have found that themes generally use links to prodct pages that are not the canonicalised url to the product on the store page. So this is to allow the breadcrumb to be dynamic and show based on the route they took to the product page.

Using aspect Ratio in CSS

Using aspect Ratio in CSS

Aspect Ratio in CSS refers to the proportional relationship between the width and height of an element. It represents the ratio of the element's width to its height. For example, an element with an aspect ratio of 16:9 would have a width that is 16 times larger than...