Skip to content

Latest Posts

  • Published on

    Installing Docker Installing Docker-Compose Check for latest docker-compose version release at https://github.com/docker/compose/releases Executing Docker Command without Sudo Bonus: Easy SSH to your Virtual Machine Edit your .ssh/config in your home directory, add this to newline:

  • Published on

    Downloading the installer Go to https://aws.amazon.com/cli and download the installer for Windows machine. Installing through the installer double-click on the installer and do the installation like installing a normal free software with the default setting. Testing the installation You can open a command prompt (CMD) and type the following command to confirm the installation It … Continued

  • Published on

    Downloading Terraform binary Go to https://www.terraform.io/downloads and choose between 386 or Amd64 that suits your machine. I will stick with 386 for the demo I got terraform_1.2.8_windows_386.zip at the time. This archive contain only one file, which is terraform.exe and we will extract it. Extracting the binary to the program files folder Let’s create a … Continued

  • Published on

    Faker is a package in Python for generating fake data. Fake data package is so useful for generating data for testing and mockup. Package installation Initiation You can create a python file and name it with anything you want like main.py, but don’t name it with faker.py or it will raise an exception error. Here … Continued

  • Published on

    Prerequisites Have docker and docker-compose installed on your machine. Make sure the command are executable in your terminal. At least 500 MB of memory is allocated for running the service. Getting the Docker-Compose file You can get the latest docker-compose.yml from the LocalStack official GitHub repository. Here is the docker-compose file content available on Aug 20, 2022: You can … Continued

  • Published on

    Prerequisites You can use any python interpreter you want, such as native python script in your local machine, anaconda/jupyter notebook, or even google colab. We are going to use the built-in library datetime in python, here is the initial library import for the cases: and any date and time formatting refers to the official docs. … Continued