Creating an RSS Feed of my blog

Really Simple Syndication

An RSS (Really Simple Syndication) feed is a file that contains content that a site has published. Usually in reverse chronological order. RSS feeds are a fantastic way for interested parties to embed, view and consume said site's latest content in many different ways.

Dynamic Markdown using MarkDig

Markdown is an awesome markup language that many developers have come to love. I use it daily for my own personal journals, project readme's, and system documentation. It is so simple and lightweight, yet powerful and adaptive.
1

Method Chaining and Fluent Interface Design Pattern in C#

Method Chaining and Fluent Interface Design Pattern in C# with Examples

In this post, I am going to discuss with examples the Fluent Interface Design Pattern to use a chain of methods or "Method Chaining" to rapidly create a set of methods that operates/shares the same object. We are going to go over the following points:
1

Serving images stored in a database via a URL using Asp.Net

I required a way of being able to dynamically upload images using a form and then serve the images from a URL for readers to enhance the blogs and improve certain topics with imagery and in the future videos and other files.
1