Selenium + Python: My First Automation Script (Day 1)learning automation day 1 Sep 22, 2026·1 min read
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
'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
How To Install Entity Packages in .Net ProjectsSetting Up Entity Framework in Your ProjectAug 22, 2023·2 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