How to setup more than one Github account with SSH keys 馃棟 on same computer

Hi there 馃憢 In this blog we will see how to setup 2 Github accounts on a single computer with 2 SSH keys. I will be using Linux as my OS 1. Generate SSH Key Pair馃攽 Open Terminal Generate the key pair using ssh-keygen $ ssh-keygen -t ed25519 -C "[email protected]" You will be prompted to enter the filename > Enter a file in which to save the key (/home/user/.ssh/id_ed25519):[Press enter] If you press enter without writing the filename the file name will be default i....

December 4, 2021 路 2 min 路 Ukasha Sohail

Use S3, DynamoDB and SQS with Localstack 鈽侊笍

Hi there 馃憢 In the last blog I went through steps to run localstack on your machine. LocalStack: The Ultimate Tool for Local AWS Cloud Development and Testing I鈥檒l explain how to utilize some of the well-known features on localstack. The process is straightforward; you only need to include an additional parameter to indicate the location of your localstack. TL;DR Just add --endpoint-url=http://localhost:4566 to any S3 command you use Using S3 in localstack S3 is a popular object storage service provided by AWS....

April 16, 2023 路 2 min 路 Ukasha Sohail

LocalStack: The Ultimate Tool for Local AWS Cloud Development and Testing 鈽侊笍

Hi there 馃憢 Developers can emulate a variety of AWS cloud services and APIs locally on their own computers using the open-source project known as LocalStack, which eliminates the need for real cloud infrastructure. With the help of LocalStack, developers will be able to create, test, and deploy their apps more quickly in a local development environment that is as similar to a real cloud environment as feasible. A large number of AWS services, including Lambda, S3, DynamoDB, SQS, SNS and others, are currently supported by LocalStack鈥檚 ability to emulate them....

February 26, 2023 路 3 min 路 Ukasha Sohail