Category Archives: Uncategorized

What is the difference between apt-get and apt?

By | July 3, 2023

Both apt-get update and apt update are commands used to update the package lists on a Debian-based Linux system, such as Raspberry Pi OS (formerly Raspbian). They perform essentially the same function, which is to synchronise the local package list with the repository servers to ensure that the latest package information is available. The main… Read More »

What are .js.map files

By | August 7, 2021

Stack overflow has a great answer to this question that can be found at: https://stackoverflow.com/questions/21719562/how-to-use-javascript-source-maps-map-files Please read the original source for more info as it is copied here for convenience only. The .map files are for js and css (and now ts too) files that have been minified. They are called SourceMaps. When you minify a file, like the angular.js file, it takes… Read More »

How to delete Microsoft AutoUpdate on Mac

By | July 11, 2021

The Microsoft AutoUpdate on Mac OSX is so annoying, and there is no quick way to remove it or disable it. The fact that this option is not available in the menu is ridiculous. To actually remove it, you’ll have to navigate to the /Library/Application Support/Microsoft/MAU2.0 folder and delete the app from there.

“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 »