Building a Multimodal AI Chatbot with Flask, Transformers, and BLIPIntroduction In today’s rapidly evolving AI landscape, combining multiple modalities—such as text and images—into a single system offers more intuitive and dynamic user interactions. This article guides you through the process of building a lightweig...Aug 1, 2025·3 min read
Troubleshooting Git Issues: Removing and Re-adding a SubmoduleHow I Fixed Frontend Folder Tracking in a Git Repository Git submodules are powerful but can introduce complications when improperly managed. In this article, I’ll walk through a real-world scenario where I had to: Remove a frontend submodule that w...Apr 3, 2025·3 min read
emr hospitalStep 1: Create a Folder on Desktop Create Folder: Right-click on your Desktop and select New > Folder. Name the folder MyFullStackApp (or any name you prefer). Step 2: Clone the GitHub Repository Open Command Prompt (CMD): Press Win + R, typ...Feb 23, 2025·4 min read
Day 2 - EMR taskHere are the instructions you provided, formatted for easy reading: Task 1: Using the Existing React App (front-end) and Building the Patient Form Step 1: Open Command Prompt Press the Windows key + R, then type cmd and hit Enter. This will open Co...Jan 22, 2025·5 min read
PHP: Starting outDay 1 Task: Introduction to PHP & Setup Goals: Understand what PHP is. Set up the development environment (local server). Write your first PHP script. Step-by-Step Tasks: 1. Install XAMPP/MAMP (Development Environment) Download and install XAM...Jan 6, 2025·14 min read
Stack Data StructureA stack is a linear data structure that follows the Last In, First Out (LIFO) principle. The last item added to the stack is the first one removed. It supports the following primary operations: Push: Add an element to the top of the stack. Pop: Rem...Dec 19, 2024·7 min read
Algorithms: Binary Search AlgorithmConcept:Binary Search is an efficient algorithm to find the position of a target element in a sorted array. It works by repeatedly dividing the search range in half. If the target is not found in the middle, it determines whether to search in the lef...Nov 21, 2024·7 min read