In my career I’ve made a lot of console applications. Purposes of that application was varied but some of them have one common thing: steps/stages. I’ve found out nice library which helps you display steps progress. The name of that library is … ShellProgressBar. Repository of ShellProgessBar is on github. You can use that library with .NET Core. There is a really good documentation on github. So, I’ll show you very simple example of fake import application with ShellProgressBar.
Tag: C#
RestSharp – Simple REST and HTTP API Client for .NET
I would like to present you a simple .NET client for REST and HTTP API – RestSharp.
Continue reading “RestSharp – Simple REST and HTTP API Client for .NET”
RabbitMq and .net core
I would like to show how to use RabbitMQ and .NET Core. So, I prepared example email queue to send emails.
Continue reading “RabbitMq and .net core”
Angular.js with WebAPI
I want to show you how to integrate WebAPI and angular.js It won’t be very complex example but it could be helpful at the begining. So, I want to create simple web to store contacts.
Continue reading “Angular.js with WebAPI”
Polly – exception handling policies
Sometimes we want to repeat attempt after first unsuccessful attempt. Sometimes when we get exception it is timeout or something like that. So, we could repeat again and maybe we do what we want. I think that you can use Polly for it.
Continue reading “Polly – exception handling policies”
Simple.Data – introduction
I want to show you simple library to accessing and modyfing database. Simple.Data is some kind of ORM but very lightweight ORM. In my opinion it could be use in simple projects.
Continue reading “Simple.Data – introduction”
Autofac – first steps
I want to write something about autofac. It is one of IoC container for Microsoft .NET. You can find very good documentation about it here. I don’t want to persuade you that it’s the best IoC container for .NET but I want to introduce it only.
Continue reading “Autofac – first steps”
MarkdownLog
Sometimes we need to create some console application (maybe not very often ;-)). I don’t know what are your experiences in that area but I always wondered how to nicely display data. I found great tool for it.
Continue reading “MarkdownLog”