Clone or copy a mysql database
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…
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…
Connecting using alias: sudo isql -u SYSDBA -p 'YOUR_PASSWORD' YOUR_DB_ALIAS Connecting using local DB path sudo isql -u SYSDBA -p 'YOUR_PASSWORD' '/path/to/db/file.fdb' Connecting to remote DB: isql 192.168.0.195:YOUR_DB_ALIAS -user sysdba -password…
Recently I installed MySQL on one of my servers. Everything worked fine but hours later I realized the DBMS was down. I took a look in the log and I…