abhisekh.inIntro to Cloud Formation - Infra as Code CloudFormation is an Infrastructure as Code (IaC) service where we define the resources we need to deploy in AWS in a coding manner. Generally, CloudFormation uses JSON or YAML for declaring resources3d ago路2 min read
abhisekh.inGit & GitHub in 5 Minutes: Stop Emailing Code! 馃殌Ever had files named final_code.js, final_code_v2.js, or final_code_REALLY_final.js? 馃樀 We've all been there. It's a messy way to track changes and a nightmare for teamwork. Let's fix this forever with two tools: Git and GitHub. Part 1: Git - Your P...Jul 18, 2025路2 min read
abhisekh.inPrompt Caching - Simple ExplanationI have come across Prompt Caching Technique when learning about RAG Architecture. Overview: Prompt Caching is technique where the System stores the repetitive sentences/words from our Prompts to save time and Cost. Mainly the prompts contain mostly ...May 5, 2025路4 min read
abhisekh.inUnderstanding Dynamic Variable Allocation in PythonI was always curious about how Python assigns values under the hood to the same variable. Example Let's say we declare: a = 2 print(type(a)) # This will give INT as a response a = 2 a = "Hello World" print(type(a)) # This will give String as a res...Mar 25, 2025路2 min read
abhisekh.inReturn Game: Traditional vs. High-Order Array Functions!Hey there, curious folks! Ever wondered how traditional loops differ from those cool higher-order array functions in JavaScript? Allow me to share a surprising revelation I stumbled upon while diving into arrays. I used to think that traditional for ...Nov 30, 2023路2 min read