Preparing for AWS Certified Solutions Architect Associate

I will probably go here short here since the majority of the information is readily accessible on the internet now. The AWS Certified Solutions Architect Associate (AWS SAA) certification is a highly regarded credential for individuals seeking to validate their expertise in designing and deploying scalable, fault-tolerant, and cost-effective applications on Amazon Web Services (AWS) … Read more

Understanding Logarithms in Algorithm Analysis: The Power of O(log n)

A logarithm is a mathematical function that represents the inverse operation to exponentiation. It helps solve equations of the form “x raised to the power of y equals z,” where the logarithm seeks to find the value of y when given x and z. In other words, it helps you find the exponent (power) to … Read more

Exploring CQRS and MediatR in Software Development

CQRS (Command Query Responsibility Segregation) and MediatR are architectural patterns commonly used in software development, particularly in the context of building complex applications. While they are not directly related to each other, they can be used together to achieve separation of concerns and improve the maintainability and scalability of an application. CQRS:CQRS separates the responsibilities … Read more

Deploying Ubuntu VM in Proxmox using Terraform

To deploy to Proxmox using Terraform, you can follow these steps: Setting up your Terraform environment Alternatively for windows user, you can use chocolatey to install terraform. Verify the installation by using terraform version If the command displays the Terraform version, then the installation was successful. Now comes the fun part. Create a folder and … Read more

Essential DevOps tools that are indispensable

Terraformer Terraformer is an open-source tool developed by Google Cloud Platform (GCP) that allows you to generate Infrastructure as Code (IaC) templates from existing cloud resources. It simplifies the process of migrating infrastructure to popular IaC providers such as Terraform, Kubernetes, and others. By utilizing Terraformer, users can easily convert their infrastructure configurations into code, … Read more