Tech

Installing Python 2 on macOS Using Pyenv

Python 2 may be considered outdated, but there are still scenarios where you need it. If you’re a macOS user, here’s a straightforward guide to help you install Python 2 using Pyenv, a powerful Python version management tool. Before we begin, ensure you have Homebrew (brew) installed, as it simplifies the process. Prerequisite: Homebrew (brew)…

Scala

Managing Dependencies in Scala: Writing Dependencies.scala

Managing dependencies is a crucial aspect of any Scala project. In this blog, we’ll explore a useful technique for managing dependencies by creating a separate Scala file called Dependencies.scala. This approach enhances code readability, maintainability, and allows for better organization of your project’s dependencies. Why Separate Dependencies? In typical Scala projects, dependencies are declared directly…

Scala

Understanding List Operators in Scala: ::: vs. ::

When working with lists in Scala, you’ll often encounter the ::: and :: operators. These operators are essential for list manipulation, but they serve different purposes. In this blog, we’ll explore these operators, their use cases, and how they impact your Scala code. ::: Operator The ::: operator is used for list concatenation. It combines…

aws

Load Balancers in AWS

This blog is a part of my journey “Embarking on the AWS Solution Architect Associate SAA-CO3 Certification Journey” Table of Content Introduction Health Checks Types of Load Balancers on AWS Classic Load Balancers (CLB) Application Load Balancer (ALB) Network Load Balancer (NLB) Gateway Load Balancer Sticky Sessions Cross Zone Load Balancing SSL – Server Name Indication…