In computer science, searching for a particular element in a data structure is a very common task. One of the simplest ways to search for
Category: Code stuffs
Building a Chrome Extension to Increase Productivity: Toggle Password Fields and Copy Passwords to Clipboard
If you’re someone who frequently fills out online forms, you’ve probably encountered password fields that are hidden behind dots or asterisks. While this is a
How to solve “Login failed due to trigger execution”?
Lately, I was trying to run the codemap on my visual studio and got the error “Login failed due to trigger execution”. Details were something
Full details on Struct and Class
Difference between Struct and Class Struct Class Struct are value types. Classes are of reference types. Struct are stored on the stack. Classes are stored
How to change the order of columns in SQL?
In order to maintain the order of columns in SQL we require 2 steps Disable the “Prevent saving changes that require the table re-creation“ Open
Rust : Convert String to Integer
Convert string to integer Do you want to convert string to integer? Here are the methods to extract integer value i from its string representation s.“1234” to 1234
Get the input in Rust
I started learning Rust lately. Kind of interesting but more to learn. Here is the program that help to get the input from user in
ProjectEuler : Multiple of 3 And 5
Multiple of 3 And 5: Q1 From ProjectEuler.NET Description If we list all the natural numbers below 10 that are multiples of 3 or 5,
Runtime Compile C# Code
Well have you ever wondered to write the C# code in string and execute them? In this blog I will tell you how to Runtime