Blog Posts

[Solved] fatal: Could not read from remote repository with Git

September 22, 2022

If you receive the following error when trying to clone a Git repository:


Read More

How to Install Homebrew on a Mac

September 21, 2022

Prerequisites You should have some familiarity with the Mac Terminal application since you’ll need to use it to install Homebrew.


Read More

How to create an AWS EC2 instance in CloudFormation

September 20, 2022

Create an EC2 Instance in CloudFormation If you need to create an EC2 instance in CloudFormation, then you can do the following:


Read More

How to Run Commands on an AWS ECS Cluster Task or Container

September 19, 2022

If you need to run a command, or set of commands on an AWS ECS cluster container, then you can do the following:


Read More

Understanding the Network Modes in AWS ECS

September 18, 2022

If using the EC2 launch type, the allowable network mode depends on the underlying EC2 instance’s operating system.


Read More

How to Enable ContainerInsights on AWS ECS from the AWS CLI

September 17, 2022

If you need to enable Container Insights for an ECS cluster, by using the AWS CLI, then you can do the following:


Read More

AppMesh and ECS with Imported ACM certificates on Envoy Sidecar through EFS

September 16, 2022

Summary This guide showcases the ability to use imported certificates from a third party provider (e.


Read More

How to Increase the disk size on a Cloud9 instance

September 15, 2022

If you need to increase the disk size of a Cloud9 instance, you can run the following script directly from the terminal in Cloud9:


Read More

How to Get the Instance Profile attached to an AWS EC2

September 14, 2022

If you need to get the IAM Role information from the attached EC2 role directly, you can do the following:


Read More

How to Create an AWS ECR Repository in AWS CLI

September 13, 2022

If you need to create an Elastic Container Registry (ECR) Repository from the AWS CLI, you can do the following:


Read More

How to Scale Out an AWS ECS Service

September 12, 2022

When you create the Amazon ECS service, it includes three Amazon ECS task replicas.


Read More

How to Retrieve AWS ECS Cluster Information

September 11, 2022

For more information about the Amazon ECS cluster, run the following command.


Read More

Types of communication in Amazon EKS

September 10, 2022

There are multiple types of communication in Amazon EKS environments.


Read More

[Solved] Read timeout on endpoint URL: “https://lambda.[region].amazonaws.com/2015-03-31/functions/[function-name]/invocations”

September 9, 2022

If you get the following error: Read timeout on endpoint URL: "https://lambda.


Read More

How to Remove a Passphrase from Certificate Key

September 8, 2022

If you have a Certificate Key that includes a Passphrase and you need to remove it, potentially to use it with AWS App Mesh, then you can do the following:


Read More

How to get Python logger to Print to std out

September 7, 2022

If you use Python’s logger as follows: import logging logger = logging.


Read More

How to Convert a String to an Integer in C

September 6, 2022

If you need to convert a String to an Integer in C, then you can do one of the following:


Read More

How to Convert an Integer to a String in C

September 5, 2022

If you need to convert an Integer to a String in C, then you can do one of the following:


Read More

How to append to an Array in Elasticsearch using elasticsearch-py

September 4, 2022

If you are using the Official ElasticSearch Python library (Docs), and you want to create an index:


Read More

How to Copy Text to the Clipboard in Python

September 3, 2022

If you need to Copy Text to the Clipboard using your Python application code, then you can do the following:


Read More