Tag: Programming
-
Data Science & Python: Part 1: An Overview of Our Toolbox (unfinished)
This multi-part post will focus on providing an overview of the Python portion of these tools: Pandas, Numpy, maplotlib, seaborn, scikit-learn, Keras, TensorFlow, PyTorch, spaCy, NLTK, Hugging Face Transformers, OpenCV.
-
What is Python?
Genesis 1:1-4 (NLT) “In the beginning God created the heavens and the earth. The earth was formless and empty, and darkness covered the deep waters. And the Spirit of God was hovering over the surface of the waters. Then God said, ‘Let there be light,’ and there was light. And God saw that the light…
-
PS#2: Three Core Cmdlets – Part 2: “Get-Command”
Unfinished. Proverbs 28:2 (NIV) “When a country is rebellious, it has many rulers, but a ruler with discernment and knowledge maintains order.” Purpose: This three-part post aims to showcase the three core cmdlets in PowerShell & relies on this Microsoft documentation as it’s main source. Part #2 of 3 will focus on using the “Get-Command”.…
-
C#: Guided Project #1 -Student Grading Application
John 6:10-14 (NKJV) “Then Jesus said, “Make the people sit down.” Now there was much grass in the place. So the men sat down, in number about five thousand. And Jesus took the loaves, and when He had given thanks He distributed them to the disciples, and the disciples to those sitting down; and likewise…
-
C#: Casting (Int) to (Decimal)
Ephesians 5:1-2 (NIV) “Follow God’s example, therefore, as dearly loved children and walk in the way of love, just as Christ loved us and gave himself up for us as a fragrant offering and sacrifice to God.” This program will demonstrate the importance of type casting in the C# language. It is based off of…
-
C# – String Concatenation & String Interpolation
Zephaniah 3:17 (NIV): “The LORD your God is with you, the Mighty Warrior who saves. He will take great delight in you; in His love He will no longer rebuke you, but will rejoice over you with singing.” String concatenation combines two or more values into a new string. The string concatenation operator “+” concatenates…
-
Dealing With Disappointment
Philippians 4:6-7 (ESV) “Do not be anxious about anything, but in everything by prayer and supplication with thanksgiving let your requests be made known to God. And the peace of God, which surpasses all understanding, will guard your hearts and your minds in Christ Jesus. Expectations seem to be entwined with the concept of Hope.…
-
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…