Fading Coder

One Final Commit for the Last Sprint

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...