API Rate Limit HTTP Handler with HttpClientFactory 2019-02-18 16:01 UTC .NET .NET Core C# HTTP Most APIs have a Rate Limit of some sort. For example, GitHub has a limit of 5000 requests per hour. This can be handled, as a consumer of the API, by limiting...
Azure Storage Easy Web File-Hosting 2019-01-10 15:10 UTC Azure Azure Storage In an ambition to improve my blog a little bit, I wanted to include more images in the posts but felt a lack of a good solution for web file-hosting. To find...
dotnet-guid: Generate GUIDs/UUIDs with the Command Line 2018-12-29 10:58 UTC .NET .NET Core .NET Core Global Tools .NET Tools Projects There have been a few projects, although not many, which I've been involved in, where generating GUIDs/UUIDs has been important. For that, I used to use...
dotnet-cleanup: Clean Up Solution, Project & Folder 2018-10-17 15:57 UTC .NET .NET Core .NET Core Global Tools .NET Tools Projects We developers like to think of developing software as an exact science, but sometimes, you just need to wipe your source-files to solve some kinds of problems.
LINQ Distinct-Method using Lambda Expression 2018-08-21 05:33 UTC .NET .NET Core C# Entity Framework LINQ If you've ever wanted to filter a collection for a distinct result you probably know about the extension-method .Distinct in LINQ. It can be useful on simple...