Parallels: How to resize your Windows VM disk space
Let's go straight into the subject: Shut down your VM Delete any Snapshots you might have done on the past Go to VM settings, Disk Drive Hit the button to…
Let's go straight into the subject: Shut down your VM Delete any Snapshots you might have done on the past Go to VM settings, Disk Drive Hit the button to…
It's quite frustrating when something unexpectedly stops working, right? There are many topics out there on the subject but for some reason they don't seem to work as expected. So let's understand…
Let's go straight into the subject matter. Here are the steps to create a copy of a existing database. 1. Open mysql CLI $ mysql -u root -p 2. List…
My server hosts multiple HTTPS web sites and recently I had an issue with my letsencrypt renew service. I verified that my renew cronwas still there available on my server and it…
Typescript allows us to create subsets of existing interfaces. Let's take an example: You have a function that return IUser IUser has many fields among them name and lastName.…
Install Ubuntu GUI* *Graphical User Interface Setup droplet $ sudo apt-get update For XFCE4 GUI (Preferred in my case) $ sudo apt install xfce4 xfce4-goodies For Ubuntu Desktop GUID $…
If you are reading this article that's because you want a quick answer. Let's go straight to it. How much as Kw/h costs in your region? Power is priced in…
Basic // Initialises a repo on current directory $ git init // Lists modifications git status // Stage modifications $ git add {file1} {file2} {filex} $ git add . or…
Introduction There's a big different between import {MatDialogModule} from '@angular/material' and import {MatDialogModule} from '@angular/material/dialog' Let's get started Recently I decided to dig into the output of my dummies projects…