@Abhisekh
Sr Software Engineer @ Wipro Technologies
Connect with me over LinkedIn for more info.
Jul 18, 2025 路 2 min read 路 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...
Join discussion
May 5, 2025 路 4 min read 路 I 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 ...
Join discussion
Mar 25, 2025 路 2 min read 路 I 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...
Join discussion