LLM Inference Explained: Runtime, Infrastructure, and ToolingWhen we hear about Generative AI, we often hear about model training, GPUs, LLMs, RAG, agents, and AI applications. But there is another important part that is becoming increasingly important as AI apSep 13, 2026·10 min read
Day42-Terraform ModulesTerraform Modules Terraform Modules are a way to organize, encapsulate, and reuse Terraform configurations. They provide a way to define and package infrastructure components or resources in a modular and reusable format. Here's an explanation of Ter...Oct 10, 2023·4 min read
Day 41 - Terraform with AWSAWS CLI installed AWS CLI (Amazon Web Services Command Line Interface) is a command-line tool provided by Amazon Web Services to interact with various AWS services and manage your AWS resources from your local terminal or command prompt. With the AWS...Oct 9, 2023·3 min read
Day 40 - Terraform Variables🔹Variables and Outputs Input Variables: These are used to accept input values from users or from other modules. Input variables are typically defined in variable files (e.g., variables.tf) and can be set when calling a module or executing Terraform...Oct 6, 2023·2 min read
Day 39- Terraform🔥Task 1: terraform init: This command initializes a Terraform working directory, downloading the necessary providers and modules. It sets up the environment for your Terraform configuration. terraform init -upgrade: It is used to upgrade the Terrafo...Oct 5, 2023·2 min read
Part2-Linux For Befinners🔹Linux SU and SUDO Commands In Linux, the su and sudo commands are used to switch users or execute commands with elevated privileges. Here's an explanation of both commands: su (Switch User): The su command allows you to switch to another user acc...Oct 5, 2023·26 min read
Day 39 - Terraform🔥🔹What is Terraform? Terraform is an open-source Infrastructure as Code (IaC) tool used for automating and managing cloud infrastructure. It allows you to define and provision infrastructure using code. Terraform helps you create and manage all the t...Oct 4, 2023·4 min read