More than one DbContext was found. Specify which one to use. Use the '-Context' parameter for PowerShell commands and the '--context' parameter for doDec 22, 2023·1 min read
Roadmap of FlutterEmbarking on a journey to become a full-stack mobile app developer using Flutter and Firebase is a strategic move, given the high demand for such skills in the tech industry. This roadmap outlines a comprehensive 1-month plan, complete with daily goa...Apr 4, 2025·3 min read
'A connection was successfully established with the server, but then an error occurred during the login process. (provider: SSL Provider, error: 0 - TAug 26, 2023·1 min read
Exploring the Power of Relative Addressing and the Versatility of Subroutines in Assembly ProgrammingIntroduction: Assembly programming offers low-level control and efficiency in software development. This blog post delves into two fundamental concepts in assembly programming: relative addressing and subroutines. Understanding the intricacies of rel...Jun 15, 2023·2 min read
Program to Calculate the Sum of Ten Numbers in Assembly LanguageProgram to Calculate the Sum of Ten Numbers in Assembly Language Code [org 0x100] mov ax,0 mov bx,0 l1: add ax,[num1+bx] ;Addition will be stored in ax and in num1 array wise iteration will take place add bx,2 cmp bx,20 jne l1 mov [total],ax mov a...Jun 14, 2023·2 min read
Conditional Jumps in Assembly LanguageIntroduction: In assembly language programming, conditional jumps play a crucial role in determining the flow of a program based on the status of specific flags. These jumps provide the ability to create branching and decision-making within code, all...Jun 13, 2023·2 min read
Evaluating a Postfix Expression Using a Stack -Code C++Code #include <iostream> #include <stack> #include <cmath> // For exponentiation operator (^) using namespace std; // Function to evaluate a postfix expression double evaluatePostfixExpression(string postfix) { stack<double> operands; // Stack ...Jun 10, 2023·6 min read
Notes - Stack with Linked ListIntro In this blog, we will explore the implementation of a stack using a linked list and discuss the advantages it offers over other approaches. We will also delve into the practical applications of stacks, particularly in handling expressions and e...Jun 10, 2023·9 min read