How to migrate a WordPress site to a new host There are several ways to migrate a WordPress website to a different hosting company. The easiest method we found is the following: Let’s say you want to migrate your site from Hosting Company A To Hosting Company B. Your site domain name is: mysitename.com SECTION A -- IMPORTING THE WORDPRESS SITE FROM COMPANY A TO … [Read more...]
How To Delete WhatsApp SENT Messages
Have you ever sent a message to someone or to a group and wish you never did? Have you ever wished for a way to delete those sent messages? WhatsApp now allows you to delete sent messages. You have only seven minutes after you send a message to be able to delete it. Here is how: To Delete WhatsApp SENT messages for everyone Deleting messages for everyone allows you to delete … [Read more...]
How to Stop Git From Asking For Your SSH Key Passphrase on Mac
If you have created SSH keys to use on GitHub, Git continues to ask you for your passphrase every time I try to do a pull or a push. So one way to stop Git from asking for your SSH Key passphrase is to add your private SSH Key as follows: First start the SSH agent with: eval $(ssh-agent) Then add your private key to it: ssh-add To save your key … [Read more...]
Resources to Learn Kotlin
Kotlin is an open source language with its own documentation and community, so we don't provide documentation about the actual language here. If you're new to Kotlin, we recommend you check out the following resources. Kotlin Documentation Kotlinlang.org: The official Kotlin website. Includes everything from a guide to basic syntax to the Kotlin standard library … [Read more...]
Kotlin Basic Syntax
Defining packages Package specification should be at the top of the source file: package my.demo import java.util.* // ... It is not required to match directories and packages: source files can be placed arbitrarily in the file system. Defining functions Function having two Int parameters with Int return type: fun sum(a: Int, b: Int): Int { return a + … [Read more...]