Category: Programming, Data Science, & Machine Learning
-
C#: Post 4
Philippians 4:6 “Don’t worry about anything, but in everything, through prayer and petition with thanksgiving, let your requests be made known to God.” Basic String Formatting in C# C# code often takes preexisting values and creates new values that are displayed, saved in files, and sent across various networks. C# provides several ways to combine…
-
C#: Post 3
Assigning & Reassigning — The Value of a Variable As demonstrated above, variables can be assigned values. These values can then be reassigned, new values. However, this code also demonstrates the value being “reassigned” back to its original value. “To avoid the possibility of an unassigned local variable, it is recommended that you set the…
-
C# : Post #2
Store & Retrieve Data using Literal & Variable Values in C# Char Literal A literal value, is a hard-coded value. It is known as a constant. This value never changes. This creates a char literal, as the ‘b’ is surrounded in single quotes. The term char = character. The above code will produce the following…
-
.NET Overview
1 Corinthians 12:14 (ESV) “For the body does not consist of one member but of many.” This post provides an overview of the .NET developer platform. .NET is an open-source developer platform utilized for building applications on various operating systems. The developer platform is made up of languages & libraries. .NET languages (1) C#: Object-oriented…
-
C# : Post #1
We will start these first several C# post’s by following along with the Microsoft Learn Certification for C#, hosted by FreeCodeCamp.com. Though, I will add my own information from other sources throughout. Whereas . . . Remember: Challenge Write code that would produce this output:
-
PS#1: Installing PowerShell using Winget/CLI on Windows 11
Psalm 119:105 (NKJV) – “Your word is a lamp to my feet & a light to my path” This post will primarily focus on the installation of PowerShell using Winget/CLI on Windows 11. First off, there is a difference between (1) Windows PowerShell & (2) PowerShell. (1) Windows PowerShell is the version of PowerShell that…