“export ‘createWebHistory’ was not found in ‘vue-router’

By | March 5, 2021

Are you getting the error “export ‘createWebHistory’ was not found in ‘vue-router’ or “export ‘createRouter’ was not found in ‘vue-router’? A quick search on the Interweb will show that you have run instead of npm install vue-router will install the latest “tagged” version which is 3.5.1. Next is a tag which installs v4.0.4. Alternatively you… Read More »

Less bang for your buck with TPG

By | March 1, 2021

This is what TPG was offering back in October 2020. This is what they are offering now: You can see that the small plan discount for new customers is now only for 3 months and not 6 months. You do get an extra 2GB of data but that is neither here nor there.

How to easily remember Vue shortcuts

By | January 27, 2021

If you’ve come across the @ and : symbol in Vue and you have forgotten what they mean, then there is an easy way to remember them. Imagine @ looking similar to an ‘o’ (aka the letter). This letter is contained in v-on. Therefore v-on can be replaced with @. We can also get rid… Read More »

How to run MySQL in Docker?

By | November 15, 2020

Getting MySQL up and running in Docker is very easy and fast but there are a few subtle things to note. Firstly there are 2 apparent options. or These handful of words are deceptively simple but you really need to understand what is happening under the covers. docker run mysql Firstly, the docker run mysql… Read More »

Docker pull mysql v mysql/mysql

By | November 15, 2020

Have you ever read articles where sometimes you see the docker command and sometimes and thought to yourself what is the difference? You can find out the difference by going to Docker Hub at: https://hub.docker.com/r/mysql/mysql-server v https://hub.docker.com/_/mysql Firstly, mysql is labeled the “official image” with over 1 billion downloads. The mysql/mysql-server is an “Optimized MySQL… Read More »