How to Bulk Move All Email from One Account to Another using the CLI
If you find yourself in a position where you need to sync all emails from one account to another, then you can use the imapsync command-line tool to …
In-depth guides, insights, and best practices for modern software engineering
If you find yourself in a position where you need to sync all emails from one account to another, then you can use the imapsync command-line tool to …
You can download and install the AWS CLI on Linux as follows:
curl …
Read Article →
If you need to reboot, or restart the networking interface on your Mac, by using the CLI, then you can issue the following commands:
If you get the following error:
fatal: unable to access <git>: SSL certificate problem: self signed certificate in certificate chain
..when …
Read Article →Ever needed to extract the files in a Docker container?
Docker provides the save sub-command.
The examples …
Read Article →If you’ve run into this dreaded error:
Error response from daemon: No such image:
Then you can solve it as follows:
Perform a docker pull …
When you launch an EC2 instance, you can use the user-data to bootstrap a instance creation script.
We can use the following code to start a web …
Read Article →Ever searched for kubectl update config from aws eks and needed a quick result?
Make sure that you have valid AWS …
Read Article →Java provides many ways to generate random strings.
public void generatingRandomAlphanumericString_ApacheCommons() { …
Read Article →
Python gives the ability to generate random strings out of the box, by using a combination of the string and random modules.
import string
import …
Read Article →
If you need to generate a random number or string in Terraform, then you can use the following:
resource "random_id" "myrandom" { …
Read Article →
If you have received the following error while trying to issue commands to kubectl:
Unable to connect to the server: dial tcp: lookup
Then it may be …
Read Article →