How to Install Font Awesome, Quick and Easy!
The quickest way to get up and running quickly with Font awesome.
The tutorial to rule ALL tutorials on structures (struct) in C#
The struct
keyword in C# is used for creating a structure
.
A structure
is similar to a class and is used to hold values of different types under one home.
However, despite this similarity to a class, there are subtle (but important) differences explored in this article.
The protected keyword in CSharp, what is it used for?
The protected keyword is an access modifier applied to the declaration of a class and any of its members that restricts the scope of accessibility to either within the class (or struct) where it is declared or from classes derived (inherited) from it.

What the heck is OWIN for .NET? An indepth look at OWIN for beginners with code examples.
OWIN is a .NET standard for writing web middleware. I had no idea what it was either until I research and wrote this article for beginners who find themselves in a similarly baffled situation.

Logging in .NET CORE 3, a useful guide and walkthrough for C# beginners and experts alike
This article is going to explore the built-in logging framework introduced in ASP.NET Core 3. Microsoft have built up it's logging functionality in ASP.Net Core and there’s plenty of new features to get your teeth into

Dependency injection and configuration of an ASP.NET CORE 3.x console app
Dependency Injection is an increasingly popular and prominent design pattern in modern application development.
ASP.NET Core 3.x is platformed on top of the generic host. A versatile object that let's us encapsulates an app's resources at start up and configure dependency injection.
I'm going to share how I configured my generic host with a bare-bones approach you can adapt. It implements logging, autofac and is configurable with appsettings.json.

Data binding UI controls to ListView columns in .NET WinForms
In this tutorial, we will look at binding a form control such as a label and checkbox to a ListView column in .NET (4.7) WinForms (Window Forms).
Its features will include:
- Updating the content/CheckState of the bound control where there is a selection change on the ListView
- Using a button to modify the column’s item with the value contained in the bound control
- Create and add a new item to the listview according to values present in the bounded controls

Setting up Continuous Integration/deployment on Gitlab to deploy a .NET Core application to an FTP server
In this article will set up a continuous integration pipeline for a .NET Core web application with automated deployment to an FTP server.

Introductory guide for developing oracle tuxedo appplications in .net c#/vb.net
I recently had to work with Oracle Tuxedo during a migration project of a legacy vb6 application to .Net. I found that there was not a lot of information at hand available for developers so I thought I would put together a quick and concise guide with a few of my own tips that I picked up during development.
.jpg)
Complete guide to hosting an ASP.NET Core app on your Linux clearly explained and broken down for beginners
A proxy server is a mediator, which offers web administrators more control and security over client machines connecting to a server. In order to make our Linux hosted .Net Core application visible to the internet, we need to configure a reverse proxy server which as the name implies, is the same concept in reverse and acting on behalf of servers.