Fading Coder

One Final Commit for the Last Sprint

Plotting Single-Variable and Two-Variable Function Graphs

Table of Contents Overview String Expression Parsing Graph Rendering Assigning Functions as Properties References and Notes Overview This article builds upon the foundations discussed in "Functional Programming Basics Everyone Should Know" to demonstrate the crucial role of functions in fu...

Implementing Shallow and Deep Cloning in C#

The MemberwiseClone method generates a shallow copy by creating a new instance and copying all non-static fields from the original object. For value types, a bitwise copy occurs; for reference types, the reference itself is copied, not the referenced object. Consequently, both the original and clone...

Advanced WinForms Utilities: Batch File Processing, Secure Encryption, URL Decoding, Recursive Archive Extraction, and Dynamic Asset Management

Batch Extension Management and Database Integration File extension modification requires reliable sorting mechanisms and database-backed configuraton storage. The following implementation retrieves sorted suffix entries from a local SQLite repository, populates a dropdown control, and executes batch...

Implementing HTTP POST Requests with Basic Authentication Using HttpWebRequest in C#

The HttpWebRequest class enables direct manipulation of HTTP headers and request streams when transmitting data. To issue a JSON POST payload alongside Basic Authentication, configure the request object, encode the credentials, and write the serialized body to the output stream. public string Transm...

Training a Custom CNN Image Classifier with TensorFlow.NET in C#

TensorFlow.NET provides a TensorFlow-compatible API for .NET Standard that closely mirrors the Python experience while integrating naturally with the SciSharp stack (NumSharp, SharpCV, Keras.NET, etc.). The example below builds and trains a compact CNN for grayscale image classification entirely in...