Author: disturbedrod

Demystifying AI: A Guide for Non-Technical People
Artificial intelligence (AI) is a term that's often shrouded in mystery and technical jargon. But at its core, AI is simply the ability of a computer [...]

Null propagation operator in C#
The null-propagation operator (?.) in C# is a powerful tool that helps you write cleaner and more concise code when dealing with potentially null obj [...]

Cooler colors with Lightroom Classic
You can add blue to your photo and make it have a cooler aspect, we start with the original image
Photo by sebastiaan stam on Unsplash
Make th [...]

Casting int to enum in C#
Sometimes you might come up with this, and the solution is simpler than what we thing
The first way is
YourEnum foo = (YourEnum)yourInt;
If [...]

Use ChatGPT to learn a new language
You can use ChatGPT to help you learn a new language, just use these prompts
Daily Vocabulary : Teach me 10 essential words in [language] related [...]

25 quotes about Hope
During hard times, words can give us hope, let's remember that things change, and hope is the only thing that keeps us moving forward
"Hope is th [...]

Numeric data types in C#
C# offers a variety of numeric data types to handle different kinds of numbers. These types are categorized based on whether they store whole numbers [...]

Difference between String (Uppercase s) and string (lowercase s)
In C#, string (lowercase s) and String (uppercase S) are actually the same thing. They are both aliases for the System.String class, which represents [...]

Create a case insensitive “Contains(string)”
C# is a case sensitive language, and there are occasions where handling strings can be difficult, especially when it relates to casing of the string [...]

Machine Learning: Making Computers Think Like Us
Imagine a computer that can learn from experience, just like humans. That's the basic idea behind machine learning, a fascinating field of artificial [...]